
        :root {
            --primary: #708090;
            --secondary: #FF9800;
            --accent: #FFFFFF;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gradient-primary: linear-gradient(135deg, #708090 0%, #FF9800 100%);
            --gradient-neon: linear-gradient(135deg, #FF9800 0%, #ff6b6b 50%, #708090 100%);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--dark);
        }

        .nav-logo i {
            font-size: 32px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-logo span {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--secondary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            transition: var(--transition);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            transition: var(--transition);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .btn-white {
            background: white;
            color: var(--secondary);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline-white:hover {
            background: white;
            color: var(--secondary);
        }

        .btn-lg {
            padding: 15px 40px;
            font-size: 18px;
        }

        .btn-block {
            width: 100%;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 20px 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            bottom: -50px;
            left: -50px;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--secondary);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 152, 0, 0.1);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-title {
            font-size: 56px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .gradient-text {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1s ease 0.5s both;
        }

        .image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            left: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .experience-badge .years {
            display: block;
            font-size: 48px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .experience-badge .text {
            font-size: 14px;
            line-height: 1.4;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(255, 152, 0, 0.1);
            color: var(--secondary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--primary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-section {
            padding: 100px 20px;
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .about-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(112, 128, 144, 0.1);
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .about-icon i {
            font-size: 32px;
            color: white;
        }

        .about-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .about-card p {
            color: var(--primary);
            line-height: 1.8;
        }

        /* Milestones */
        .milestones-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            background: var(--gradient-primary);
            padding: 60px 40px;
            border-radius: 30px;
            color: white;
        }

        .milestone-item {
            text-align: center;
        }

        .milestone-icon {
            font-size: 40px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .milestone-number {
            font-size: 48px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .milestone-label {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Features Section */
        .features-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card.featured {
            background: var(--gradient-primary);
            color: white;
        }

        .feature-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .feature-number {
            font-size: 60px;
            font-weight: 700;
            opacity: 0.1;
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 152, 0, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-card.featured .feature-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--secondary);
        }

        .feature-card.featured .feature-icon i {
            color: white;
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card.featured p {
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list i {
            color: var(--secondary);
        }

        .feature-card.featured .feature-list i {
            color: white;
        }

        /* Process Section */
        .process-section {
            padding: 100px 20px;
            background: white;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0.3;
            z-index: 0;
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            background: white;
            border: 3px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 0 0 10px rgba(255, 152, 0, 0.1);
        }

        .step-icon i {
            font-size: 40px;
            color: var(--secondary);
        }

        .process-step h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .process-step p {
            color: var(--primary);
        }

        /* Packages Section */
        .packages-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .package-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .package-card.popular {
            border: 3px solid var(--secondary);
            transform: scale(1.05);
        }

        .package-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 8px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
        }

        .package-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .package-header h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .package-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        .package-price .currency {
            font-size: 24px;
            color: var(--primary);
        }

        .package-price .amount {
            font-size: 56px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Playfair Display', serif;
        }

        .package-price .period {
            font-size: 18px;
            color: var(--primary);
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features i {
            color: var(--secondary);
        }

        .package-features li.disabled {
            opacity: 0.5;
        }

        .package-features li.disabled i {
            color: #ccc;
        }

        /* Services Section */
        .services-section {
            padding: 100px 20px;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-image {
            height: 350px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 30px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon i {
            font-size: 24px;
            color: white;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
        }

        /* Booking Section */
        .booking-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .booking-info {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 40px;
        }

        .booking-info .section-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .booking-info h2 {
            font-size: 36px;
            margin: 20px 0;
        }

        .booking-info h2 .gradient-text {
            color: white;
            -webkit-text-fill-color: white;
        }

        .booking-info p {
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .booking-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .booking-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .booking-feature i {
            font-size: 24px;
        }

        .booking-form {
            padding: 60px 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-group textarea {
            resize: vertical;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 20px;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(112, 128, 144, 0.1);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-rating {
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .testimonial-card p {
            color: var(--primary);
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: var(--primary);
            font-size: 14px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--secondary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--primary);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            color: white;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .cta-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta-content h2 .gradient-text {
            color: white;
            -webkit-text-fill-color: white;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 20px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-links a i {
            font-size: 12px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form input {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form input:focus {
            outline: 2px solid var(--secondary);
        }

        .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;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .booking-wrapper {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .package-card.popular {
                transform: scale(1);
            }

            .package-card.popular:hover {
                transform: scale(1) translateY(-10px);
            }

            .cta-content h2 {
                font-size: 32px;
            }
        }

        /* Animation Utilities */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
