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

        :root {
            --primary-green: #2d5016;
            --light-green: #4a7c2c;
            --soft-green: #6b9f4f;
            --pale-green: #e8f5e9;
            --white: #ffffff;
            --cream: #fafff7;
            --text-dark: #1a3a0f;
            --text-gray: #5a6c57;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--cream);
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            color: var(--white);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(45, 80, 22, 0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

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

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

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--soft-green) 100%);
            color: var(--white);
            padding: 8rem 2rem 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,40 600,20 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat-x;
            background-size: 1200px 120px;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero .tagline {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-green);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-content {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(45, 80, 22, 0.08);
            text-align: left;
        }

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

        /* Services Section */
        .services {
    background: var(--pale-green);
    max-width: 1200px;
    margin: 5rem auto;
    padding: 2rem 2rem;   /* ✔ one clean padding rule */
    text-align: center;
}

    .services-container {
            max-width: 1200px;
            margin: 0 auto;
            margin-bottom: 1.5rem;
    }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 2rem;
    row-gap: 3rem;   /* 🔥 this creates space between rows */
    margin-top: 2rem;
    }


        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
            border-color: var(--soft-green);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Treatments Section */
    
        .treatments {
            max-width: 1200px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            text-align: left;
        }

        .treatment-category {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(45, 80, 22, 0.08);
        }

        .treatment-category h3 {
            color: var(--primary-green);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--pale-green);
        }

        .treatment-category ul {
            list-style: none;
        }

        .treatment-category li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            position: relative;
            padding-left: 1.5rem;
        }

        .treatment-category li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--soft-green);
            font-weight: bold;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            padding: 5rem 2rem;
            color: var(--white);
            text-align: center;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1rem;
        }

        /* Booking Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(29, 53, 15, 0.95);
            animation: fadeIn 0.3s ease-out;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.3s ease-out;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
            color: var(--white);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 300;
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
            line-height: 1;
        }

        .close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .modal-body {
            height: calc(90vh - 80px);
            overflow-y: auto;
        }

        .modal-body iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Section */
        .contact {
            max-width: 800px;
            margin: 5rem auto;
            padding: 0 2rem;
            text-align: center;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(45, 80, 22, 0.08);
            margin-top: 3rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--pale-green);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--soft-green);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            background: var(--primary-green);
            color: var(--white);
            width: 100%;
            padding: 1rem;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            background: var(--light-green);
        }

        /* Footer */
        footer {
            background: var(--primary-green);
            color: var(--white);
            padding: 3rem 2rem 1.5rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 0.5rem 0;
        }

        .footer-section a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* Navigation */
            nav {
                padding: 0 1rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: var(--primary-green);
                flex-direction: column;
                gap: 0;
                padding: 2rem 0;
                transition: left 0.3s ease;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links a {
                display: block;
                padding: 0.5rem 2rem;
            }

            /* Hero Section */
            .hero {
                padding: 5rem 1.5rem 4rem;
            }

            .hero h1 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .hero .tagline {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.95rem;
            }

            /* Sections */
            .about,
            .treatments,
            .contact {
                padding: 0 1.5rem;
                margin: 3rem auto;
            }

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

            .section-subtitle {
                font-size: 1rem;
            }

            .about-content {
                padding: 2rem 1.5rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            /* Services */
            .services {
                padding: 3rem 1.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-icon {
                font-size: 2.5rem;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            /* Treatments */
            .treatments-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .treatment-category {
                padding: 1.5rem;
            }

            /* Testimonials */
            .testimonials {
                padding: 3rem 1.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            /* Contact Form */
            .contact-form {
                padding: 2rem 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.85rem;
            }

            /* Modal */
            .modal-content {
                width: 95%;
                max-width: 95%;
                margin: 2.5% auto;
                max-height: 95vh;
            }

            .modal-header {
                padding: 1rem 1.5rem;
            }

            .modal-header h2 {
                font-size: 1.2rem;
            }

            .close-modal {
                font-size: 2rem;
                width: 35px;
                height: 35px;
            }

            .modal-body {
                height: calc(95vh - 70px);
            }

            /* Footer */
            footer {
                padding: 2rem 1.5rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .footer-section p,
            .footer-section a {
                font-size: 0.95rem;
            }
        }

        /* Tablet Responsive */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

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

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

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

        /* Small mobile */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .hero .tagline {
                font-size: 0.95rem;
            }

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

            .service-card,
            .treatment-category,
            .testimonial-card {
                padding: 1.5rem;
            }

            .modal-header h2 {
                font-size: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

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

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        html {
            scroll-behavior: smooth;
        }

        /* coming soon  */
        .coming-soon-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.coming-soon-box {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.coming-soon-box h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.coming-soon-box p {
    color: #555;
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-btn:hover {
    color: #333;
}
