/* =====================================================
   COAST TO COAST JOURNEYS - Premium Travel Website
   Professional & Modern Design System
   ===================================================== */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --primary: #056cb9;
    --primary-light: #5da8e0;
    --primary-dark: #034b85;
    --primary-gradient: linear-gradient(135deg, #056cb9 0%, #034b85 100%);
    --primary-shadow: #a3cbe8;

    /* Theme Specific Mappings */
    --theme-primary: #056cb9;
    --theme-primary-light: #5da8e0;
    --theme-primary-light2: #e8f0fe;
    --theme-primary-light3: #034b85;
    --theme-primary-dark: #034b85;
    --theme-primary-shadow: #a3cbe8;

    /* Accent Colors */
    --accent: #fd7e14;
    --accent-light: #ffc107;
    --accent-dark: #e8590c;

    /* Status Colors */
    --success: #198754;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #0dcaf0;

    /* Neutrals */
    --white: #ffffff;
    --light: #f8f9fa;
    --light2: #f2f2f2;
    --light3: #e9ecef;
    --light4: #ececec;
    --light5: #e4e4e4;
    --dark: #343a40;
    --dark2: #020b18;
    --secondary: #6c757d;
    --secondary2: #979797;
    --bg-theme-secondary: #b3d4e3;

    /* Aliases for legacy system compatibility */
    --gray-50: var(--light);
    --gray-100: var(--light2);
    --gray-200: var(--light3);
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: var(--secondary);
    --gray-700: #495057;
    --gray-800: var(--dark);
    --gray-900: var(--dark2);

    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #979797;
    --text-light: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 30px rgba(14, 100, 166, 0.3);
    --shadow-accent: 0 10px 30px rgba(16, 185, 129, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
    --container-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

/* === Container === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

/* === Header === */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(14, 100, 166, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(14, 100, 166, 0.1);
}

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--primary);
}

.phone-link i {
    color: var(--primary);
    font-size: 1rem;
}

/* === User Profile Dropdown (Logged In State) === */
.user-profile-dropdown {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.user-profile-btn:hover {
    background: var(--gray-100);
    border-color: var(--primary);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-profile-btn i {
    font-size: 0.7rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.user-profile-btn:hover i {
    color: var(--primary);
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.user-dropdown-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.user-dropdown-name {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-email {
    font-size: 0.8rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-divider {
    height: 1px;
    background: var(--gray-100);
    margin: 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.user-dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.user-dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.user-dropdown-item:hover i {
    color: var(--primary);
}

.user-dropdown-item.logout-btn {
    color: var(--danger);
}

.user-dropdown-item.logout-btn:hover {
    background: rgba(220, 53, 69, 0.08);
    color: var(--danger);
}

.user-dropdown-item.logout-btn i {
    color: var(--danger);
}

/* Responsive - hide user name on smaller screens */
@media (max-width: 992px) {
    .user-name {
        display: none;
    }

    .user-profile-btn {
        padding: 6px;
    }

    .user-profile-btn i {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

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

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

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

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

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

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

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* === Hero Section === */
.hero {
    position: relative;
    background: var(--primary-gradient);
    padding: 140px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    margin-bottom: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* === Search Box === */
.search-box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-2xl);
    max-width: 1000px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.search-tab:hover {
    color: var(--primary);
    background: rgba(14, 100, 166, 0.05);
}

.search-tab.active {
    color: var(--primary);
    background: rgba(14, 100, 166, 0.1);
}

.search-tab i {
    font-size: 1.1rem;
}

/* Trip Type */
.trip-type {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.trip-type label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.trip-type label:hover {
    color: var(--text-primary);
}

.trip-type input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Search Form */
.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-field-improved {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

.form-field input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.hidden {
    display: none !important;
}

/* === Features Strip === */
.features-strip {
    background: var(--primary-gradient);
    padding: 24px 0;
    color: var(--white);
    margin-top: -40px;
    /* Overlap with hero or adjust spacing */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .features-strip {
        margin-top: 0;
        padding: 32px 0;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

/* === Trust Section === */
.trust-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.trust-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-medium);
}

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

.trust-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === Offers Section === */
.offers-section {
    padding: 80px 0;
}

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

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
}

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

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-image img {
    transform: scale(1.08);
}

.offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--danger);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.offer-content {
    padding: 24px;
}

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

.offer-route .city {
    font-weight: 600;
    color: var(--text-primary);
}

.offer-route i {
    color: var(--primary);
    font-size: 0.9rem;
}

.offer-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.offer-price .from {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.offer-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* === Contact Section === */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.contact-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #034b85 0%, #056cb9 100%);
    color: var(--gray-300);
    padding: 64px 0 24px;
}


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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 48px;
    max-height: 48px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-400);
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-light);
    font-style: italic;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-col a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* === Page Hero (for inner pages) === */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.flight-hero {
    background: linear-gradient(135deg, rgba(14, 100, 166, 0.92), rgba(26, 54, 93, 0.95)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hotel-hero {
    background: linear-gradient(135deg, rgba(14, 100, 166, 0.92), rgba(26, 54, 93, 0.95)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* === Booking Search Container === */
.booking-search-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-2xl);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

/* Trip Type Selector */
.trip-type-selector {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.trip-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.trip-type-option:hover {
    color: var(--text-primary);
}

.trip-type-option.active {
    color: var(--primary);
}

.trip-type-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Search Form Grid */
.search-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 160px 160px 1fr;
    gap: 16px;
    align-items: end;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

/* Guests Dropdown specific styles - override absolute positioning */
.guests-dropdown.input-wrapper {
    display: flex;
    align-items: center;
    padding: 14px 44px 14px 14px;
    cursor: pointer;
}

.guests-dropdown.input-wrapper>i:first-child {
    position: static;
    transform: none;
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--primary);
}

.guests-dropdown.input-wrapper>.fa-chevron-down {
    position: absolute;
    right: 14px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.guests-dropdown .guests-display {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

/* Swap Button */
.swap-btn {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.swap-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) rotate(180deg);
}

/* === Popular Routes === */
.routes-section {
    padding: 48px 0;
}

.routes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.routes-header h3 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.routes-header i {
    color: var(--warning);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.route-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
}

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

.route-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius);
}

.route-content {
    padding: 20px;
}

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

.route-path .city {
    font-weight: 600;
    color: var(--text-primary);
}

.route-path i {
    color: var(--primary);
}

.route-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === Airlines Section === */
.airlines-section {
    padding: 40px 32px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-xl);
    margin: 48px 0;
}

.airlines-section h3 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.25rem;
}

.airlines-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.airline-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow);
}

.airline-tag i {
    color: var(--primary);
}

/* === Help Box === */
.help-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    color: var(--white);
    margin: 48px 0;
}

.help-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.help-content h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.help-content p {
    opacity: 0.9;
    margin-bottom: 16px;
}

.help-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === Hotels Page Specific === */
.hotel-results-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hotel-card {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-medium);
    border: 1px solid var(--gray-100);
}

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

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

.hotel-info {
    padding: 24px;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hotel-location i {
    color: var(--primary);
}

.hotel-stars {
    color: var(--warning);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.amenity i {
    color: var(--primary);
}

.hotel-price-section {
    padding: 24px;
    border-left: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 180px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-per-night {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== Enhanced Results Header Top Bar (Flight & Hotel) ===== */
.results-top-bar {
    background: #1b253b;
    /* Dark navy background */
    color: white;
    padding: 16px 0;
}

.search-bar-container-new {
    background: #252f46;
    /* Slightly lighter navy for inner container */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
}

.search-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flight-block {
    min-width: 140px;
}

.search-block i {
    font-size: 1.2rem;
    color: #60a5fa;
    /* Light blue accent */
}

.search-text {
    display: flex;
    flex-direction: column;
}

.search-text .label {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.search-text .value-main {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.search-text .value-sub {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.search-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.btn-edit-search {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-edit-search i {
    font-size: 1rem;
    color: white;
}

.btn-edit-search:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Responsive top bar */
@media (max-width: 992px) {
    .search-bar-container-new {
        flex-wrap: wrap;
        border-radius: 12px;
        padding: 16px;
    }

    .search-block {
        flex: 1 1 40%;
    }

    .search-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .search-block {
        flex: 1 1 100%;
        margin-bottom: 8px;
    }

    .btn-edit-search {
        width: 100%;
        border-radius: 8px;
    }
}

/* ===== End Enhanced Results Header Top Bar ===== */

/* === Filters Sidebar === */
.filters-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filters-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    cursor: pointer;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* === Results Layout === */
.results-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 48px 0;
}

.results-header {
    margin-bottom: 24px;
}

.results-header h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === Utilities === */
.text-center {
    text-align: center;
}

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

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

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 48px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* === Responsive === */
@media (max-width: 1024px) {

    .search-form,
    .search-form-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .results-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .hotel-card {
        grid-template-columns: 1fr;
    }

    .hotel-image img {
        height: 200px;
    }

    .hotel-price-section {
        border-left: none;
        border-top: 1px solid var(--gray-200);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}


/* === Footer Partners === */
.footer-partners {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 2rem;
    color: var(--gray-400);
    opacity: 0.8;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--white);
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo span {
    font-size: 1.2rem;
    font-weight: 700;
}

/* =====================================================
   SIDEBAR MENU STYLES
   ===================================================== */

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

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

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--primary-gradient);
    color: var(--white);
}

.sidebar-header img {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.sidebar-header span {
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
}

.sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(14, 100, 166, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
}

.sidebar-link.active {
    background: rgba(14, 100, 166, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

.sidebar-link i {
    width: 22px;
    font-size: 1.1rem;
}

.sidebar-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 12px 24px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.sidebar-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.sidebar-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: transparent;
    border: none;
    margin-right: 8px;
}

.hamburger-menu span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger-menu:hover span {
    background: var(--primary-dark);
}

/* =====================================================
   FEEDBACK MODAL STYLES
   ===================================================== */

.feedback-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

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

.feedback-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-2xl);
}

.feedback-modal.active .feedback-content {
    transform: translateY(0);
}

.feedback-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.feedback-close:hover {
    background: var(--gray-200);
}

.feedback-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-content h3 i {
    color: var(--primary);
}

.feedback-content>p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feedback-field {
    margin-bottom: 20px;
}

.feedback-field label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feedback-field input,
.feedback-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.feedback-field input:focus,
.feedback-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating i {
    font-size: 1.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.star-rating i:hover,
.star-rating i.hover {
    color: var(--warning);
    transform: scale(1.1);
}

.star-rating i.active {
    color: var(--warning);
}

.btn-feedback-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-feedback-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* =====================================================
   IMPROVED SEARCH FORM STYLES
   ===================================================== */

.search-form-improved {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-field-improved {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-field-improved label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field-improved label i {
    color: var(--primary);
    font-size: 0.85rem;
}

.form-field-improved input[type="text"] {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-field-improved input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

.form-field-improved input[type="text"]::placeholder {
    color: var(--text-muted);
}

/* Swap Cities Button */
.swap-cities-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 4px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.swap-cities-btn:hover {
    background: var(--primary-dark);
}

.swap-cities-btn.rotate {
    animation: rotateSwap 0.3s ease;
}

@keyframes rotateSwap {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

/* Date Field Styles */
.date-field {
    position: relative;
}

.date-field input[type="date"] {
    width: 100%;
    height: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0 !important;
}

.date-field input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

.date-field input[type="date"]::-webkit-datetime-edit {
    color: transparent !important;
    display: none !important;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.date-display {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 1;
    background: transparent;
}

.date-field {
    position: relative;
    height: 54px;
    /* Default height for form-field-improved input */
}

.date-display {
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--text-primary);
    pointer-events: none;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.date-field input[type="date"]:focus+.date-display {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 100, 166, 0.1);
}

.date-field input[type="date"]:not(:valid)+.date-display {
    color: var(--text-muted);
}

/* Autocomplete Styles */
.autocomplete-menu,
.flight-autocomplete-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--gray-200);
    margin-top: 4px;
    display: none;
}

.autocomplete-menu.active,
.flight-autocomplete-menu.active {
    display: block;
}

/* Side-by-Side Round Trip Layout */
.round-trip-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .round-trip-results {
        grid-template-columns: 1fr;
    }
}

.journey-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journey-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    padding: 0 4px;
}

.journey-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.journey-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.flight-card.selected {
    border: 2px solid var(--primary) !important;
    background-color: #f0f7ff !important;
    box-shadow: 0 4px 15px rgba(14, 100, 166, 0.15) !important;
}

.selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 10;
}

#bookingBar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 32px;
    display: none;
    z-index: 1001;
    border-top: 1px solid #e2e8f0;
}

#bookingBar.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-info-combined {
    display: flex;
    align-items: center;
    gap: 24px;
}

.booking-leg-preview {
    display: flex;
    flex-direction: column;
}

.preview-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.booking-total {
    margin-left: auto;
    margin-right: 32px;
    text-align: right;
}

.total-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.total-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.autocomplete-item,
.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.autocomplete-item:hover,
.suggestion-item:hover {
    background: var(--gray-50);
}

/* Travelers Field */
.travelers-field {
    position: relative;
}

.travelers-dropdown {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.travelers-dropdown:hover {
    border-color: var(--gray-300);
}

.travelers-display {
    font-size: 0.95rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.travelers-dropdown i {
    color: var(--text-muted);
    transition: var(--transition);
}

.travelers-popup {
    position: absolute;
    top: calc(100% + 10px);
    bottom: auto;
    left: 0;
    right: 0;
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    padding: 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    max-height: 80vh;
    /* Prevent overflowing viewport if too tall */
    overflow-y: auto;
    /* Allow scrolling if popup is too tall */
    display: flex;
    flex-direction: column;
}

.rooms-count-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.rooms-count-selector span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.travelers-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.traveler-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.traveler-row:last-of-type {
    border-bottom: none;
}

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

.traveler-type {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

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

.traveler-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--white);
    color: var(--text-primary);
    cursor: pointer;
    min-width: 75px;
    outline: none;
    transition: var(--transition);
}

.guest-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 108, 185, 0.1);
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.traveler-counter span {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.class-selector {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    margin-top: 8px;
}

.class-selector label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.class-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.class-btn {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.class-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}

.class-btn.active {
    background: var(--accent);
    /* Orange/Red */
    color: var(--white);
    border-color: var(--accent);
}

.travelers-done {
    width: 100%;
    padding: 12px;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.travelers-done:hover {
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

/* Trip Type Radio Buttons */
.trip-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.trip-option:hover {
    color: var(--text-primary);
}

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

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.trip-option input[type="radio"]:checked+.radio-custom {
    border-color: var(--accent);
}

.trip-option input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.trip-option input[type="radio"]:checked~span:not(.radio-custom) {
    color: var(--accent);
}

/* Main Search Button */
.btn-search-main {
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    align-self: center;
    transition: var(--transition);
}

.btn-search-main:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

@media (min-width: 769px) {
    #returnDateWrapper {
        display: flex;
    }
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, var(--theme-primary-light2) 100%);
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section .section-header h2 {
    font-size: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: inline-block;
    margin-right: 8px;
}

.testimonials-section .section-header h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    display: inline-block;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
    margin-bottom: 24px;
    position: relative;
    padding: 10px 0;
    /* Add padding for shadow visibility */
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 50%;
    /* Default: 2 cards view */
    flex-shrink: 0;
    margin: 0 16px;
    /* Spacing between cards */
    width: calc(50% - 32px);
    /* Adjust width based on margin */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 108, 185, 0.1);
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--warning);
    font-size: 1.1rem;
}

.rating-value {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-footer {
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* =====================================================
   MULTI-ROOM DROPDOWN STYLES
   ===================================================== */
.rooms-container {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
    padding-right: 4px;
    /* Space for scrollbar */
}

/* Custom scrollbar for rooms container */
.rooms-container::-webkit-scrollbar {
    width: 6px;
}

.rooms-container::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.rooms-container::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.room-block {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--gray-300);
}

.room-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.room-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
    /* Prevent shrinking */
}

.btn-add-room,
.btn-remove-room {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-add-room {
    background: rgba(14, 100, 166, 0.1);
    color: var(--primary);
    border: 1px solid transparent;
}

.btn-add-room:hover {
    background: rgba(14, 100, 166, 0.2);
    border-color: rgba(14, 100, 166, 0.3);
}

.btn-remove-room {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border: 1px solid transparent;
}

.btn-remove-room:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
}

.child-ages-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.child-age-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.child-age-group label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.child-age-group select {
    padding: 6px 8px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background: var(--white);
    width: 100%;
    cursor: pointer;
}

.child-age-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Room Guest Limit Warning */
.room-limit-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: #b45309;
    font-weight: 500;
}

.room-limit-warning i {
    color: #f59e0b;
}

/* Disabled counter button state */
.counter-btn:disabled,
.counter-btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    border-color: var(--gray-300);
    color: var(--gray-400);
}

.counter-btn:disabled:hover,
.counter-btn[disabled]:hover {
    background: var(--white);
    color: var(--gray-400);
}

/* =====================================================
   CUSTOM DATE DISPLAY STYLES
   ===================================================== */
.input-wrapper {
    position: relative;
    /* Ensure valid positioning context */
}

/* Make input visible for border/click, but transparent text/bg */
.date-input-hidden {
    position: relative;
    width: 100%;
    color: transparent !important;
    background: transparent !important;
    z-index: 2;
    cursor: pointer;
}

/* Hide native icon */
.date-input-hidden::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    opacity: 0;
}

/* Custom display content positioned behind the input */
.date-display-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 36px;
    padding-right: 4px;
    /* Ensure some right padding */
    /* Align with where text starts after icon */
    pointer-events: none;
    z-index: 1;
}

.date-main {
    font-size: 0.85rem;
    /* Reduced to fit better */
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    text-transform: lowercase;
    /* as requested "use small cases" */
}

.date-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Ensure wrapper matches height */
.search-form-grid .input-wrapper {
    display: flex;
    align-items: center;
    overflow: visible;
}

/* Icon positioning fix for this specific wrapper type */
.input-wrapper i.fa-calendar-alt {
    z-index: 3;
    /* Above input to be visible */
    pointer-events: none;
}

/* Disabled state */
input:disabled+.date-display-content {
    opacity: 0.5;
    background: var(--light);
    /* visual feedback for disabled */
    border-radius: var(--radius);
}

/* =====================================================
   MOBILE RESPONSIVENESS (CONSOLIDATED)
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

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

    .header-actions,
    .mobile-menu-toggle {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .search-box {
        padding: 15px;
        margin: 0 10px;
        max-width: calc(100vw - 20px);
        width: 100%;
        overflow: hidden;
    }

    .search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-row {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
        /* Fix the right-pushed alignment */
    }

    .form-field-improved {
        width: 100% !important;
        flex: none !important;
    }

    .swap-cities-btn {
        align-self: center;
        margin: 5px 0 !important;
        transform: rotate(90deg);
        z-index: 5;
    }

    .btn-search-main {
        width: 100%;
        padding: 14px;
        margin-top: 10px;
    }

    .nav-menu {
        display: none;
    }

    .swap-btn {
        position: static;
        transform: none;
        margin: 8px auto;
    }

    .trip-type,
    .trip-type-selector {
        flex-wrap: wrap;
    }

    .offers-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 8px;
    }

    .help-box {
        flex-direction: column;
        text-align: center;
    }

    .help-actions {
        justify-content: center;
    }

    .travelers-popup {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }

    .sidebar {
        width: 280px;
    }

    .testimonial-card {
        min-width: 100%;
        width: 100%;
        margin: 0;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonials-section .section-header h2,
    .testimonials-section .section-header h3 {
        display: block;
        margin-right: 0;
    }

    .search-tabs {
        gap: 2px;
        margin-bottom: 20px;
    }

    .search-tab {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(5, 108, 185, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 108, 185, 0.5);
}

/* =====================================================
   BREADCRUMB NAVIGATION
   ===================================================== */
.breadcrumb-nav {
    padding: 14px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-top: var(--header-height);
}

.breadcrumb-nav .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: #94a3b8;
    font-size: 0.7rem;
}

.breadcrumb-nav .current {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
}

/* =====================================================
   PAGE LOAD FADE-IN ANIMATION
   ===================================================== */
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

body {
    animation: pageFadeIn 0.4s ease-out;
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    color: #e2e8f0;
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept-btn {
    padding: 10px 28px;
    background: linear-gradient(135deg, #056cb9, #034b85);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 108, 185, 0.4);
}

.cookie-decline-btn {
    padding: 10px 20px;
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-decline-btn:hover {
    border-color: #94a3b8;
    color: #e2e8f0;
}

@media (max-width: 600px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   BOOKING COUNTDOWN TIMER
   ===================================================== */
.booking-timer {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: timerPulse 2s ease-in-out infinite;
}

.booking-timer i {
    color: #d97706;
    font-size: 1.3rem;
}

.booking-timer-text {
    font-size: 0.9rem;
    color: #92400e;
    font-weight: 500;
}

.booking-timer-text strong {
    color: #b45309;
    font-weight: 700;
    font-size: 1rem;
}

@keyframes timerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
    }
}

/* =====================================================
   RECENT SEARCHES CHIPS
   ===================================================== */
.recent-searches {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.recent-searches-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recent-searches-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recent-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #0369a1;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.recent-search-chip:hover {
    background: #e0f2fe;
    border-color: #7dd3fc;
    transform: translateY(-1px);
}

.recent-search-chip i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* =====================================================
   ACCESSIBILITY - Focus Visible Styles
   ===================================================== */
*:focus-visible {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Skip to content link (screen reader & keyboard nav) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* =====================================================
   SELECTION HIGHLIGHT
   ===================================================== */
::selection {
    background: rgba(5, 108, 185, 0.2);
    color: #034b85;
}

::-moz-selection {
    background: rgba(5, 108, 185, 0.2);
    color: #034b85;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {

    .header,
    .sidebar,
    .sidebar-overlay,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .cookie-consent,
    .booking-timer,
    .breadcrumb-nav {
        display: none !important;
    }

    body {
        padding-top: 0 !important;
        color: #000 !important;
        background: white !important;
    }

    .checkout-container,
    .bookings-container,
    .profile-container {
        max-width: 100% !important;
        box-shadow: none !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8rem;
        color: #666;
    }

    .btn,
    button {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}