/* ============================================
   FIXED MOBILE-RESPONSIVE STYLES
   ============================================ */

:root {
    /* Color System */
    --navy-deep: #001a33;
    --navy-primary: #003d66;
    --navy-light: #005699;
    
    --gold-primary: #FFB400;
    --gold-hover: #f0a500;
    
    --green-trust: #28a745;
    --green-hover: #218838;
    
    --white: #FFFFFF;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #6b7280;
    --gray-700: #4b5563;
    --gray-900: #111827;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 100px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: none;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}

.sticky-status {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot-mini {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green-trust);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    width: 100%;
}

.sticky-cta-btn:active {
    transform: scale(0.98);
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-top {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.95;
}

.sticky-bot {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.sticky-icon {
    font-size: 2rem;
    animation: wiggle 2.5s infinite;
}

@keyframes wiggle {
    0%, 90% { transform: rotate(0deg); }
    92%, 96% { transform: rotate(-15deg); }
    94%, 98% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* ============================================
   URGENCY STRIP
   ============================================ */

.urgency-strip {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    color: var(--white);
    padding: 0.75rem 0;
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    flex-shrink: 0;
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   HEADER
   ============================================ */

.main-header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.brand-icon {
    font-size: 1.75rem;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy-primary);
    letter-spacing: -0.03em;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--green-trust);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    display: flex;
    flex-direction: column;
}

.live-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-count {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy-primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-cta-icon {
    font-size: 1.5rem;
}

.header-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.header-cta-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.85;
}

.header-cta-number {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0, 26, 51, 0.90) 0%,
        rgba(15, 40, 65, 0.70) 40%,
        rgba(40, 50, 60, 0.35) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    padding: 5rem 0;
}

.hero-content {
    max-width: 750px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(40, 167, 69, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(40, 167, 69, 0.4);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pill-icon {
    background: var(--green-trust);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.hero-headline {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.9),
                 0 4px 16px rgba(0,0,0,0.6);
    letter-spacing: -0.03em;
}

.headline-highlight {
    display: block;
    color: var(--gold-primary);
    font-size: 2.75rem;
    margin-top: 0.5rem;
}

.hero-subheadline {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    max-width: 700px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.hero-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.benefit-check {
    color: var(--green-trust);
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.hero-cta-wrapper {
    margin: 3rem 0;
}

.mega-cta {
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.mega-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 1.75rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(255, 180, 0, 0.4);
    transition: var(--transition-base);
}

.mega-cta:hover .mega-cta-content {
    background: var(--gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 180, 0, 0.5);
}

.mega-cta-icon {
    font-size: 2.75rem;
    animation: ring 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-20deg); }
    10%, 20% { transform: rotate(20deg); }
}

.mega-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mega-cta-label {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.mega-cta-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.mega-cta-arrow {
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   AIRLINE TRUST BAR
   ============================================ */

.airline-trust-bar {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.airline-content {
    text-align: center;
}

.airline-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.airline-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.airline-logos img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
    max-width: 110px;
}

.airline-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   WHY CALL SECTION
   ============================================ */

.why-call-proof {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.proof-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-headline {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.proof-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: var(--transition-base);
}

.proof-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.proof-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.proof-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.proof-card p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 6rem 0;
    background: var(--white);
}

.centered {
    text-align: center;
}

.steps-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: var(--gray-50);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gray-200);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.step-arrow {
    font-size: 2rem;
    color: var(--gray-400);
    font-weight: 700;
}

.process-cta-box {
    text-align: center;
    margin-top: 3rem;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy-primary);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.process-cta-btn:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.rating-badge-mega {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rating-stars-huge {
    font-size: 3.5rem;
    color: var(--gold-primary);
}

.rating-info {
    display: flex;
    flex-direction: column;
}

.rating-score-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy-primary);
}

.rating-count {
    font-size: 1rem;
    color: var(--gray-600);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--gold-primary);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.featured-testimonial {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
}

.quote-symbol {
    font-size: 5rem;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.featured-testimonial .testimonial-quote {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.95);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.featured-testimonial .testimonial-author span {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-covered {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.service-icon {
    font-size: 2.25rem;
    flex-shrink: 0;
}

.service-item strong {
    font-size: 1rem;
    color: var(--navy-primary);
    font-weight: 700;
}

/* ============================================
   URGENCY CTA
   ============================================ */

.urgency-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
}

.urgency-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.urgency-cta-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.urgency-cta-content {
    flex: 1;
}

.urgency-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.urgency-cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.urgency-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(255, 180, 0, 0.4);
    transition: var(--transition-base);
    white-space: nowrap;
}

.urgency-cta-button:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 180, 0, 0.5);
}

/* ============================================
   POPULAR ROUTES
   ============================================ */

.popular-routes-section {
    padding: 5rem 0;
    background: var(--navy-primary);
    color: var(--white);
}

.popular-routes-section .section-headline {
    color: var(--white);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.route-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-base);
}

.route-box:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.routes-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.routes-cta-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.routes-cta-btn {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.routes-cta-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TRUST BADGES
   ============================================ */

.trust-badges-bar {
    padding: 4rem 0;
    background: var(--gray-50);
}

.badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-badge-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.trust-badge-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-badge-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.trust-badge-item span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand-section {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-logo-icon {
    font-size: 2rem;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.footer-phone-section {
    text-align: right;
}

.footer-phone-mega {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.footer-phone-icon {
    font-size: 2.5rem;
}

.footer-phone-number {
    font-size: 2.5rem;
    font-weight: 900;
}

.footer-phone-mega:hover {
    color: var(--gold-hover);
}

.footer-availability {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold-primary);
}

.footer-sep {
    color: rgba(255,255,255,0.3);
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   MOBILE RESPONSIVE - CRITICAL FIXES
   ============================================ */

@media (max-width: 1024px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .airline-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Base adjustments */
    html {
        font-size: 15px;
    }
    
    body {
        padding-bottom: 90px;
    }
    
    /* Show mobile sticky bar */
    .mobile-sticky-bar {
        display: block;
    }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Urgency Strip */
    .urgency-text {
        font-size: 0.8rem;
    }
    
    /* Header - FIXED */
    .header-inner {
        gap: 0.5rem;
    }
    
    .brand-icon {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tag {
        display: none;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .live-indicator {
        display: none;
    }
    
    .header-cta {
        padding: 0.625rem 1rem;
        gap: 0.5rem;
    }
    
    .header-cta-icon {
        font-size: 1.25rem;
    }
    
    .header-cta-label {
        display: none;
    }
    
    .header-cta-number {
        font-size: 0.9rem;
    }
    
    /* Hero - FIXED */
    .hero-section {
        min-height: 75vh;
        padding: 0;
    }
    
    .hero-gradient {
        background: linear-gradient(
            120deg,
            rgba(0, 26, 51, 0.90) 0%,
            rgba(15, 40, 65, 0.70) 40%,
            rgba(40, 50, 60, 0.35) 100%
        );
    }
    
    .hero-container {
        padding: 3rem 0;
        min-height: 75vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .trust-pill {
        font-size: 0.6rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .pill-icon {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .hero-headline {
        font-size: 1.35rem;
        line-height: 1.1;
        margin-bottom: 0.4rem;
    }
    
    .headline-highlight {
        font-size: 1.2rem;
        margin-top: 0.2rem;
    }
    
    .hero-subheadline {
        font-size: 0.75rem;
        line-height: 1.35;
        margin-bottom: 0.6rem;
        max-width: 100%;
    }
    
    .hero-benefits-list {
        gap: 0.35rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-benefit-item {
        font-size: 0.7rem;
        gap: 0.35rem;
    }
    
    .benefit-check {
        font-size: 0.9rem;
    }
    
    .hero-cta-wrapper {
        margin: 0.8rem 0 0 0;
    }
    
    .mega-cta {
        max-width: 100%;
        width: 100%;
    }
    
    .mega-cta-content {
        padding: 0.8rem 1rem;
        gap: 0.55rem;
    }
    
    .mega-cta-icon {
        font-size: 1.4rem;
    }
    
    .mega-cta-text {
        gap: 0.05rem;
    }
    
    .mega-cta-label {
        font-size: 0.6rem;
        letter-spacing: 0.04em;
    }
    
    .mega-cta-number {
        font-size: 1.1rem;
        line-height: 1;
    }
    
    .mega-cta-arrow {
        display: none;
    }
    
    /* Airline Logos */
    .airline-trust-bar {
        padding: 2rem 0;
    }
    
    .airline-logos {
        gap: 1.5rem;
    }
    
    .airline-logos img {
        max-width: 80px;
    }
    
    /* Sections - FIXED */
    .why-call-proof,
    .how-it-works,
    .testimonials-section,
    .services-covered,
    .urgency-cta-section,
    .popular-routes-section {
        padding: 3rem 0;
    }
    
    .section-headline {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .proof-header {
        margin-bottom: 2rem;
    }
    
    /* Steps - FIXED */
    .steps-row {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .step-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .process-cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Testimonials - FIXED */
    .rating-badge-mega {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .rating-stars-huge {
        font-size: 2.5rem;
    }
    
    .rating-score-big {
        font-size: 2rem;
    }
    
    .rating-count {
        font-size: 0.9rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-testimonial {
        grid-column: span 1;
    }
    
    .testimonial-box {
        padding: 1.75rem;
    }
    
    .quote-symbol {
        font-size: 3.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .featured-testimonial .testimonial-quote {
        font-size: 1.15rem;
    }
    
    /* Services - FIXED */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    .service-icon {
        font-size: 1.75rem;
    }
    
    /* Urgency CTA - FIXED */
    .urgency-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .urgency-cta-icon {
        font-size: 3.5rem;
    }
    
    .urgency-cta-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .urgency-cta-content p {
        font-size: 1rem;
    }
    
    .urgency-cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1.15rem;
        white-space: normal;
        text-align: center;
    }
    
    /* Routes - FIXED */
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .route-box {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .routes-cta-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .routes-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Trust Badges - FIXED */
    .trust-badges-bar {
        padding: 3rem 0;
    }
    
    .badges-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badge-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-badge-icon {
        font-size: 2.5rem;
    }
    
    .trust-badge-item strong {
        font-size: 1rem;
    }
    
    .trust-badge-item span {
        font-size: 0.85rem;
    }
    
    /* Footer - FIXED */
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-phone-section {
        text-align: center;
    }
    
    .footer-phone-mega {
        display: inline-block;
        margin-bottom: 0.75rem;
    }
    
    .footer-phone-icon {
        display: inline;
        font-size: 2rem;
        margin-right: 0.5rem;
    }
    
    .footer-phone-number {
        display: inline;
        font-size: 1.75rem;
    }
    
    .footer-nav {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-disclaimer {
        padding: 1.5rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    html {
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-container {
        min-height: 70vh;
    }
    
    .hero-headline {
        font-size: 1.25rem;
    }
    
    .headline-highlight {
        font-size: 1.1rem;
    }
    
    .hero-subheadline {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .hero-benefit-item {
        font-size: 0.65rem;
    }
    
    .benefit-check {
        font-size: 0.8rem;
    }
    
    .section-headline {
        font-size: 1.5rem;
    }
    
    .mega-cta-content {
        padding: 0.7rem 0.9rem;
    }
    
    .mega-cta-icon {
        font-size: 1.3rem;
    }
    
    .mega-cta-number {
        font-size: 1rem;
    }
}

/* Mobile-friendly hero layout */
@media only screen and (max-width: 767px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; /* keep left-aligned text, or use center for centering */
        padding: 20px; /* uniform spacing on all sides */
        box-sizing: border-box; /* ensures padding doesn’t overflow */
    }

    .hero-headline {
        font-size: 28px; /* smaller for mobile */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .headline-highlight {
        display: block;
        margin-top: 5px;
    }

    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-benefits-list {
        margin-bottom: 20px;
    }

    .hero-cta-wrapper {
        width: 100%;
        display: flex;
        justify-content: flex-start; /* or center if you want the button centered */
        padding-left: 0; /* already handled by container padding */
    }

    .mega-cta {
        width: auto;
        padding: 12px 20px;
        font-size: 16px;
    }
}
