:root {
            --primary: #05247c; /* Deep Blue */
            --primary-light: #1a3a96;
            --secondary: #a82036; /* Red/Crimson */
            --accent: #6fc8ea; /* Light Blue */
            --gold: #d4af37; /* Premium Gold */
            --green: #25d366; /* WhatsApp Green */
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-muted: #666666;
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light-bg);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 60px;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 20px;
        }

        .text-gold { color: var(--gold); }
        .text-primary { color: var(--primary); }
        .text-accent { color: var(--accent); }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(5, 36, 124, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(5, 36, 124, 0.3);
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-gold:hover {
            background-color: #c5a02c;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        .btn-whatsapp {
            background-color: var(--green);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border-radius: 30px;
        }

        .btn-whatsapp:hover {
            background-color: #20bd5a;
            transform: translateY(-2px);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 25px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 15px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.05);
            border-bottom: none;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--white);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        header.scrolled .logo {
            color: var(--primary);
        }

        .logo img {
            height: 65px;
            width: auto;
            object-fit: contain;
            mix-blend-mode: multiply; /* Removes white background on light surface */
        }

        header.scrolled .logo img {
            mix-blend-mode: multiply;
        }

        .logo-icon {
            color: var(--accent);
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-links li a {
            color: var(--white);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: var(--transition);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        header.scrolled .nav-links li a {
            color: var(--text-dark);
        }

        header.scrolled .nav-links li a:hover {
            color: var(--primary);
        }

        /* Dropdown CSS */
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; top: 100%; left: 0; background: var(--white);
            min-width: 220px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-radius: 10px; opacity: 0; visibility: hidden;
            transform: translateY(10px); transition: all 0.3s ease;
            display: flex; flex-direction: column; padding: 10px 0; z-index: 100;
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu li { list-style: none; }
        .dropdown-menu li a { 
            color: var(--text-dark) !important; padding: 12px 20px; 
            display: block; font-size: 0.95rem; text-transform: none;
        }
        .dropdown-menu li a:hover { background: var(--light-bg); color: var(--primary) !important; padding-left: 25px; }
        .dropdown-menu li a::after { display: none; }

        .mobile-menu-btn {
            display: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
        }

        header.scrolled .mobile-menu-btn {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            background: linear-gradient(rgba(5, 36, 124, 0.6), rgba(0, 0, 0, 0.4)), url('assets/img/hero-airplane.png') center/cover no-repeat;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeUp 1s ease;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: #f0f0f0;
            margin-bottom: 40px;
            font-weight: 300;
            animation: fadeUp 1s ease 0.2s backwards;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeUp 1s ease 0.4s backwards;
        }

        .trust-badges {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: fadeUp 1s ease 0.6s backwards;
        }

        .trust-badge {
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .trust-badge i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Glassmorphism Form */
        .glass-form-wrapper {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            animation: fadeLeft 1s ease 0.5s backwards;
        }

        .glass-form-wrapper h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.8rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.85);
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--accent);
            background: var(--white);
            box-shadow: 0 0 15px rgba(111, 200, 234, 0.4);
        }

        .glass-form-wrapper .btn {
            width: 100%;
            margin-top: 10px;
            font-size: 1.1rem;
        }

        /* Floating Airplane Effect */
        .floating-plane {
            position: absolute;
            top: 15%;
            left: -100px;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.15);
            animation: floatPlane 25s linear infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes floatPlane {
            0% { transform: translate(0, 0) rotate(15deg) scale(0.8); opacity: 0; }
            5% { opacity: 1; }
            95% { opacity: 1; }
            100% { transform: translate(110vw, -300px) rotate(15deg) scale(1.2); opacity: 0; }
        }

        /* Destinations */
        .dest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .dest-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 380px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .dest-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .dest-card:hover img {
            transform: scale(1.1);
        }

        .dest-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 25px 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .dest-overlay h4 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 5px;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .dest-overlay p {
            font-size: 1rem;
            color: var(--gold);
            margin-bottom: 15px;
            font-weight: 500;
            transform: translateY(20px);
            transition: var(--transition);
            opacity: 0;
        }

        .dest-card .btn {
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
            align-self: flex-start;
        }

        .dest-card:hover .dest-overlay h4,
        .dest-card:hover .dest-overlay p,
        .dest-card:hover .btn {
            opacity: 1;
            transform: translateY(0);
        }

        .dest-card:hover .dest-overlay p {
            transition-delay: 0.1s;
        }
        .dest-card:hover .btn {
            transition-delay: 0.2s;
        }

        /* Packages */
        .packages-bg {
            background-color: var(--white);
        }

        .pkg-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .pkg-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pkg-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .pkg-card:hover::before {
            transform: scaleX(1);
        }

        .pkg-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(5, 36, 124, 0.08);
        }

        .pkg-card.featured {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(5, 36, 124, 0.2);
        }

        .pkg-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pkg-card.featured::before {
            background: var(--gold);
            transform: scaleX(1);
        }

        .pkg-card.featured h4, .pkg-card.featured h3, .pkg-card.featured .pkg-features li {
            color: var(--white);
        }

        .pkg-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }

        .pkg-card h4 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .pkg-features {
            margin: 35px 0;
            text-align: left;
        }

        .pkg-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-muted);
        }

        .pkg-features li i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .pkg-card.featured .pkg-features li i {
            color: var(--accent);
        }

        /* Visa Services */
        .visa-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .visa-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }

        .visa-card:hover {
            transform: translateY(-8px);
            border-bottom-color: var(--secondary);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .visa-card i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .visa-card:hover i {
            color: var(--accent);
            transform: scale(1.1);
        }

        .visa-card h5 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        /* Why Us */
        .why-us-bg {
            background-color: var(--primary);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .why-us-bg::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('assets/img/why-us-bg.png') center/cover;
            opacity: 0.1;
            mask-image: linear-gradient(to right, transparent, black);
            -webkit-mask-image: linear-gradient(to right, transparent, black);
        }

        .why-us-bg .section-title, .why-us-bg .section-subtitle {
            color: var(--white);
            position: relative;
            z-index: 2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .feature-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }

        .feature-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            background: var(--white);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .feature-item h5 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .feature-item p {
            color: #d1d5db;
        }

        /* Reviews */
        .reviews-bg {
            background-color: var(--white);
        }

        .reviews-wrapper {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 20px 10px 40px;
        }

        .reviews-wrapper::-webkit-scrollbar {
            display: none; /* Hide scrollbar for clean look */
        }

        .review-card {
            min-width: calc(33.333% - 20px);
            scroll-snap-align: center;
            background: var(--light-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.02);
            position: relative;
        }

        .review-card::before {
            content: '\f10d';
            font-family: 'FontAwesome';
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            color: rgba(5, 36, 124, 0.05);
        }

        .stars {
            color: var(--gold);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 30px;
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .reviewer-info h6 {
            font-size: 1.1rem;
            margin-bottom: 2px;
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

        .reviewer-info span {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Offers */
        .offers {
            background: linear-gradient(rgba(5, 36, 124, 0.85), rgba(5, 36, 124, 0.85)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
            padding: 120px 0;
        }

        .offers h2 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .offers > p {
            font-size: 1.2rem;
            color: #e0e0e0;
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
        }

        .count-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            padding: 25px 20px;
            border-radius: 15px;
            min-width: 120px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .count-item span {
            display: block;
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 5px;
        }

        .count-item p {
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: left;
            margin-top: 60px;
        }

        .offer-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: var(--transition);
        }

        .offer-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }

        .offer-card h4 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .offer-card p {
            margin-bottom: 25px;
            color: #f0f0f0;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            text-align: left;
            left: 0;
            transform: none;
            margin-bottom: 30px;
        }
        
        .about-content h2::after {
            left: 0;
            transform: none;
        }

        .about-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        /* FAQ */
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 10px;
            margin-bottom: 20px;
            background: var(--white);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .accordion-header {
            width: 100%;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background: var(--light-bg);
        }

        .accordion-header i {
            transition: transform 0.3s ease;
            color: var(--accent);
            font-size: 1.2rem;
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-content p {
            padding: 0 30px 30px;
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Contact & Footer */
        .footer {
            background-color: #03154a;
            color: #e0e0e0;
            padding-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 60px;
        }

.footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--white);
            margin-bottom: 25px;
            text-decoration: none;
        }

        .footer-logo img {
            height: 65px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-logo-text {
            display: flex;
            flex-direction: column;
        }

        .footer-logo-text h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin: 0;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .footer-logo-text span {
            color: var(--gold);
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .footer-logo img {
            height: 65px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-logo-text {
            display: flex;
            flex-direction: column;
        }

        .footer-logo-text h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin: 0;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .footer-logo-text span {
            color: var(--gold);
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .footer-desc {
            margin-bottom: 30px;
            color: #b0b8c8;
            font-size: 1.05rem;
        }

        .footer h4 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            transition: var(--transition);
            color: #b0b8c8;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 8px;
        }

        .contact-info li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            color: #b0b8c8;
            align-items: flex-start;
        }

        .contact-info i {
            color: var(--accent);
            font-size: 1.3rem;
            margin-top: 4px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-icons a:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #b0b8c8;
            background-color: #020d30;
        }

        /* Floating Actions */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .float-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            transition: var(--transition);
            text-decoration: none;
            position: relative;
        }

        .float-whatsapp {
            background-color: var(--green);
            animation: pulse-green 2s infinite;
        }

        .float-call {
            background-color: var(--primary);
            animation: pulse-blue 2s infinite;
            animation-delay: 1s;
            width: 55px;
            height: 55px;
            font-size: 1.5rem;
            margin-left: auto;
        }

        .float-top {
            background-color: var(--secondary);
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            margin-left: auto;
            transform: translateY(20px);
        }

        .float-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .float-btn:hover {
            transform: scale(1.1) !important;
        }

        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes pulse-blue {
            0% { box-shadow: 0 0 0 0 rgba(5, 36, 124, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(5, 36, 124, 0); }
            100% { box-shadow: 0 0 0 0 rgba(5, 36, 124, 0); }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeLeft {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content h1 { font-size: 3.8rem; }
        }

        @media (max-width: 1024px) {
            .hero-content h1 { font-size: 3.2rem; }
            .review-card { min-width: calc(50% - 15px); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .about-grid { grid-template-columns: 1fr; }
            .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
        }

        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
            .hero-btns { justify-content: center; flex-wrap: wrap; }
            .trust-badges { justify-content: center; }
            .floating-plane { display: none; }
            .glass-form-wrapper { max-width: 600px; margin: 0 auto; }
            .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 20px; }
            .dropdown:hover .dropdown-menu { display: flex; }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 30px 20px;
                gap: 20px;
                box-shadow: 0 15px 30px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: all 0.4s ease;
            }
            
            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .nav-links li a { color: var(--text-dark); font-size: 1.2rem; }
            
            .mobile-menu-btn { display: block; }
            .header-actions { display: none; }
            
            .section-title { font-size: 2.2rem; }
            .hero-content h1 { font-size: 2.8rem; }
            
            .review-card { min-width: 100%; }
            
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            
            .countdown { flex-wrap: wrap; }
            .count-item { min-width: calc(50% - 15px); }
            
            .floating-actions { bottom: 20px; right: 20px; }
            .float-btn { width: 55px; height: 55px; font-size: 1.8rem; }
            .float-call { width: 45px; height: 45px; font-size: 1.2rem; }
        }
    
/* Extra Mobile Responsiveness Fixes */
@media (max-width: 600px) {
    .glass-form-wrapper div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 450px) {
    .pkg-grid, .dest-grid, .visa-grid, .features-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
}
    
/* Critical Horizontal Scroll Fixes */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

@media (max-width: 500px) {
    .trust-badges {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .hero-grid {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        word-wrap: break-word;
    }
    
    .glass-form-wrapper {
        padding: 20px !important;
    }
}

/* ==========================================================================
   TOUR PAGE SPECIFIC STYLES
   ========================================================================== */

.tour-header {
    background: linear-gradient(rgba(5, 36, 124, 0.8), rgba(5, 36, 124, 0.9)), url('assets/img/hero-bg.jpg') center/cover;
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}
.tour-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #e0e0e0;
}
.tour-meta i { color: var(--gold); margin-right: 5px; }

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}
.tour-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.booking-sidebar {
    position: sticky;
    top: 100px;
}
.booking-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid var(--gold);
}
.price-tag {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.price-tag span { display: block; color: #666; font-size: 0.9rem; margin-bottom: 5px; }
.price-tag strong { font-size: 2rem; color: var(--primary); display: block; }
.price-tag small { color: #888; }

.booking-card .form-group { margin-bottom: 15px; }
.booking-card .form-label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; font-size: 0.9rem; }
.booking-card .form-control {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px;
    font-family: inherit; font-size: 0.95rem;
}
.booking-card .form-control:focus { border-color: var(--gold); outline: none; }

.btn-book {
    width: 100%; background: var(--primary); color: white; border: none;
    padding: 15px; border-radius: 6px; font-weight: 600; font-size: 1.1rem;
    cursor: pointer; margin-top: 10px; transition: 0.3s;
}
.btn-book:hover { background: #031b5e; }

.whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; background: #25D366; color: white; padding: 15px;
    border-radius: 6px; font-weight: 600; font-size: 1.1rem;
    text-decoration: none; margin-top: 15px; transition: 0.3s;
}
.whatsapp-btn:hover { background: #1ebc59; }

.itinerary { margin-top: 30px; margin-bottom: 40px; }
.day-item { position: relative; padding-left: 30px; margin-bottom: 25px; border-left: 2px dashed #ccc; }
.day-item::before {
    content: ''; position: absolute; left: -9px; top: 0; width: 16px; height: 16px;
    background: var(--gold); border-radius: 50%;
}
.day-title { font-weight: 700; font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
.day-title span {
    background: var(--primary); color: white; padding: 2px 8px; border-radius: 4px;
    font-size: 0.85rem; margin-right: 10px;
}

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.benefit-box { background: #f9f9f9; padding: 25px; border-radius: 8px; }
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.benefit-list.inc i { color: #10b981; margin-top: 4px; }
.benefit-list.exc i { color: #ef4444; margin-top: 4px; }

/* Compatibility for older tour versions */
.tour-header-section {
    background: linear-gradient(rgba(5, 36, 124, 0.8), rgba(5, 36, 124, 0.9)), url('../assets/img/hero-bg.jpg') center/cover;
    color: white; padding: 60px 0 40px;
}
.tour-header-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.tour-title-area h1 { font-size: 2.5rem; margin-bottom: 15px; }
.tour-meta-strip { display: flex; gap: 20px; color: #e0e0e0; }
.tour-meta-strip i { color: var(--gold); margin-right: 5px; }
.main-tour-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 50px 0; align-items: start; }
.main-image { width: 100%; height: auto; border-radius: 12px; margin-bottom: 30px; }
.tour-section-title {
    font-size: 1.8rem; color: var(--primary); margin-top: 40px; margin-bottom: 20px;
    border-bottom: 2px solid #eee; padding-bottom: 10px;
}
.highlights-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.highlights-list li { display: flex; align-items: center; gap: 10px; }
.highlights-list i { color: #10b981; }
.itinerary-container { margin-bottom: 40px; }
.day-block { background: #f9fafb; border: 1px solid #eee; border-radius: 8px; margin-bottom: 15px; overflow: hidden; }
.day-header { background: white; padding: 15px 20px; font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid #eee; }
.day-header span { color: var(--gold); margin-right: 10px; }
.day-content { padding: 20px; color: #555; line-height: 1.6; }
.benefits-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.benefit-card { background: #fdfdfd; border: 1px solid #eee; border-radius: 8px; padding: 25px; }
.benefit-card h4 { margin-bottom: 20px; font-size: 1.2rem; }
.sidebar-sticky { position: sticky; top: 100px; }
.booking-form-card {
    background: white; padding: 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); border-top: 4px solid var(--gold);
}
.booking-form-card h3 { margin-bottom: 25px; text-align: center; color: var(--primary); }
.form-input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-family: inherit; font-size: 0.95rem; }
.btn-submit {
    width: 100%; background: var(--primary); color: white; border: none;
    padding: 15px; border-radius: 6px; font-weight: 600; font-size: 1.1rem;
    cursor: pointer; margin-top: 10px; transition: 0.3s;
}
.btn-submit:hover { background: #031b5e; }
.whatsapp-fast {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; background: #25D366; color: white; padding: 15px;
    border-radius: 6px; font-weight: 600; font-size: 1.1rem;
    text-decoration: none; margin-top: 15px; transition: 0.3s;
}
.whatsapp-fast:hover { background: #1ebc59; }

@media (max-width: 992px) {
    .tour-grid, .main-tour-grid { grid-template-columns: 1fr; }
    .booking-sidebar, .sidebar-sticky { position: static; }
}
@media (max-width: 768px) {
    .benefits-grid, .benefits-wrapper, .highlights-list { grid-template-columns: 1fr; }
}


/* Chatbot Styles */
.chat-chip {
    background: var(--light-bg);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}
.chat-chip:hover {
    background: var(--primary);
    color: white;
}
#chatbot-trigger:hover {
    transform: scale(1.1);
}
.float-btn {
    position: fixed;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}
.float-whatsapp { bottom: 30px; right: 110px; background: var(--green); }
.float-call { bottom: 100px; background: var(--primary); }
.float-top { bottom: 170px; background: var(--gold); opacity: 0; visibility: hidden; }
.float-top.visible { opacity: 1; visibility: visible; }
.float-btn:hover { transform: translateY(-5px); color: white; }
