/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary: #2b78e4;          /* Brighter Logo Royal Blue */
    --primary-hover: #1a62cc;
    --accent: #ff3330;           /* Brighter Logo Crimson Red */
    --accent-hover: #dd1c1a;     /* Darker Crimson */
    --dark-bg: #080d1a;          /* Rich Navy Dark Background */
    --dark-card: rgba(17, 24, 39, 0.65); /* Translucent iPhone Glass Card */
    --light-bg: #f8fafc;         /* Crisp Snow White */
    --light-card: #ffffff;
    
    --text-light: #ffffff;
    --text-muted: #cbd5e1;       /* Lighter slate-300 for readability */
    --text-dark: #0f172a;
    --text-dark-muted: #475569;
    
    --success: #10b981;
    --error: #ef4444;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-color-light: rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(207, 42, 39, 0.35);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-light);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-fb {
    background-color: #1877f2;
    color: #ffffff;
    border: 2px solid #1877f2;
}

.btn-fb:hover {
    background-color: #166fe5;
    border-color: #166fe5;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
    padding: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
    background-color: rgba(8, 13, 26, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.main-header.scrolled {
    background-color: rgba(8, 13, 26, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-left: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.main-header.scrolled .logo-img {
    height: 46px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 1px;
    transition: var(--transition-normal);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition-slow);
    opacity: 0;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-btn {
    margin-top: 16px;
    padding: 12px 32px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomHero 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.9) 80%);
}

.hero-container {
    z-index: 10;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(246, 173, 85, 0.15);
    border: 1px solid rgba(246, 173, 85, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* Hero Features Badges */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.feat-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.feat-badge i {
    color: var(--accent);
    font-size: 0.95rem;
}

.feat-badge:hover {
    background-color: rgba(33, 97, 181, 0.15);
    border-color: rgba(33, 97, 181, 0.3);
    transform: translateY(-2px);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.hero-wave .shape-fill {
    fill: var(--dark-bg);
}

/* ==========================================================================
   FLIGHT OFFERS SECTION
   ========================================================================== */
.flight-section {
    background: radial-gradient(circle at 80% 20%, rgba(43, 120, 228, 0.12) 0%, rgba(8, 13, 26, 0) 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 51, 48, 0.08) 0%, rgba(8, 13, 26, 0) 50%),
                var(--dark-bg);
}

.special-route-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.route-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.route-banner-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-tag {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.route-banner-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.route-banner-info p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
    font-weight: 300;
}

.banner-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-features .feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.banner-features .feat i {
    color: var(--accent);
    font-size: 1.1rem;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flight-card {
    background-color: var(--dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.flight-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(43, 120, 228, 0.2);
}

.flight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
}

.flight-badge.badge-accent {
    background-color: var(--accent);
    color: #1a202c;
}

.flight-header {
    margin-bottom: 28px;
}

.route-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.route-names {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.route-names h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.route-names i {
    font-size: 0.9rem;
    color: var(--text-muted);
    animation: bounceRight 1.5s infinite alternate ease-in-out;
}

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

.flight-details {
    margin-bottom: 32px;
    flex-grow: 1;
}

.flight-details ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flight-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.flight-details li i {
    color: var(--success);
    font-size: 0.95rem;
    margin-top: 4px;
}

.flight-price-booking {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.btn-booking {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ==========================================================================
   GLOBAL TICKETING BANNER
   ========================================================================== */
.global-ticketing-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.7) 100%);
}

.banner-container {
    z-index: 10;
    position: relative;
}

.banner-content {
    max-width: 650px;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-light);
}

.banner-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.banner-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
    background: radial-gradient(circle at 15% 15%, rgba(43, 120, 228, 0.08) 0%, rgba(8, 13, 26, 0) 50%),
                radial-gradient(circle at 85% 85%, rgba(255, 51, 48, 0.08) 0%, rgba(8, 13, 26, 0) 50%),
                var(--dark-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 40px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(43, 120, 228, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(43, 120, 228, 0.15);
    color: var(--primary);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================================================
   OTHER SERVICES SECTION
   ========================================================================== */
.other-services-section {
    background: radial-gradient(circle at 50% 50%, rgba(43, 120, 228, 0.08) 0%, rgba(12, 21, 42, 0) 70%),
                #0c152a;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 40px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 51, 48, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(207, 42, 39, 0.1);
    color: var(--accent);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    align-self: center;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(33, 97, 181, 0.35);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-contact {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-sm);
    border: 1px dashed var(--border-color);
}

.service-contact span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-contact strong {
    font-size: 1rem;
    color: var(--accent);
}

.service-card .btn {
    align-self: stretch;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background: radial-gradient(circle at 50% 50%, rgba(255, 51, 48, 0.05) 0%, rgba(14, 20, 35, 0) 60%),
                #0e1423;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    height: 260px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* ==========================================================================
   CONTACT SECTION & FORMS
   ========================================================================== */
.contact-section {
    background: radial-gradient(circle at 80% 80%, rgba(43, 120, 228, 0.08) 0%, rgba(8, 13, 26, 0) 50%),
                radial-gradient(circle at 20% 20%, rgba(255, 51, 48, 0.08) 0%, rgba(8, 13, 26, 0) 50%),
                var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    background-color: var(--dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
}

/* Office Hours & Travel Notice Cards */
.office-hours-card, .travel-notice-card {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-top: 24px;
}

.office-hours-card h4, .travel-notice-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.hours-item span {
    color: var(--text-muted);
}

.hours-item strong {
    color: var(--text-light);
}

.travel-notice-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.travel-notice-card li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.travel-notice-card li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item .icon {
    width: 48px;
    height: 48px;
    background-color: rgba(246, 173, 85, 0.1);
    color: var(--accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item .details {
    display: flex;
    flex-direction: column;
}

.info-item .details span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-item .details a {
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item .details a:hover {
    color: var(--accent);
}

.info-item .details p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.info-item .details p strong {
    color: var(--accent);
}

.social-connect h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
}

.social-links a.facebook:hover {
    background-color: #3b5998;
    color: #fff;
    border-color: #3b5998;
    box-shadow: 0 0 15px rgba(59, 89, 152, 0.4);
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
}

.social-links a.tiktok:hover {
    background-color: #010101;
    color: #fff;
    border-color: #010101;
    box-shadow: 0 0 15px rgba(1, 1, 1, 0.4);
}

.social-links a.viber:hover {
    background-color: #7360f2;
    color: #fff;
    border-color: #7360f2;
    box-shadow: 0 0 15px rgba(115, 96, 242, 0.4);
}

/* Contact Form Container */
.contact-form-container {
    background-color: var(--dark-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: var(--border-radius-lg);
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-instructions {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.enquiry-form {
    display: none;
}

.enquiry-form.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

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

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

.form-group label .required {
    color: var(--error);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group select option {
    background-color: var(--dark-card);
    color: var(--text-light);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
    background-color: rgba(255,255,255,0.06);
    box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #070a12;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.facebook-badge-wrapper {
    display: inline-block;
}

.facebook-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1877f2;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-badge:hover {
    background-color: #166fe5;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contacts h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contacts h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-office h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-office p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 4px;
}

.footer-office a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    background-color: rgba(0,0,0,0.2);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 550px;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 24px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 12px;
}

.modal-fb-prompt {
    font-weight: 500;
    color: var(--accent) !important;
    margin-bottom: 32px !important;
}

.modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-actions button, .modal-actions a {
    min-width: 140px;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes zoomHero {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

@keyframes bounceRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(6px); }
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Scroll Trigger Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero entrance animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge.fade-in-up { animation-delay: 0.1s; }
.hero-title.fade-in-up { animation-delay: 0.3s; }
.hero-subtitle.fade-in-up { animation-delay: 0.5s; }
.hero-ctas.fade-in-up { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .flights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-contacts {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: calc(var(--header-height) + 45px);
        padding-bottom: 80px;
        display: flex;
        align-items: center;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .nav-menu, .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .special-route-banner {
        grid-template-columns: 1fr;
    }
    
    .route-banner-img img {
        min-height: 250px;
    }
    
    .route-banner-info {
        padding: 30px;
    }
    
    .flights-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info, .contact-form-container {
        padding: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contacts {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .modal-content {
        padding: 30px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .flight-card {
        padding: 24px 16px;
    }
    
    .route-names h3 {
        font-size: 1.1rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .contact-info, .contact-form-container {
        padding: 20px 16px;
    }
    
    .modal-content {
        padding: 24px 16px;
    }
    
    .modal-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-features {
        justify-content: center;
        margin-top: 24px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
}

