:root {
    --bg-primary: #fbfaf7;
    --bg-secondary: #f6f3ed;
    --bg-card: #ffffff;
    --border-premium: #e8e2d9;
    --border-premium-hover: #c8bdad;

    --text-primary: #1c1917;
    --text-secondary: #44403c;
    --text-muted: #78716c;

    /* Luxury Champagne & Classic Dark Charcoal Palette */
    --accent-gold: #aa7c11;
    --accent-gold-light: #c5a880;
    --accent-gold-hover: #8a6208;
    --gradient-gold: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);

    --accent-charcoal: #1c1917;
    --accent-charcoal-hover: #292524;

    /* WhatsApp Accent */
    --whatsapp-green: #15803d;
    --whatsapp-hover: #166534;
    --gradient-whatsapp: linear-gradient(135deg, #16a34a 0%, #15803d 100%);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
    --shadow-md: 0 4px 20px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 12px 30px rgba(28, 25, 23, 0.06);
    --shadow-gold: 0 4px 15px rgba(197, 168, 128, 0.15);
    --shadow-float: 0 20px 60px rgba(28, 25, 23, 0.12);

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

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

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Animation utility classes */
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }
.animate-slide-down { animation: slideDown 0.4s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
    background: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(22, 163, 74, 0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Glass Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-premium);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(251, 250, 247, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.35rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--accent-gold);
}

.logo svg {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:not(.nav-cta):hover {
    color: var(--accent-gold);
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-charcoal);
    color: #ffffff !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 6px;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    border: 1px solid var(--accent-charcoal);
}

.nav-cta:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff !important;
    box-shadow: var(--shadow-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

.mobile-menu-btn .icon-open {
    display: block;
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn.active .icon-open {
    display: none;
}

.mobile-menu-btn.active .icon-close {
    display: block !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.75) 0%, rgba(28, 25, 23, 0.85) 100%);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev { left: 2rem; }
.slider-nav.next { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 40;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--accent-gold-light);
    width: 24px;
    border-radius: 4px;
}

.hero-grid {
    position: relative;
    z-index: 30;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    color: #ffffff;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.3);
    backdrop-filter: blur(8px);
    color: var(--accent-gold-light);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6d3 50%, #c5a880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 520px;
}

/* Partner Airlines Bar */
.partner-airlines {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.75rem;
}

.partner-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.airline-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.airline-logos span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.airline-logos span:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.airline-logos span svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* Search Widget - Premium Floating Card */
.search-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-float);
    width: 100%;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-premium);
    margin-bottom: 1.75rem;
    gap: 2rem;
}

.search-tab {
    background: none;
    border: none;
    padding-bottom: 0.85rem;
    font-size: 0.825rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.search-tab.active {
    color: var(--text-primary);
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.search-tab:hover:not(.active) {
    color: var(--text-secondary);
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group label svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border-premium);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2378716c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.75rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold-light);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
    background-color: #ffffff;
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus) {
    border-color: var(--border-premium-hover);
}

.search-btn {
    width: 100%;
    padding: 1.15rem;
    background: var(--gradient-whatsapp);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.35);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

/* Stats Banner */
.stats-banner {
    background: var(--accent-charcoal);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(170, 124, 17, 0.1) 0%, transparent 50%);
}

.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff 0%, #c5a880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* Sections */
.section {
    padding: 6.5rem 2rem;
    background: var(--bg-primary);
}

.section-white {
    background: #ffffff;
}

.section-contact {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-premium);
    border-bottom: 1px solid var(--border-premium);
    position: relative;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    padding: 0.4rem 1rem;
    background: rgba(170, 124, 17, 0.08);
    border-radius: 9999px;
    border: 1px solid rgba(170, 124, 17, 0.15);
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid - Premium Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-premium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--border-premium-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(197, 168, 128, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Popular Flight Deals - Boarding Pass Layout */
.deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.ticket-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-premium);
    display: flex;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.ticket-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold-light);
    transform: translateY(-3px);
}

.ticket-main {
    flex: 3;
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airline-tag {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airline-tag svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.class-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0.3rem 0.75rem;
    background: var(--bg-secondary);
    border-radius: 4px;
}

.ticket-flight-path {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.airport-node {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 100px;
}

.airport-node:last-child {
    text-align: right;
}

.airport-code {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.city-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.flight-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.35rem;
}

.next-day {
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 700;
    vertical-align: super;
}

.flight-line {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: relative;
}

.duration {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.line-graphic {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.line-dot {
    width: 8px;
    height: 8px;
    background: var(--border-premium-hover);
    border-radius: 50%;
}

.line-plane {
    flex: 1;
    border-bottom: 1.5px dashed var(--border-premium-hover);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: var(--accent-gold);
    padding-bottom: 6px;
}

.line-plane svg {
    width: 18px;
    height: 18px;
}

.stops-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stops-tag svg {
    width: 12px;
    height: 12px;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-premium);
    padding-top: 1rem;
    gap: 1rem;
}

.ticket-footer span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ticket-footer svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Ticket Stub (Price & CTA) */
.ticket-stub {
    flex: 1.1;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(246, 243, 237, 0.8) 100%);
    border-left: 1.5px dashed var(--border-premium);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    position: relative;
}

.ticket-stub::before,
.ticket-stub::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--bg-primary);
    border-radius: 50%;
    left: -11px;
}

.ticket-stub::before { top: -11px; }
.ticket-stub::after { bottom: -11px; }

#deals .ticket-stub::before,
#deals .ticket-stub::after {
    background: var(--bg-primary);
}

.stub-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.price-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.discount-badge {
    background: var(--accent-charcoal);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 0.25rem;
}

.book-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-charcoal);
    border: none;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-btn svg {
    width: 16px;
    height: 16px;
}

.ticket-card:hover .book-btn {
    background: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

/* Top Routes Split Layout */
.routes-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.routes-featured {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-premium);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.routes-featured:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-premium-hover);
    transform: translateY(-3px);
}

.routes-featured:hover .arrow-circle {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateX(4px) scale(1.05);
}

.featured-image-container {
    position: relative;
    height: 100%;
    min-height: 420px;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.routes-featured:hover .featured-image-container img {
    transform: scale(1.03);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2.5rem;
    color: #ffffff;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0.75rem;
    background: rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: 4px;
}

.featured-overlay h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.featured-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 440px;
    line-height: 1.55;
}

.arrow-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    align-self: center;
}

.arrow-circle svg {
    width: 22px;
    height: 22px;
}

.routes-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.route-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-premium);
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.route-item-card:hover {
    border-color: var(--border-premium-hover);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
    background: var(--bg-card);
}

.route-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.route-cities {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-cities svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

.route-frequency {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-left: 0.25rem;
}

.route-price-badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-premium);
    color: var(--text-primary);
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.route-item-card:hover .route-price-badge {
    background: var(--accent-charcoal);
    color: #ffffff;
    border-color: var(--accent-charcoal);
}

/* Testimonials - Premium Cards with Avatars */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-premium);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-premium-hover);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(197, 168, 128, 0.15);
    line-height: 1;
}

.rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.star {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.star svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-divider {
    height: 1px;
    background: linear-gradient(to right, var(--accent-gold-light), transparent);
    margin-bottom: 1.25rem;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-location svg {
    width: 12px;
    height: 12px;
}

.testimonial-route {
    font-size: 0.78rem;
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-route svg {
    width: 12px;
    height: 12px;
}

/* FAQ Accordions */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-premium);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-premium-hover);
}

.faq-item.active {
    border-color: var(--accent-gold-light);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    user-select: none;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--accent-gold);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-primary);
}

.faq-answer p {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* Contact Details */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-premium);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-premium-hover);
    transform: translateY(-4px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(197, 168, 128, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
}

.contact-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.contact-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.whatsapp-cta {
    text-align: center;
    margin-top: 2rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.35rem 3rem;
    background: var(--gradient-whatsapp);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-whatsapp);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-glow 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(22, 163, 74, 0.5);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: #ffffff;
    padding: 5rem 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-section h3 svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold-light);
}

.footer-section p,
.footer-section a {
    color: #a8a29e;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--accent-gold-light);
    transform: translateX(3px);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: #a8a29e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: #78716c;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold-light);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    background: var(--accent-gold);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--accent-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    color: #78716c;
    font-size: 0.82rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 2.5rem;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-badge {
        margin: 0 auto 1.5rem auto;
    }

    .hero-lead {
        margin: 0 auto 2.5rem auto;
    }

    .airline-logos {
        justify-content: center;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .routes-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(251, 250, 247, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        gap: 1.25rem;
        z-index: 999;
        animation: fadeIn 0.3s ease;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.6rem 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-container {
        padding: 0.9rem 1.25rem;
    }

    .logo {
        font-size: 1.35rem;
    }

    /* Hero */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 2.5rem;
        min-height: auto;
    }

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

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .slider-nav.prev { left: 0.5rem; }
    .slider-nav.next { right: 0.5rem; }

    /* Search Widget */
    .search-widget {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }

    .search-tabs {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .search-tab {
        font-size: 0.8rem;
        padding-bottom: 0.65rem;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-bottom: 0.85rem;
    }

    .form-group select,
    .form-group input {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    .search-btn {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.85rem;
    }

    /* Stats Banner */
    .stats-banner {
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.72rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    /* Deals / Tickets */
    .deals-grid {
        gap: 1.25rem;
    }

    .ticket-card {
        flex-direction: column;
        border-style: solid;
        border-color: var(--border-premium);
        border-radius: 12px;
    }

    .ticket-main {
        padding: 1.25rem;
        gap: 1rem;
    }

    .ticket-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .airline-tag {
        font-size: 0.9rem;
    }

    .class-tag {
        font-size: 0.68rem;
    }

    .ticket-flight-path {
        gap: 1rem;
    }

    .airport-code {
        font-size: 1.75rem;
    }

    .city-name {
        font-size: 0.78rem;
    }

    .flight-time {
        font-size: 0.95rem;
    }

    .duration {
        font-size: 0.7rem;
    }

    .ticket-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.78rem;
    }

    .ticket-stub {
        border-left: none;
        border-top: 1.5px dashed var(--border-premium);
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        gap: 1rem;
        flex: auto;
        width: 100%;
        min-height: auto;
    }

    .ticket-stub::before,
    .ticket-stub::after {
        display: none;
    }

    .stub-details {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
    }

    .price-label {
        font-size: 0.65rem;
    }

    .price-value {
        font-size: 1.65rem;
    }

    .discount-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .book-btn {
        width: auto;
        padding: 0.65rem 1.25rem;
        font-size: 0.78rem;
    }

    /* Routes */
    .routes-layout {
        gap: 1.5rem;
    }

    .routes-featured {
        border-radius: 12px;
    }

    .featured-image-container {
        min-height: 260px;
    }

    .featured-overlay {
        padding: 1.5rem;
    }

    .featured-overlay h3 {
        font-size: 1.5rem;
    }

    .featured-overlay p {
        font-size: 0.88rem;
    }

    .featured-tag {
        font-size: 0.65rem;
    }

    .arrow-circle {
        width: 42px;
        height: 42px;
    }

    .routes-list {
        gap: 0.75rem;
    }

    .route-item-card {
        padding: 1.1rem 1.25rem;
    }

    .route-cities {
        font-size: 0.95rem;
    }

    .route-frequency {
        font-size: 0.72rem;
    }

    .route-price-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-container {
        gap: 0.65rem;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.1rem;
        font-size: 0.88rem;
    }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .contact-card {
        padding: 1.75rem 1.25rem;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .logo-text {
        justify-content: center;
    }

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    /* Floating WhatsApp */
    .floating-whatsapp {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 70px;
    }

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

    .hero-lead {
        font-size: 0.92rem;
    }

    .airline-logos {
        gap: 0.65rem;
    }

    .airline-logos span {
        font-size: 0.72rem;
        padding: 0.3rem 0.65rem;
    }

    .search-widget {
        padding: 1.25rem 1rem;
    }

    .section {
        padding: 3rem 0.85rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .ticket-main {
        padding: 1rem;
    }

    .airport-code {
        font-size: 1.5rem;
    }

    .featured-image-container {
        min-height: 220px;
    }

    .featured-overlay {
        padding: 1.25rem;
    }

    .featured-overlay h3 {
        font-size: 1.3rem;
    }

    .route-item-card {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .route-price-badge {
        align-self: flex-start;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .whatsapp-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.88rem;
    }

    .footer {
        padding: 2.5rem 0.85rem 1.25rem;
    }

    .footer-section h3 {
        font-size: 1.05rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 1.45rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
