/* ==========================================================================
   AirHob - Premium Emerald Green Travel Booking Template
   Style Sheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Updated to Mockup Dark Pine Green Theme */
    --primary-color: #005F54;
    --primary-hover: #004D44;
    --dark-green: #003D36;
    --accent-blue: #0284C7;
    --accent-blue-hover: #0369A1;
    --cta-orange: #F59E0B;
    --cta-orange-hover: #D97706;
    --bg-light: #F8FAFC;
    --card-bg: #FFFFFF;
    --text-color: #1E293B;
    --text-muted: #64748B;
    --footer-bg: #0F172A;
    --border-color: #E2E8F0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 25px -5px rgba(0, 95, 84, 0.1), 0 10px 10px -5px rgba(2, 132, 199, 0.05);
}

/* Global Reset & Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

a:hover {
    color: var(--dark-green);
}

.bg-primary-theme {
    background-color: var(--primary-color) !important;
}

.text-primary-theme {
    color: var(--primary-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Sticky Header & Navbar */
.navbar-airhob {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding: 15px 0;
}

.navbar-airhob.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #FFFFFF;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    color: var(--accent-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(16, 185, 129, 0.08);
}

/* Buttons Styling */
.btn-primary-theme {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-primary-theme:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-outline-theme {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-outline-theme:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-cta-orange {
    background-color: var(--cta-orange);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-cta-orange:hover {
    background-color: var(--cta-orange-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.btn-accent {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-accent:hover {
    background-color: var(--accent-blue-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.65)), url('https://images.unsplash.com/photo-1540553016722-983e48a2cd10?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
    padding: 160px 0 100px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 35px;
    font-weight: 400;
}

.text-orange {
    color: #F59E0B !important;
}

/* Booking Engine Card - Solid White Mockup Style */
.booking-engine-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #1E293B;
    border: none;
}

.trip-type-btn-group {
    display: flex;
    gap: 10px;
}

.trip-type-btn-label {
    cursor: pointer;
    margin: 0;
}

.trip-type-btn-label input[type="radio"] {
    display: none;
}

.trip-type-btn-label span {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    background-color: #FFFFFF;
}

.trip-type-btn-label:has(input:checked) span {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.trip-type-btn-label:hover:not(:has(input:checked)) span {
    background-color: rgba(0, 95, 84, 0.05);
}

/* Support Badge */
.support-badge-link {
    text-decoration: none !important;
}

.support-badge {
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 6px 16px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.support-badge:hover {
    background-color: var(--primary-hover);
}

.support-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.support-badge-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.support-badge-title {
    font-size: 0.65rem;
    opacity: 0.85;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-badge-phone {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Custom form inputs inside Booking card */
.booking-input-wrapper {
    position: relative;
}

.booking-field-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.booking-field-label i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.booking-form-control {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
    color: #1E293B;
    width: 100%;
    height: 48px;
    transition: var(--transition-smooth);
}

.booking-form-control:focus {
    background-color: #FFFFFF;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 95, 84, 0.15);
}

/* Swap locations button */
.btn-swap-locations {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-swap-locations:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .btn-swap-locations {
        left: 50%;
        top: 52px;
        /* Centered vertically relative to the input fields on desktop */
        transform: translate(-50%, -50%);
    }

    .btn-swap-locations:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 767.98px) {
    .btn-swap-locations {
        left: 50%;
        top: 88px;
        /* Centered between stacked input fields on mobile */
        transform: translate(-50%, -50%) rotate(90deg);
        /* Rotate arrows vertical for stacked layout */
    }

    .btn-swap-locations:hover {
        transform: translate(-50%, -50%) scale(1.1) rotate(90deg);
    }
}

/* Look For Search Button */
.btn-look-for {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    height: 48px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-look-for:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 84, 0.2);
}

/* Autocomplete Suggestion Dropdowns */
.suggestion-dropdown {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    border: 1px solid var(--border-color);
    padding: 8px 0;
}

.suggestion-group-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 16px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4px;
}

.suggestion-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(241, 245, 249, 0.6);
}

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

.suggestion-item:hover,
.suggestion-item.focused {
    background-color: rgba(0, 95, 84, 0.08);
}

.suggestion-item .airport-info {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.suggestion-item .airport-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.suggestion-item .airport-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.suggestion-item .iata-badge {
    background-color: rgba(6, 182, 212, 0.12);
    color: var(--accent-blue-hover);
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: monospace;
}

.suggestion-item:hover .iata-badge,
.suggestion-item.focused .iata-badge {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.highlight {
    background-color: rgba(245, 158, 11, 0.25);
    color: #B45309;
    font-weight: 700;
    border-radius: 2px;
    padding: 0 2px;
}

/* Custom Passenger Selector & Cabin Class */
.passenger-selector-container {
    position: relative;
}

.passenger-dropdown-panel {
    position: absolute;
    bottom: 105%;
    /* Open upwards to stay inside the hero container boundaries */
    top: auto;
    right: 0;
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    /* Shadow directed upwards */
    padding: 20px;
    z-index: 1090;
    display: none;
    color: var(--text-color);
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.passenger-row:last-child {
    margin-bottom: 0;
}

.passenger-info {
    display: flex;
    flex-direction: column;
}

.passenger-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.passenger-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.btn-counter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    background-color: #FFFFFF;
    color: var(--text-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-counter:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(0, 95, 84, 0.05);
}

.btn-counter:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.passenger-count {
    width: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.passenger-validation-msg {
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 10px;
    font-weight: 500;
    display: none;
}

/* Standard UI Layout Settings */
.section-padding {
    padding: 80px 0;
}

.section-title-wrapper {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
}

/* Popular Destinations Section */
.destination-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    height: 380px;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.destination-img-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.destination-img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-img-wrapper img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
    padding: 30px 20px 20px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
    transition: var(--transition-smooth);
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-country {
    font-size: 0.85rem;
    opacity: 0.8;
}

.destination-price {
    background-color: var(--cta-orange);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

/* Why Choose Us Section */
.why-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.3);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Featured Deals Section */
.deal-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--cta-orange);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    text-transform: uppercase;
}

.deal-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.deal-content {
    padding: 24px;
}

.deal-route {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.deal-promo-code {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(6, 182, 212, 0.06);
    border: 1px dashed rgba(6, 182, 212, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.promo-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.promo-code {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-blue-hover);
    letter-spacing: 1px;
}

/* Testimonials Carousel (Swiper) */
.testimonials-section {
    background-color: #F1F5F9;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin: 15px 5px;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(16, 185, 129, 0.1);
}

.testimonial-rating {
    color: var(--cta-orange);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-username {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 1rem;
}

.testimonial-userrole {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* FAQs Section Accordion */
.accordion-airhob .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.accordion-airhob .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.accordion-airhob .accordion-button:not(.collapsed) {
    background-color: rgba(16, 185, 129, 0.06);
    color: var(--dark-green);
    box-shadow: none;
}

.accordion-airhob .accordion-button::after {
    color: var(--primary-color);
}

.accordion-airhob .accordion-body {
    padding: 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    background-color: #FFFFFF;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
    color: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

/* CTA Banner Section */
.cta-banner-card {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: #FFFFFF;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 100% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.cta-banner-text {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-5px);
}

/* Footer Section */
.footer-airhob {
    background-color: var(--footer-bg);
    color: #94A3B8;
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFFFFF !important;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent-blue);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94A3B8;
    transition: var(--transition-smooth);
    display: inline-block;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* About Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-color));
    padding: 100px 0;
    color: #FFFFFF;
    position: relative;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
}

.stat-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-info-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-card .form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* Search Results Page Specifics */
.search-summary-bar {
    background-color: #FFFFFF;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.search-summary-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.search-details-badge {
    background-color: rgba(6, 182, 212, 0.08);
    color: var(--accent-blue-hover);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.skeleton-container {
    max-width: 900px;
    margin: 40px auto;
}

/* Skeleton Loading Animation */
.skeleton-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.skeleton-pulse {
    display: inline-block;
    height: 100%;
    width: 100%;
    background: linear-gradient(-90deg, #F1F5F9 0%, #E2E8F0 50%, #F1F5F9 100%);
    background-size: 400% 400%;
    animation: pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-text.header {
    height: 24px;
    width: 50%;
    margin-bottom: 20px;
}

.skeleton-text.short {
    width: 30%;
}

.skeleton-text.medium {
    width: 70%;
}

.skeleton-button {
    height: 40px;
    width: 120px;
    border-radius: 8px;
}

.skeleton-circle {
    height: 45px;
    width: 45px;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Flight Not Found Section */
.not-found-container {
    max-width: 650px;
    margin: 60px auto;
    text-align: center;
    display: none;
    /* Controlled by JS loading sequence */
}

.not-found-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.not-found-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--cta-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 30px;
}

.not-found-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.not-found-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-phone {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-phone:hover {
    background-color: var(--primary-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.support-contact-card {
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.support-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.support-contact-item i {
    font-size: 1.4rem;
    color: var(--accent-blue-hover);
}

.support-contact-item div {
    display: flex;
    flex-direction: column;
}

.support-contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.support-contact-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Policy Pages Layout */
.policy-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.policy-card h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    padding-left: 12px;
}

.policy-card h3:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.policy-card ul {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-card li {
    margin-bottom: 8px;
}

/* Toast Messages */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.75rem;
    }

    .hero-trust-items {
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .booking-engine-card {
        padding: 24px;
    }
}

@media (max-width: 767.98px) {
    .hero-heading {
        font-size: 2.25rem;
    }

    .cta-banner-card {
        padding: 40px 24px;
        text-align: center;
    }

    .cta-banner-title {
        font-size: 1.8rem;
    }

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

    .support-contact-card {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}