
        :root {
            --primary-color: #16A34A;
            --secondary-color: #84CC16;
            --accent-color: #FACC15;
            --light-bg: #F7FEE7;
            --dark-text: #1e293b;
            --light-text: #64748b;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #16A34A 0%, #84CC16 100%);
            --gradient-2: linear-gradient(135deg, #84CC16 0%, #FACC15 100%);
            --shadow: 0 10px 40px rgba(22, 163, 74, 0.15);
            --shadow-hover: 0 20px 60px rgba(22, 163, 74, 0.25);
        }

        * {
            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-text);
            overflow-x: hidden;
            background-color: var(--white);
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: relative;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-color);
        }

        .logo i {
            font-size: 34px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-1) !important;
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4) !important;
            color: white !important;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--light-bg) 0%, #dcfce7 50%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 58px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--dark-text);
        }

        .hero-content h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: var(--light-text);
            margin-bottom: 35px;
            max-width: 520px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-1);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(22, 163, 74, 0.45);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary-color);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--primary-color);
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
            object-fit: cover;
            height: 550px;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--accent-color);
            border-radius: 30px;
            z-index: -1;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card.card-1 {
            bottom: 40px;
            left: -40px;
        }

        .floating-card.card-2 {
            top: 40px;
            right: -30px;
            animation-delay: 1s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card i {
            font-size: 32px;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .floating-card h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .floating-card p {
            font-size: 14px;
            color: var(--light-text);
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            padding: 120px 0;
            background: var(--white);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(132, 204, 22, 0.1));
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--light-text);
            max-width: 650px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 25px;
            box-shadow: var(--shadow);
            height: 500px;
            object-fit: cover;
        }

        .about-experience {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-1);
            color: white;
            padding: 30px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-hover);
        }

        .about-experience h3 {
            font-size: 42px;
            font-weight: 800;
        }

        .about-experience p {
            font-size: 16px;
            opacity: 0.95;
        }

        .about-content h3 {
            font-size: 36px;
            color: var(--dark-text);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--light-text);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.9;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-item i {
            color: var(--secondary-color);
            font-size: 20px;
        }

        .about-feature-item span {
            font-weight: 500;
            color: var(--dark-text);
        }

        /* ========== COUNTER SECTION ========== */
        .counter-section {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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.05'%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;
            padding: 30px;
        }

        .counter-item i {
            font-size: 48px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .counter-number {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }

        .counter-label {
            font-size: 18px;
            opacity: 0.9;
            font-weight: 500;
        }

        /* ========== VISION & MISSION ========== */
        .vision-mission {
            padding: 120px 0;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .vm-card {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(132, 204, 22, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .vm-icon i {
            font-size: 36px;
            color: var(--primary-color);
        }

        .vm-card h3 {
            font-size: 32px;
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .vm-card p {
            color: var(--light-text);
            line-height: 1.9;
            font-size: 16px;
        }

        /* ========== WHY CHOOSE US ========== */
        .why-choose {
            padding: 120px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--light-bg);
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 75px;
            height: 75px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: transform 0.3s ease;
        }

        .feature-icon i {
            font-size: 32px;
            color: white;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h4 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--light-text);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ========== WORK PROCESS ========== */
        .work-process {
            padding: 120px 0;
            background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            border-radius: 4px;
        }

        .process-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .process-item:last-child {
            margin-bottom: 0;
        }

        .process-content {
            width: 45%;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }

        .process-item:nth-child(even) .process-content {
            order: 2;
        }

        .process-content:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-hover);
        }

        .process-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 5px 25px rgba(22, 163, 74, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 5px 25px rgba(22, 163, 74, 0.4); }
            50% { box-shadow: 0 5px 35px rgba(22, 163, 74, 0.6); }
        }

        .process-content i {
            font-size: 36px;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: block;
        }

        .process-content h4 {
            font-size: 22px;
            color: var(--dark-text);
            margin-bottom: 10px;
        }

        .process-content p {
            color: var(--light-text);
            font-size: 15px;
        }

        /* ========== SERVICE PLANS ========== */
        .service-plans {
            padding: 120px 0;
            background: var(--white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .plan-card {
            background: white;
            border-radius: 25px;
            padding: 45px 35px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .plan-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .plan-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-1);
            color: white;
            padding: 8px 45px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: block;
        }

        .plan-name {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .plan-price {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--light-text);
        }

        .plan-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .plan-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: var(--light-text);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .plan-features li i {
            color: var(--secondary-color);
            font-size: 14px;
        }

        .plan-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .plan-btn.primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 5px 25px rgba(22, 163, 74, 0.3);
        }

        .plan-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(22, 163, 74, 0.4);
        }

        .plan-btn.secondary {
            background: var(--light-bg);
            color: var(--primary-color);
        }

        .plan-btn.secondary:hover {
            background: var(--primary-color);
            color: white;
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .service-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-img {
            height: 220px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-img i {
            font-size: 75px;
            color: white;
            opacity: 0.9;
        }

        .service-body {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-body h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
        }

        .service-body p {
            color: var(--light-text);
            line-height: 1.85;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            gap: 15px;
            color: var(--secondary-color);
        }

        /* ========== BOOKING FORM SECTION ========== */
        .booking-form-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }

        .booking-form-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .booking-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .booking-info p {
            color: rgba(255,255,255,0.9);
            font-size: 17px;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .booking-benefits {
            list-style: none;
        }

        .booking-benefits li {
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            padding: 12px 0;
            font-size: 16px;
        }

        .booking-benefits li i {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .booking-form {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.2);
        }

        .booking-form h3 {
            font-size: 28px;
            color: var(--dark-text);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(22, 163, 74, 0.4);
        }

        /* ========== REVIEWS SECTION ========== */
        .reviews {
            padding: 120px 0;
            background: var(--white);
        }

        .reviews-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .review-card {
            background: var(--light-bg);
            padding: 40px 35px;
            border-radius: 25px;
            transition: all 0.4s ease;
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .review-stars {
            color: var(--accent-color);
            font-size: 18px;
            margin-bottom: 20px;
        }

        .review-text {
            color: var(--light-text);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .review-avatar {
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            font-weight: 700;
        }

        .review-info h5 {
            font-size: 18px;
            color: var(--dark-text);
            font-weight: 600;
        }

        .review-info span {
            font-size: 14px;
            color: var(--light-text);
        }

        .quote-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 60px;
            color: var(--accent-color);
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        /* ========== FAQ SECTION ========== */
        .faq {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            color: var(--dark-text);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 350px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: var(--light-text);
            line-height: 1.8;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 100px 0;
            background: url('https://images.pexels.com/photo/1576091160399-112ba8d25d1d?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.92) 0%, rgba(132, 204, 22, 0.92) 100%);
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 750px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: white;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: rgba(255,255,255,0.9);
            font-size: 19px;
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: var(--primary-color);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            padding: 120px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 34px;
            color: var(--dark-text);
            margin-bottom: 25px;
        }

        .contact-info > p {
            color: var(--light-text);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(132, 204, 22, 0.1));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 22px;
            color: var(--primary-color);
        }

        .contact-item-text h5 {
            font-size: 18px;
            color: var(--dark-text);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-item-text p,
        .contact-item-text a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .contact-item-text a:hover {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: var(--light-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gradient-1);
            color: white;
            transform: translateY(-5px);
        }

        .contact-form-box {
            background: var(--light-bg);
            padding: 50px;
            border-radius: 30px;
        }

        .contact-form-box h3 {
            font-size: 28px;
            color: var(--dark-text);
            margin-bottom: 30px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0f172a;
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 3px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-logo i {
            font-size: 30px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 8px;
        }

        .footer-links a i {
            font-size: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover i {
            opacity: 1;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 15px 20px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 15px;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-form input:focus {
            border-color: var(--secondary-color);
        }

        .newsletter-form button {
            padding: 15px 25px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--secondary-color);
        }

        /* ========== ANIMATIONS ========== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-content h1 { font-size: 46px; }
            .plans-grid { grid-template-columns: 1fr; }
            .plan-card.featured { transform: none; }
            .plan-card.featured:hover { transform: translateY(-10px); }
        }

        @media (max-width: 992px) {
            .nav-links { 
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px;
                gap: 20px;
                box-shadow: -5px 0 30px rgba(0,0,0,0.1);
                transition: right 0.4s ease;
            }
            
            .nav-links.active { right: 0; }
            
            .mobile-toggle { display: flex; }
            
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-content p { margin: 0 auto 35px; }
            .hero-btns { justify-content: center; }
            .hero-image { margin-top: 50px; }
            .floating-card.card-1 { left: 20px; }
            .floating-card.card-2 { right: 20px; }
            
            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            .about-image { order: -1; }
            .about-experience { right: 20px; bottom: -20px; }
            
            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .vm-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: 1fr; }
            .reviews-slider { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .booking-wrapper { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            
            .process-timeline::before { left: 20px; }
            .process-item { padding-left: 80px; }
            .process-content { width: 100%; }
            .process-item:nth-child(even) .process-content { order: 0; }
            .process-number { left: 20px; transform: translateX(-50%); }
        }

        @media (max-width: 768px) {
            .section-title { font-size: 36px; }
            .hero-content h1 { font-size: 36px; }
            .counter-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
            .counter-number { font-size: 40px; }
            .features-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .cta-content h2 { font-size: 34px; }
            .about-features { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .nav-container { padding: 0 20px; }
            .section-container { padding: 0 20px; }
            .hero { padding: 100px 0 60px; }
            .hero-content h1 { font-size: 30px; }
            .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 14px; }
            .booking-form, .contact-form-box { padding: 30px 20px; }
        }
