
        :root {
            --primary: #1DE9B6;
            --secondary: #FFFFFF;
            --accent: #004D40;
            --dark: #00251A;
            --light-bg: #E0F7FA;
            --gradient-1: linear-gradient(135deg, #1DE9B6 0%, #00BFA5 50%, #26C6DA 100%);
            --gradient-2: linear-gradient(135deg, #004D40 0%, #1DE9B6 100%);
            --neon-glow: 0 0 20px rgba(29, 233, 182, 0.5), 0 0 40px rgba(29, 233, 182, 0.3);
            --shadow-lg: 0 25px 50px -12px rgba(29, 233, 182, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--secondary);
        }

        /* Floating Elements Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes floatReverse {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(20px) rotate(-5deg); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(29, 233, 182, 0.4); }
            50% { box-shadow: 0 0 40px rgba(29, 233, 182, 0.6), 0 0 60px rgba(0, 77, 64, 0.4); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        .floating-element {
            position: absolute;
            animation: float 6s ease-in-out infinite;
            pointer-events: none;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(29, 233, 182, 0.15);
            padding: 0.8rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--dark);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent);
        }

        .cta-nav-btn {
            background: var(--gradient-1);
            color: white !important;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--neon-glow);
        }

        .cta-nav-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(29, 233, 182, 0.6), 0 0 60px rgba(0, 77, 64, 0.4);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 50%, #E0F2F1 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(29, 233, 182, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 77, 64, 0.15) 0%, transparent 50%);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.15;
        }

        .shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
        .shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation: floatReverse 10s ease-in-out infinite; }
        .shape-3 { width: 150px; height: 150px; top: 40%; left: 10%; animation: float 7s ease-in-out infinite 1s; }
        .shape-4 { width: 200px; height: 200px; top: 20%; right: 20%; animation: floatReverse 9s ease-in-out infinite 0.5s; }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: slideUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: var(--neon-glow);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 0 40px rgba(29, 233, 182, 0.6), 0 0 80px rgba(0, 77, 64, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--primary);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1.2s ease-out 0.6s both;
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .hero-img-wrapper img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .hero-badge {
            position: absolute;
            bottom: -30px;
            left: 30px;
            background: white;
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .badge-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .badge-text h4 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
        }

        .badge-text span {
            color: var(--accent);
            font-weight: 500;
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: var(--secondary);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            display: inline-block;
            background: linear-gradient(90deg, rgba(29, 233, 182, 0.2), rgba(0, 77, 64, 0.2));
            color: var(--accent);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .about-card:hover::before {
            transform: scaleX(1);
        }

        .about-icon {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, rgba(29, 233, 182, 0.15), rgba(0, 77, 64, 0.15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .about-card:hover .about-icon {
            background: var(--gradient-1);
            color: white;
            transform: rotateY(180deg);
        }

        .about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .about-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Milestones / Metrics */
        .metrics {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .metrics-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 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");
        }

        .metrics-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .metric-item {
            text-align: center;
            color: white;
        }

        .metric-number {
            font-size: 4rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .metric-label {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
        }

        /* Why Choose Us */
        .features {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .feature-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon-wrapper {
            width: 110px;
            height: 110px;
            margin: 0 auto 30px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: white;
            position: relative;
            transition: all 0.4s ease;
        }

        .feature-icon-wrapper::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            background: var(--gradient-1);
            opacity: 0.3;
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .feature-card:hover .feature-icon-wrapper {
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Work Process */
        .process {
            padding: 120px 0;
            background: var(--secondary);
        }

        .process-timeline {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-1);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .process-step {
            display: flex;
            justify-content: flex-end;
            padding-right: calc(50% + 40px);
            position: relative;
            margin-bottom: 60px;
        }

        .process-step:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: calc(50% + 40px);
        }

        .step-content {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.1);
            max-width: 450px;
            transition: all 0.4s ease;
        }

        .step-content:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }

        .process-step:nth-child(even) .step-content:hover {
            transform: translateX(-10px);
        }

        .step-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-weight: 700;
            font-size: 1.3rem;
            box-shadow: var(--neon-glow);
            z-index: 2;
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step-content p {
            color: #666;
            line-height: 1.7;
        }

        /* Packages */
        .packages {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .package-card {
            background: white;
            border-radius: 30px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card.featured {
            background: var(--gradient-1);
            color: white;
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .popular-badge {
            position: absolute;
            top: 25px;
            right: -35px;
            background: var(--dark);
            color: white;
            padding: 8px 45px;
            font-size: 0.85rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .package-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .package-price {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .package-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .package-desc {
            margin-bottom: 30px;
            opacity: 0.85;
        }

        .package-features {
            list-style: none;
            margin-bottom: 35px;
            text-align: left;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(29, 233, 182, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .package-card.featured .package-features li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
        }

        .package-features i {
            color: var(--primary);
        }

        .package-card.featured .package-features i {
            color: #fff;
        }

        .package-btn {
            width: 100%;
            padding: 16px;
            border-radius: 50px;
            border: 2px solid var(--accent);
            background: transparent;
            color: var(--accent);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }

        .package-btn:hover {
            background: var(--accent);
            color: white;
        }

        .package-card.featured .package-btn {
            background: white;
            color: var(--accent);
            border-color: white;
        }

        .package-card.featured .package-btn:hover {
            background: transparent;
            color: white;
            border-color: white;
        }

        /* Services */
        .services {
            padding: 120px 0;
            background: var(--secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .service-card {
            display: flex;
            gap: 25px;
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-1);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleY(1);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            min-width: 90px;
            background: linear-gradient(135deg, rgba(29, 233, 182, 0.15), rgba(0, 77, 64, 0.15));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--accent);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gradient-1);
            color: white;
            transform: rotateY(360deg);
        }

        .service-info h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .service-info p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .service-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
        }

        /* Booking Form */
        .booking {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .booking-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .booking-form {
            background: white;
            padding: 60px;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #B2DFDB;
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(29, 233, 182, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 140px;
        }

        select.form-control {
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--neon-glow);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(29, 233, 182, 0.6);
        }

        /* Testimonials */
        .testimonials {
            padding: 120px 0;
            background: var(--secondary);
        }

        .testimonials-slider {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            gap: 2.5rem;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: calc(33.333% - 1.67rem);
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(29, 233, 182, 0.08);
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .author-info span {
            color: var(--accent);
            font-size: 0.9rem;
        }

        /* FAQ */
        .faq {
            padding: 120px 0;
            background: var(--light-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(29, 233, 182, 0.06);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(29, 233, 182, 0.12);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-icon {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
            color: var(--accent);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .cta-bg-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
        .cta-shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; }
        .cta-shape-3 { width: 150px; height: 150px; top: 50%; left: 10%; }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 2rem;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            color: white;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
        }

        .cta-btn {
            display: inline-block;
            background: white;
            color: var(--accent);
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: var(--secondary);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: linear-gradient(135deg, rgba(29, 233, 182, 0.15), rgba(0, 77, 64, 0.15));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--accent);
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-text p, .contact-text a {
            color: #666;
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-text a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: var(--neon-glow);
        }

        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form-wrapper h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 3rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .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;
            margin-bottom: 20px;
        }

        .footer-logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .footer-logo span {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .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(--primary);
            padding-left: 10px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.95rem;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .newsletter-btn {
            padding: 14px 28px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: scale(1.05);
            box-shadow: var(--neon-glow);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 2rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-legal {
            display: flex;
            gap: 25px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .hero-img-wrapper img {
                height: 400px;
            }

            .hero-badge {
                left: 50%;
                transform: translateX(-50%);
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .package-card.featured {
                transform: scale(1);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-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: 100px 40px;
                gap: 1.5rem;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: block;
                z-index: 1001;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-grid,
            .features-grid,
            .packages-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .metric-number {
                font-size: 3rem;
            }

            .timeline-line {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(even) {
                padding-left: 80px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .step-number {
                left: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                min-width: 100%;
            }

            .booking-form {
                padding: 30px;
            }

            .contact-form-wrapper {
                padding: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cta-section h2 {
                font-size: 2.2rem;
            }
        }

        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
