:root {
    --primary-color: #0f5132;
    --secondary-color: #198754;
    --accent-color: #10b981;
    --success-color: #51cf66;
    --dark-color: #1a1a2e;
    --light-color: #f0f9ff;
    --text-gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    background: white !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0 !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #00a8a8 !important;
}

.navbar-nav .nav-link {
    color: #1a1a2e !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #00a8a8 !important;
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.services-section {
    padding: 80px 0;
    background: #f0f9ff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #00a8a8;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00a8a8 0%, #2c5f7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 80px 0;
    background: white;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.feature-list li i {
    color: #51cf66;
    margin-right: 10px;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a8a8 0%, #2c5f7d 100%);
    color: white;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #51cf66;
}

.map-container {
    width: 100%;
    height: 450px;
    border: none;
}

.reviews-section {
    padding: 80px 0;
    background: white;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8a8 0%, #2c5f7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffc107;
}

.footer {
    background: #1a1a2e;
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #00a8a8;
    transform: translateY(-3px);
}

.appointment-btn {
    background: linear-gradient(135deg, #00a8a8 0%, #2c5f7d 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,168,168,0.3);
    color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,168,168,0.7);
    border-radius: 5px;
    padding: 15px;
    width: 50px;
    height: 50px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0,168,168,0.9);
}

.carousel-indicators {
    display: none;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

#reviewCarousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,168,168,0.7) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: 2rem;
}

#reviewCarousel .owl-nav button:hover {
    background: rgba(0,168,168,0.9) !important;
}

#reviewCarousel .owl-nav .owl-prev {
    left: -25px;
}

#reviewCarousel .owl-nav .owl-next {
    right: -25px;
}

#reviewCarousel .owl-dots {
    display: none;
}

#reviewCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
    position: relative;
}

#reviewCarousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 207, 102, 0.15);
    pointer-events: none;
    z-index: 0;
}

#reviewCarousel .row {
    position: relative;
    z-index: 1;
}

.carousel-item {
    background-position: center;
    background-size: cover;
    position: relative;
    height: 680px;
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 30, 20, 0.88) 0%,
        rgba(0, 60, 40, 0.72) 45%,
        rgba(0, 80, 60, 0.15) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    padding: 0 48px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,168,168,0.25);
    border: 1px solid rgba(0,168,168,0.5);
    backdrop-filter: blur(10px);
    color: #7fffee;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fadeInDown 0.7s ease both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    color: white;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title span {
    background: linear-gradient(90deg, #00e5cc, #00a8a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.82);
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-book {
    background: linear-gradient(135deg, #00a8a8, #007a7a);
    color: white;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0,168,168,0.4);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,168,168,0.55);
    color: white;
    background: linear-gradient(135deg, #00c4c4, #009090);
}

.btn-call {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    backdrop-filter: blur(6px);
}

.btn-call:hover {
    background: white;
    color: #007a7a;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 22px;
    border-radius: 50px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.rating-stars {
    color: #ffc107;
    font-size: 1rem;
}

.rating-text {
    font-size: 0.88rem;
    color: white;
    line-height: 1.4;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.3rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

.stats-section {
    background: white;
    padding: 40px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
}

.stat-box {
    text-align: center;
    padding: 0 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: #0f5132;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f5132;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.testimonial-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.testimonial-overlay.active {
    display: flex;
}

.testimonial-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.testimonial-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.testimonial-content {
    padding: 50px 40px 40px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a8a8 0%, #2c5f7d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-date {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 520px !important;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    .hero-badge {
        font-size: 0.72rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .btn-book, .btn-call {
        width: 100%;
        justify-content: center;
    }
    .hero-rating {
        margin: 0 auto;
        width: fit-content;
    }
    .hero-scroll-indicator { display: none; }
    .stats-section {
        padding: 30px 0;
    }
    .stats-section .row {
        justify-content: center;
    }
    .stat-box {
        padding: 15px 10px;
        margin-bottom: 20px;
    }
    .stat-icon {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.85rem;
    }
    .services-section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .service-card {
        padding: 25px;
    }
    .service-card:hover {
        transform: none;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    .service-title {
        font-size: 1.2rem;
    }
    .service-description {
        font-size: 0.95rem;
    }
    .testimonial-modal {
        width: 95%;
        max-height: 90vh;
    }
    .testimonial-content {
        padding: 40px 25px 25px;
    }
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .testimonial-name {
        font-size: 1.2rem;
    }
    .testimonial-text {
        font-size: 1rem;
    }
    .about-section {
        padding: 50px 0;
    }
    .about-image {
        margin-bottom: 30px;
    }
    .feature-list li {
        font-size: 1rem;
        padding: 8px 0;
    }
    iframe {
        height: 300px !important;
    }
}

html {
    overflow-y: scroll;
}

body {
    overflow-x: hidden;
}
