@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #050811;
    --bg-gradient: radial-gradient(circle at 50% 0%, #0c1630 0%, #050811 100%);
    --card-bg: rgba(13, 20, 38, 0.6);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Neon Colors */
    --neon-blue: #0066ff;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff007f;

    /* Neon Glows */
    --glow-blue: 0 0 10px rgba(0, 102, 255, 0.5), 0 0 20px rgba(0, 102, 255, 0.3), 0 0 30px rgba(0, 102, 255, 0.15);
    --glow-cyan: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3), 0 0 30px rgba(0, 240, 255, 0.15);
    --glow-pink: 0 0 10px rgba(255, 0, 127, 0.5), 0 0 20px rgba(255, 0, 127, 0.3), 0 0 30px rgba(255, 0, 127, 0.15);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 8, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    animation: neonPulse 2s infinite alternate;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

nav a:hover,
nav a.active {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transition: var(--transition-smooth);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.btn-nav-book {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    box-shadow: inset 0 0 0 0 rgba(0, 102, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-nav-book:hover {
    background: var(--neon-blue);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 140px;
    text-align: center;
    overflow: hidden;
}

/* Subtle Animated Background Elements */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.glow-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 40%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span {
    display: block;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue) 0%, #0044cc 100%);
    border: none;
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--glow-blue);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.7), 0 0 5px rgba(0, 240, 255, 0.5);
    background: linear-gradient(135deg, #0077ff 0%, #0055ff 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Carousel Section (Front Center) */
.carousel-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    position: relative;
    z-index: 5;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 102, 255, 0.15);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Visual Fallback styling if images haven't been loaded yet */
.carousel-slide.fallback-slide {
    background: linear-gradient(135deg, #09132e 0%, #030611 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.carousel-slide.fallback-slide .slide-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: iconBounce 2s infinite alternate;
}

.carousel-slide.fallback-slide h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.carousel-slide.fallback-slide p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 8, 17, 0.9) 0%, rgba(5, 8, 17, 0) 100%);
    padding: 40px 30px 24px 30px;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.carousel-caption p {
    font-size: 0.95rem;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 20, 38, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    color: white;
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    width: 24px;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

/* About Section */
#about {
    background: linear-gradient(180deg, #050811 0%, #080e1e 100%);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* 4-Bar Tour Grid */
.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.route-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.route-card:nth-child(even)::before {
    background: var(--neon-cyan);
}

.route-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 102, 255, 0.1);
}

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

.route-step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.01) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 20px;
    right: 24px;
    user-select: none;
}

.route-card-icon {
    font-size: 2.2rem;
    color: var(--neon-blue);
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.route-card:nth-child(even) .route-card-icon {
    color: var(--neon-cyan);
}

.route-card:hover .route-card-icon {
    transform: scale(1.1);
}

.route-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.route-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.route-card-meta {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-card:nth-child(odd) .route-card-meta {
    color: var(--neon-blue);
}

/* Perks / Booking Promo Section */
.promo-section {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(13, 20, 38, 0.4) 0%, rgba(5, 8, 17, 0.6) 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.promo-details {
    flex: 1.2;
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.perks-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
}

.perks-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.perks-list li svg {
    color: var(--neon-cyan);
    filter: drop-shadow(var(--glow-cyan));
    flex-shrink: 0;
}

.promo-booking-card {
    flex: 0.8;
    background: rgba(13, 20, 38, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.promo-booking-card .price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 8px;
    display: block;
}

.promo-booking-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.promo-booking-card .booking-note {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    margin-bottom: 24px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-booking-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Social Media Section */
#socials {
    background: #050811;
    text-align: center;
    border-top: 1px solid var(--card-border);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-icon-link {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-icon-link svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    z-index: 2;
    transition: var(--transition-smooth);
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Instagram Hover styling */
.social-icon-link.instagram:hover {
    color: white;
    border-color: #ff007f;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

.social-icon-link.instagram::before {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* TikTok Hover styling */
.social-icon-link.tiktok:hover {
    color: white;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.social-icon-link.tiktok::before {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

/* Facebook Hover styling */
.social-icon-link.facebook:hover {
    color: white;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.social-icon-link.facebook::before {
    background: #1877f2;
}

/* WhatsApp Hover styling */
.social-icon-link.whatsapp:hover {
    color: white;
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.social-icon-link.whatsapp::before {
    background: #25d366;
}

.social-icon-link:hover::before {
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
}

.social-icon-link:hover svg {
    transform: scale(1.1);
}

.social-handle {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.social-handle span {
    color: var(--neon-pink);
    font-weight: 600;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(13, 20, 38, 0.95);
    border: 1px solid var(--neon-blue);
    box-shadow: var(--glow-blue);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--neon-cyan);
}

.form-group input,
.form-group select {
    background: rgba(5, 8, 17, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-summary {
    background: rgba(5, 8, 17, 0.5);
    border-radius: 10px;
    padding: 16px;
    margin-top: 10px;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.booking-summary-row:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 700;
}

.booking-total-price {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

/* Success State inside modal */
.booking-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neon-cyan);
    font-size: 2.5rem;
    margin-bottom: 24px;
    animation: successPulse 2s infinite;
}

.booking-success h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 320px;
}

/* Footer styling */
footer {
    background: #03050a;
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px 0;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 4px;
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-info span {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Animations */
@keyframes neonPulse {
    0% {
        text-shadow: 0 0 4px rgba(0, 102, 255, 0.4), 0 0 10px rgba(0, 102, 255, 0.2);
    }

    100% {
        text-shadow: 0 0 12px rgba(0, 102, 255, 0.8), 0 0 22px rgba(0, 102, 255, 0.4), 0 0 4px rgba(0, 240, 255, 0.2);
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(-50%, 0) scale(1);
    }

    100% {
        transform: translate(-45%, 20px) scale(1.05);
    }
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .promo-section {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .promo-booking-card {
        width: 100%;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-title span {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #070b13;
        border-left: 1px solid var(--card-border);
        padding: 100px 40px;
        z-index: 105;
        transition: var(--transition-smooth);
    }

    nav.active {
        right: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span {
        font-size: 2.8rem;
    }

    .route-grid {
        grid-template-columns: 1fr;
    }

    .perks-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}