/* Core Variables & Resets */
:root {
    --primary-color: #0056b3;
    /* Medical Blue from flyer */
    --primary-dark: #003d82;
    --secondary-color: #8cc63f;
    /* Vibrant Green from grass in flyer */
    --secondary-dark: #6ba82e;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --bg-light: #f4fce8;
    /* Soft green tint */
    --white: #ffffff;
    --border-color: #dee2e6;
    --warning: #ffb400;
    /* Google Review Gold */
    --placeholder-bg: #f1f5f9;
    --placeholder-text: #64748b;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    padding-top: 76px;
    /* Offset for desktop fixed header */
}

html {
    scroll-behavior: smooth;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-teal {
    color: var(--secondary-color);
}

.text-warning {
    color: var(--warning);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.fw-bold {
    font-weight: bold;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Typography Elements */
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.title-underline {
    height: 4px;
    width: 80px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 25px;
}

/* Desktop Header & Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Mobile Sticky Header (Tap to Call) */
.mobile-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    z-index: 1001;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.tap-to-call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    padding: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse-bg 2s infinite;
}

@keyframes pulse-bg {
    0% {
        background-color: var(--primary-dark);
    }

    50% {
        background-color: var(--primary-color);
    }

    100% {
        background-color: var(--primary-dark);
    }
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, var(--placeholder-bg) 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed #94a3b8;
    border-radius: 16px;
    color: var(--placeholder-text);
    font-weight: 600;
    text-align: center;
    padding: 30px;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
}

.placeholder-hero {
    width: 100%;
    height: 450px;
}

.placeholder-interior {
    width: 100%;
    height: 400px;
}

.placeholder-service {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--dark-text);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.rating-badge i {
    color: var(--warning);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--dark-text);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.smile-icon {
    color: var(--secondary-color);
    font-family: inherit;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(32, 201, 151, 0.1);
    color: var(--secondary-dark);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(32, 201, 151, 0.2);
}

/* Services Expanded Update */
.services-banner {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #c8e6c9;
    align-items: center;
    margin-bottom: 40px;
}

.banner-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.banner-content h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.banner-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-item {
    background-color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--dark-text);
    font-weight: 600;
}

.service-item.highlight-child {
    border-color: var(--secondary-color);
    background-color: rgba(140, 198, 63, 0.05);
}

.service-item.highlight-child .service-icon {
    color: var(--secondary-dark);
    background-color: rgba(140, 198, 63, 0.15);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--secondary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(32, 201, 151, 0.15);
    position: absolute;
    top: 25px;
    right: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author::before {
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
}

/* FAQ Accordion */
.accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.accordion-header.active {
    color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.accordion-header.active+.accordion-content {
    padding: 24px 30px;
    max-height: 600px;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 80px 0 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #e2e8f0;
    line-height: 1.5;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Floating Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1002;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
.hide-on-desktop {
    display: none;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .rating-badge {
        margin: 0 auto 30px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .hide-on-desktop {
        display: block;
    }

    body {
        padding-top: 130px;
        /* Navbar + Mobile Call Header */
    }

    .navbar {
        top: 54px;
        /* Give room for mobile sticky header */
        height: 70px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-container {
        justify-content: center;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-lg {
        width: 100%;
    }

    .services-grid,
    .testimonials-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 32px;
    }
}