/* 
   ========================================================================
   Mysore to Bangalore Cab - Theme Styles
   Author: AI UI/UX Designer
   Description: Premium, lightweight, high-converting Google Ads landing page
   ========================================================================
*/

/* --- CSS Variables & Design Options --- */
:root {
    --navy-primary: #183354;     /* Logo Deep Navy */
    --navy-secondary: #0F233B;
    --navy-light: #244670;
    --orange-primary: #F89B00;   /* Logo Orange/Yellow */
    --orange-hover: #DF8A00;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5C;
    --bg-light: #F8F9FA;
    --text-main: #334155;
    --font-family-base: 'Plus Jakarta Sans', sans-serif;
}

/* --- Global Styles --- */
body, html {
    font-family: var(--font-family-base);
    color: var(--text-main);
    background-color: #FFFFFF;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    width: 100%;
}

/* --- Typography & Colors --- */
.text-navy { color: var(--navy-primary) !important; }
.text-primary-navy { color: var(--navy-primary) !important; }
.text-orange { color: var(--orange-primary) !important; }
.text-whatsapp { color: var(--whatsapp-green) !important; }
.bg-navy { background-color: var(--navy-primary) !important; }
.bg-orange { background-color: var(--orange-primary) !important; }
.bg-whatsapp { background-color: var(--whatsapp-green) !important; }
.bg-light-section { background-color: var(--bg-light) !important; }
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }

/* Font Weights */
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-extrabold { font-weight: 800 !important; }
.tracking-wide { letter-spacing: 0.1em; }

/* --- Buttons --- */
.btn {
    font-family: var(--font-family-base);
    transition: all 0.3s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-navy {
    background-color: var(--navy-primary);
    border-color: var(--navy-primary);
    color: white;
}
.btn-navy:hover {
    background-color: var(--navy-secondary);
    border-color: var(--navy-secondary);
    color: white;
}

.btn-outline-navy {
    color: var(--navy-primary);
    border: 2px solid var(--navy-primary);
    background-color: transparent;
}
.btn-outline-navy:hover {
    background-color: var(--navy-primary);
    color: white;
}

.btn-orange {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
}
.btn-orange:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
    color: white;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: white;
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    color: white;
}

/* --- Block Styling --- */
.header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.py-3 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

/* --- Hero Section & Glassmorphism --- */
/* --- Dynamic Premium Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1.25rem 0;
    background: transparent;
}

/* Base Nav Links (Transparent state) */
.header nav a {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important; /* Force white initially */
}

/* White Logo for Hero */
.header .header-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.header .btn-outline-navy {
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
}

/* --- Scrolled State --- */
.header.header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    padding: 0.75rem 0;
}

.header.header-scrolled nav a {
    color: var(--navy-primary) !important; /* Revert to Navy on scroll */
}

.header.header-scrolled nav a:hover, 
.header.header-scrolled nav a.active {
    color: var(--orange-primary) !important;
}

.header.header-scrolled .header-logo {
    filter: none; /* Restore original brand colors */
    opacity: 1;
}

.header.header-scrolled .btn-outline-navy {
    border-color: var(--navy-primary);
    color: var(--navy-primary) !important;
}

/* --- Hero Section & Glassmorphism --- */
.hero {
    position: relative;
    background: var(--navy-primary);
    min-height: 700px; /* Increased for better aspect ratio */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px; /* Extra top padding for fixed header */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, 
        rgba(24, 51, 84, 0.95) 0%, 
        rgba(24, 51, 84, 0.8) 40%, 
        rgba(24, 51, 84, 0.4) 100%), 
        url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: kenBurns 25s infinite alternate ease-in-out;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

@media (max-width: 991px) {
    .header { padding: 0.75rem 0; }
    .hero-bg-overlay {
        background-image: linear-gradient(to bottom, 
            rgba(24, 51, 84, 0.9) 0%, 
            rgba(24, 51, 84, 0.7) 100%), 
            url('../img/hero-bg.webp');
    }
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.rating-badge {
    background: rgba(15, 35, 59, 0.85); /* Deep Navy for maximum contrast */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700; /* Increased weight for legibility */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.price-hook-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.price-hook-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(248, 155, 0, 0.3);
}

/* Pricing Cards */

/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08) !important;
}
/* Header Logo Styling */
.header-logo {
    height: 75px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

nav a {
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover, nav a.active {
    color: var(--orange-primary) !important;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--orange-primary);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .header-logo {
        height: 45px;
        max-width: 220px;
    }
}

/* Footer Logo Styling */
.footer-logo {
    height: 80px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 55px;
        max-width: 250px;
    }
}


/* Premium Features & Stepper */
.feature-tile {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.feature-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(24, 51, 84, 0.08);
    border-color: var(--orange-primary) !important;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(248, 155, 0, 0.1);
    color: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-tile:hover .feature-icon-wrapper {
    background: var(--orange-primary);
    color: white;
    transform: scale(1.1);
}

.premium-gradient-card {
    background: linear-gradient(145deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
}

.booking-stepper {
    position: relative;
    padding-left: 20px;
}

.booking-stepper::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.step-item {
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--orange-primary);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px rgba(248, 155, 0, 0.1);
}

.step-content {
    margin-left: 1.5rem;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
/* Premium Pricing Cards */
.pricing-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(24, 51, 84, 0.12) !important;
}

.car-img-container {
    background: #fdfdfd;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.car-img-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(24, 51, 84, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.vehicle-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.pricing-card:hover .vehicle-img {
    transform: scale(1.05) translateX(5px);
}

.badge-corporate {
    background: var(--navy-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.badge-premium {
    background: linear-gradient(90deg, #F89B00 0%, #FFB800 100%);
    color: white;
}

.spec-item {
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spec-item:last-child {
    border-bottom: none;
}

.gst-tag {
    font-size: 0.75rem;
    color: var(--navy-primary);
    background: rgba(24, 51, 84, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}
/* Reviews Slider */
.review-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.review-card:hover {
    border-color: var(--orange-primary) !important;
    transform: translateY(-5px);
}

.badge-verified {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--whatsapp-green);
    background: rgba(37, 211, 102, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Splide Customization */
.splide__pagination {
    bottom: -2.5rem;
}

.splide__pagination__page {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
    background: var(--orange-primary);
    opacity: 1;
    transform: scale(1.3);
}

.splide__arrow {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.splide:hover .splide__arrow {
    opacity: 1;
}

.splide__arrow:hover {
    background: var(--navy-primary);
    color: white;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: rgba(10, 37, 64, 0.03);
    color: var(--navy-primary);
    box-shadow: none;
}
.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.accordion-item {
    border-color: rgba(0,0,0,0.05) !important;
}

@media (max-width: 768px) {
    .pricing .position-absolute {
        display: none !important; /* Hide intrusive icon on mobile */
    }
    
    .pricing-details .fs-4 {
        font-size: 1.25rem !important;
    }
}

/* Fixed Corporate Footer for Mobile */
.corporate-footer-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .corporate-footer-container {
        border-radius: 50px;
        padding: 0.75rem 2.5rem;
        gap: 3rem;
    }
}

/* Mobile Sticky Bottom CTA */
.sticky-bottom-cta {
    padding-bottom: env(safe-area-inset-bottom);
}
body {
    /* To push content above the sticky footer on mobile */
    margin-bottom: 70px;
}
@media (min-width: 768px) {
    body {
        margin-bottom: 0;
    }
}
/* --- High-Conversion Final CTA --- */
.final-cta {
    background: linear-gradient(135deg, #0a1828 0%, #162a40 100%) !important;
    position: relative;
    padding: 100px 0 !important;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(248, 155, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
}

.cta-trust-badge i {
    color: var(--orange-primary);
}

.btn-whatsapp-premium {
    background: var(--whatsapp-green);
    color: white !important;
    border: none;
    padding: 18px 40px;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-glow 2.5s infinite;
}

.btn-whatsapp-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    background: #20bd5c;
}

.btn-call-outline {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-call-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: white !important;
    transform: translateY(-5px);
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 767px) {
    .final-cta { padding: 80px 0 !important; }
    .btn-whatsapp-premium, .btn-call-outline {
        width: 100%;
        padding: 15px 20px;
    }
}
/* --- Premium Corporate Footer --- */
.footer {
    background: #0a1828 !important;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--orange-primary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    background: var(--orange-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(248, 155, 0, 0.4);
}

.social-btn.whatsapp:hover { background: #25D366; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
.social-btn.facebook:hover { background: #1877F2; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4); }

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.contact-info-icon {
    width: 35px;
    height: 35px;
    background: rgba(248, 155, 0, 0.1);
    color: var(--orange-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Airport & Travel Graphics --- */
/* --- Aggressive Premium Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

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

@media (max-width: 767px) {
    .reveal-on-scroll {
        transform: translateY(40px) scale(0.95);
        transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
}

/* Staggered Delay Utilities */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }

/* Hero Entrance Keyframes */
@keyframes hero-slide-up {
    0% { opacity: 0; transform: translateY(100px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-slide-in-left {
    0% { opacity: 0; transform: translateX(-150px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes hero-scale-in {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

.animate-hero-up { animation: hero-slide-up 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important; }
.animate-hero-left { animation: hero-slide-in-left 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important; }
.animate-hero-scale { animation: hero-scale-in 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards !important; }

/* Pulse Glow for Primary WhatsApp CTAs */
.btn-whatsapp-premium {
    background: linear-gradient(135deg, #25D366 0%, #1ea952 100%) !important;
    border: none !important;
    color: white !important;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ae66f 0%, #25D366 100%) !important;
}

.btn-whatsapp-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: var(--whatsapp-green);
    z-index: -1;
    animation: btn-aura-pulse 2s infinite;
    opacity: 0.5;
}

@keyframes btn-aura-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.15, 1.4); opacity: 0; }
}

/* Dynamic Car Route Animation */
.car-along-path {
    offset-path: path("M 30 20 L 370 20");
    animation: drive-the-route 8s linear infinite;
    font-size: 1.2rem;
    color: var(--orange-primary);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes drive-the-route {
    0% { offset-distance: 0%; transform: scaleX(1); }
    48% { offset-distance: 100%; transform: scaleX(1); }
    50% { offset-distance: 100%; transform: scaleX(-1); }
    98% { offset-distance: 0%; transform: scaleX(-1); }
    100% { offset-distance: 0%; transform: scaleX(1); }
}

/* Floating Airplane Glide */
.glide-airplane {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
    animation: airplane-glide 20s linear infinite;
    top: 20%;
    left: -100px;
}

@media (max-width: 767px) {
    .glide-airplane {
        font-size: 1.5rem;
        top: 10%;
    }
}

@keyframes airplane-glide {
    0% { transform: translateX(0) translateY(0) rotate(10deg); }
    50% { transform: translateX(50vw) translateY(-20px) rotate(5deg); }
    100% { transform: translateX(100vw) translateY(-40px) rotate(10deg); }
}

/* Airport Board Header Styling */
.airport-board-header {
    background: #000 !important;
    color: var(--orange-primary) !important;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 2px;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--orange-primary);
    position: relative;
    overflow: hidden;
}

.airport-board-header::before {
    content: "DEPARTURE: MYSORE | ARRIVAL: BANGALORE";
    font-size: 0.6rem;
    opacity: 0.5;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

/* Route Path SVG Container */
.route-visual-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px 0;
    position: relative;
    z-index: 2;
}

.dashed-route {
    stroke-dasharray: 8 8;
    animation: dash-move 10s linear infinite;
    stroke: var(--navy-light);
    opacity: 0.3;
}

@keyframes dash-move {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

.route-point {
    fill: var(--orange-primary);
    r: 4;
}

/* --- CRO Optimization: Conversions & Leads --- */
.pulse-green {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-btn {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floating-pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    background-color: var(--whatsapp-hover);
}

.floating-tooltip {
    background: #1e1e1e;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    pointer-events: none;
    animation: tooltip-bounce 4s infinite;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 25px;
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #1e1e1e transparent transparent;
}

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

@keyframes tooltip-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy-primary);
    opacity: 0.8;
}

.trust-item i {
    color: #28a745;
}

@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 95px; /* Stay above mobile bottom sticky CTA */
        right: 20px;
    }
    .floating-tooltip { display: none; }
}
