
        :root {
            --primary: #3A5A40;
            --secondary: #A3B18A;
            --tertiary: #DAD7CD;
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --white: #ffffff;
            --gray: #5c5c5c;
            --accent: #588157;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent;
            padding: 20px 0;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-emoji {
            font-size: 36px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
            box-shadow: 0 4px 15px rgba(58, 90, 64, 0.3);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(58, 90, 64, 0.4);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(218, 215, 205, 0.3) 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(58, 90, 64, 0.08) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(163, 177, 138, 0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .hero-desc {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 16px 35px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(58, 90, 64, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(58, 90, 64, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            padding: 16px 35px;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(58, 90, 64, 0.15);
        }

        .hero-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(58, 90, 64, 0.12);
            animation: floatCard 3s ease-in-out infinite;
            border-left: 4px solid var(--primary);
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card.card-1 {
            top: 20%;
            left: -40px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 15%;
            right: -30px;
            animation-delay: 1.5s;
        }

        .floating-card .card-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .floating-card .card-number {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
        }

        .floating-card .card-label {
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
        }

        /* Section Common */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-subtitle {
            display: inline-block;
            background: linear-gradient(135deg, rgba(58, 90, 64, 0.1), rgba(163, 177, 138, 0.2));
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .section-desc {
            font-size: 17px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, var(--white) 0%, var(--tertiary) 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-img-wrapper {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(58, 90, 64, 0.12);
            position: relative;
        }

        .about-img-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 25px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(58, 90, 64, 0.3);
        }

        .about-experience-badge .years {
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
        }

        .about-experience-badge .text {
            font-size: 14px;
            font-weight: 500;
        }

        .about-text {
            padding-left: 20px;
        }

        .about-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-text p {
            color: var(--gray);
            margin-bottom: 18px;
            font-size: 16px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 25px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--primary);
        }

        .about-feature-item span {
            font-size: 22px;
        }

        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: gap 0.3s ease;
        }

        .btn-read-more:hover {
            gap: 15px;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            text-align: center;
            color: white;
        }

        .counter-number {
            font-size: 52px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.95;
        }

        /* Vision & Mission */
        .vision-mission {
            background: var(--white);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .vm-card {
            background: var(--tertiary);
            border-radius: 30px;
            padding: 45px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(58, 90, 64, 0.15);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }

        .vm-card.vision::before {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .vm-card.mission::before {
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
        }

        .vm-icon {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .vm-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .vm-card p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.8;
        }

        /* Why Choose Us */
        .why-us {
            background: linear-gradient(180deg, var(--tertiary) 0%, var(--white) 100%);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-card {
            background: white;
            border-radius: 25px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 45px rgba(58, 90, 64, 0.12);
            border-color: rgba(163, 177, 138, 0.3);
        }

        .why-card:hover::after {
            transform: scaleX(1);
        }

        .why-icon {
            font-size: 52px;
            margin-bottom: 20px;
            display: block;
        }

        .why-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .why-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Work Process */
        .work-process {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
            transform: translateY(-50%);
            border-radius: 2px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: white;
            border: 4px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .process-step:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.15) rotate(360deg);
        }

        .step-icon {
            font-size: 44px;
            margin-bottom: 15px;
            display: block;
        }

        .step-content h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .step-content p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            background: var(--tertiary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(58, 90, 64, 0.06);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 55px rgba(58, 90, 64, 0.15);
        }

        .service-img {
            height: 375px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .service-body {
            padding: 30px;
        }

        .service-body h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-body p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .btn-service {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: gap 0.3s ease, color 0.3s ease;
        }

        .btn-service:hover {
            gap: 12px;
            color: var(--accent);
        }

        /* BMI Calculator */
        .bmi-calculator {
            background: linear-gradient(135deg, var(--primary) 0%, #2d4a32 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .bmi-calculator .section-subtitle {
            background: rgba(255, 255, 255, 0.15);
            color: var(--secondary);
        }

        .bmi-calculator .section-title {
            color: white;
        }

        .bmi-calculator .section-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        .bmi-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .bmi-form-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 15px;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        select.form-control option {
            background: var(--primary);
            color: white;
        }

        .btn-calculate {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            color: var(--primary);
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-calculate:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(163, 177, 138, 0.4);
        }

        .bmi-result {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin-top: 25px;
            display: none;
        }

        .bmi-result.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bmi-value {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .bmi-category {
            font-size: 18px;
            font-weight: 600;
        }

        .bmi-info {
            text-align: center;
        }

        .bmi-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .bmi-chart {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
        }

        .bmi-range {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 13px;
        }

        .bmi-bar {
            height: 20px;
            background: linear-gradient(90deg, #3498db 0%, #2ecc71 33%, #f1c40f 66%, #e74c3c 100%);
            border-radius: 10px;
            position: relative;
        }

        .bmi-indicator {
            position: absolute;
            top: -8px;
            width: 4px;
            height: 36px;
            background: white;
            border-radius: 2px;
            transition: left 0.5s ease;
            display: none;
        }

        .bmi-indicator.show {
            display: block;
        }

        /* Booking Form */
        .booking-form-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--tertiary) 100%);
        }

        .booking-form-wrapper {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 35px;
            padding: 50px;
            box-shadow: 0 25px 60px rgba(58, 90, 64, 0.08);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .booking-form-section .form-group label {
            color: var(--primary);
        }

        .booking-form-section .form-control {
            background: var(--tertiary);
            border-color: var(--secondary);
            color: var(--primary);
        }

        .booking-form-section .form-control:focus {
            border-color: var(--primary);
            background: white;
        }

        .booking-form-section .form-control::placeholder {
            color: var(--gray);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 130px;
        }

        .btn-book {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            margin-top: 10px;
        }

        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(58, 90, 64, 0.35);
        }

        /* Pricing Plans */
        .pricing {
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--tertiary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 25px 55px rgba(58, 90, 64, 0.2);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 8px 40px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 55px rgba(58, 90, 64, 0.12);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-icon {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .pricing-price {
            margin-bottom: 25px;
        }

        .price-value {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .price-period {
            font-size: 16px;
            color: var(--gray);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--tertiary);
            color: var(--gray);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .check-icon {
            color: var(--primary);
            font-size: 18px;
        }

        .btn-pricing {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-pricing:hover {
            background: var(--primary);
            color: white;
        }

        .pricing-card.featured .btn-pricing {
            background: var(--primary);
            color: white;
        }

        .pricing-card.featured .btn-pricing:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        /* Reviews Section */
        .reviews {
            background: var(--tertiary);
        }

        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: white;
            border-radius: 25px;
            padding: 35px;
            position: relative;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(58, 90, 64, 0.12);
        }

        .quote-icon {
            font-size: 48px;
            color: var(--secondary);
            opacity: 0.4;
            position: absolute;
            top: 20px;
            right: 25px;
        }

        .review-stars {
            color: #f39c12;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }

        .author-info h4 {
            font-size: 17px;
            color: var(--primary);
            margin-bottom: 3px;
        }

        .author-info span {
            font-size: 13px;
            color: var(--gray);
        }

        /* FAQ Section */
        .faq {
            background: var(--white);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--tertiary);
            border-radius: 20px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            box-shadow: 0 10px 30px rgba(58, 90, 64, 0.08);
        }

        .faq-question {
            padding: 22px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
            color: var(--primary);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(58, 90, 64, 0.08) 0%, transparent 70%);
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 35px;
        }

        .btn-cta-large {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--primary);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(58, 90, 64, 0.25);
        }

        .btn-cta-large:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(58, 90, 64, 0.35);
        }

        /* Contact Section */
        .contact {
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-info {
            padding-right: 20px;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .contact-info > p {
            color: var(--gray);
            margin-bottom: 35px;
            font-size: 16px;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            font-size: 17px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .contact-item-text p, .contact-item-text a {
            color: var(--gray);
            font-size: 15px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-text a:hover {
            color: var(--primary);
        }

        .contact-form-card {
            background: white;
            border-radius: 30px;
            padding: 45px;
            box-shadow: 0 20px 50px rgba(58, 90, 64, 0.08);
        }

        .contact-form-card h3 {
            font-size: 26px;
            margin-bottom: 25px;
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary) 0%, #2d4a32 100%);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            color: white;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 14px 18px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--secondary);
            background: rgba(255, 255, 255, 0.12);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .btn-newsletter {
            padding: 14px 25px;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            color: var(--primary);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .btn-newsletter:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(163, 177, 138, 0.35);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--secondary);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content,
            .about-content,
            .bmi-wrapper,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-image {
                order: -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .floating-card.card-1 {
                left: 10px;
            }

            .floating-card.card-2 {
                right: 10px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px;
                gap: 25px;
                transition: right 0.3s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
                z-index: 1001;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            .hero-title {
                font-size: 34px;
            }

            .section-title {
                font-size: 32px;
            }

            .services-grid,
            .reviews-slider {
                grid-template-columns: 1fr;
            }

            .why-grid,
            .vm-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr 1fr;
            }

            .process-timeline::before {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            section {
                padding: 70px 0;
            }

            .booking-form-wrapper {
                padding: 30px 20px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .counter-number {
                font-size: 38px;
            }

            .cta-content h2 {
                font-size: 28px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
