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

:root {
    --dark-navy: #003366;
    --blue: #40E0D0;
    --blue-dark: #35C4B8;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray: #64748b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* ── Typography Scale ── */
    /* Display H1 */
    --fs-h1: 42px;
    --lh-h1: 52px;
    --fw-h1: 700;
    --ls-h1: -0.01em;

    /* Heading H2 */
    --fs-h2: 32px;
    --lh-h2: 42px;
    --fw-h2: 600;
    --ls-h2: -0.01em;

    /* Heading H3 */
    --fs-h3: 24px;
    --lh-h3: 32px;
    --fw-h3: 600;
    --ls-h3: 0em;

    /* Heading H4 */
    --fs-h4: 18px;
    --lh-h4: 26px;
    --fw-h4: 500;
    --ls-h4: 0em;

    /* Body Large */
    --fs-body-lg: 18px;
    --lh-body-lg: 28px;
    --fw-body-lg: 400;

    /* Body Default */
    --fs-body: 16px;
    --lh-body: 24px;
    --fw-body: 400;

    /* Body Small */
    --fs-body-sm: 14px;
    --lh-body-sm: 20px;
    --fw-body-sm: 400;

    /* Caption / Meta */
    --fs-caption: 12px;
    --lh-caption: 16px;
    --fw-caption: 500;
    --ls-caption: 0.01em;

    /* Button Text */
    --fs-btn: 16px;
    --lh-btn: 1;
    --fw-btn: 600;
    --ls-btn: 0.02em;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-navy);
    background-color: var(--white);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: var(--fw-body);
    overflow-x: hidden;
}

/* ── Global Typography Classes ── */
h1, .h1 {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: var(--fw-h1);
    letter-spacing: var(--ls-h1);
}

h2, .h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: var(--fw-h2);
    letter-spacing: var(--ls-h2);
}

h3, .h3 {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    letter-spacing: var(--ls-h3);
}

h4, .h4 {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: var(--fw-h4);
    letter-spacing: var(--ls-h4);
}

.body-large {
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body-lg);
    font-weight: var(--fw-body-lg);
}

.body-small {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: var(--fw-body-sm);
}

.caption, .meta {
    font-size: var(--fs-caption);
    line-height: var(--lh-caption);
    font-weight: var(--fw-caption);
    letter-spacing: var(--ls-caption);
}

/* ── Buttons ── */
button, .btn, .btn-primary, .submit-btn, .pay-book-btn,
.flight-search-btn, .add-flight-btn, .search-btn {
    font-size: var(--fs-btn);
    line-height: var(--lh-btn);
    font-weight: var(--fw-btn);
    letter-spacing: var(--ls-btn);
    font-family: 'Poppins', sans-serif;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-container,
html[dir="rtl"] .search-container,
html[dir="rtl"] .section-header,
html[dir="rtl"] .hotel-footer,
html[dir="rtl"] .calendar-header {
    direction: rtl;
}

html[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .input-icon {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .input-wrapper input {
    padding: 0 52px 0 20px;
}

html[dir="rtl"] .rating-badge {
    right: auto;
    left: 1rem;
}

html[dir="rtl"] .favorite-btn {
    left: auto;
    right: 1rem;
}

html[dir="rtl"] .hotel-header {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hotel-footer {
    flex-direction: row-reverse;
}

html[dir="rtl"] .calendar-nav-btn.prev-month {
    order: 2;
}

html[dir="rtl"] .calendar-nav-btn.next-month {
    order: 0;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #F0F2F5;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid #E2E5EA;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #14B8A6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #14B8A6;
    background: transparent;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 0.72rem;
    font-weight: 800;
    color: #003366;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.logo-tagline-nav {
    font-size: 0.52rem;
    color: #7b8794;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-logo-img {
    height: 40px;
    width: auto;
    display: block;
    cursor: pointer;
}

a.logo {
    pointer-events: all;
    cursor: pointer;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 2.2rem);
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: #003366;
    font-size: var(--fs-caption);
    font-weight: var(--fw-btn);
    letter-spacing: var(--ls-btn);
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #003366;
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #003366;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: #E5E7EB;
}

.flag-icon {
    font-size: 1.4rem;
    line-height: 1;
    display: block;
}

.nav-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 1px;
}

.nav-user-name {
    font-size: 13px;
    font-weight: 700;
    color: #003366;
    white-space: nowrap;
}

.nav-user-id {
    font-size: 10px;
    color: #7b8794;
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-primary:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: static !important;
        transform: none !important;
    }
    .nav-menu.active {
        position: absolute !important;
        top: 100%;
        left: 0;
        right: 0;
        background: #F0F2F5;
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: flex;
        gap: 1.2rem;
        z-index: 999;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 25vh;
    min-height: 200px;
    background: linear-gradient(rgba(26, 35, 50, 0.5), rgba(26, 35, 50, 0.5)),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.destination-city-page .hero {
    height: 50vh;
    min-height: 400px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.35) 15%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 65%,
    rgba(26, 35, 50, 0.3) 80%,
    rgba(26, 35, 50, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: var(--fw-h1);
    letter-spacing: var(--ls-h1);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Search Section */
.search-section {
    max-width: 1400px;
    margin: -60px auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 100;
}

.search-container {
    background: var(--white);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1168px;
}

.search-field {
    flex: 1;
    min-width: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: var(--gray);
    pointer-events: none;
    z-index: 1;
}

.search-field input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 48px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-navy);
    background: var(--white);
    transition: all 0.3s ease;
}

.search-field input::-webkit-search-cancel-button,
.search-field input::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}

.search-field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-field input:focus {
    outline: none;
    border-color: #0D3B66;
    box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.1);
}

.date-input[type="date"] {
    color: var(--dark-navy);
}

.date-input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
    z-index: 2;
    border-radius: 50%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.search-btn {
    background: #0D3B66;
    color: var(--white);
    border: none;
    height: 48px;
    padding: 0 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #0a2d4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 59, 102, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: var(--fw-h2);
    letter-spacing: var(--ls-h2);
    color: var(--dark-navy);
}

.see-more {
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-more:hover {
    opacity: 0.8;
}

/* Recommended Section */
.recommended-section {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 32px;
}

.hotels-scroll {
    width: 100%;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hotels-scroll::-webkit-scrollbar {
    display: none;
}

.hotel-card {
    width: 260px;
    height: 190px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(22, 40, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1.36px solid #7A8CA3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #647C90;
    z-index: 10;
}

.favorite-btn svg {
    fill: #647C90;
    transition: fill 0.3s;
    pointer-events: none;
}

.favorite-btn:hover {
    background: rgba(22, 40, 59, 0.75);
    border-color: #40E0D0;
}

.favorite-btn.active {
    background: rgba(22, 40, 59, 0.5);
    border: 1.36px solid #40E0D0;
}

.favorite-btn.active svg {
    fill: #40E0D0;
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.5) 50%, transparent 100%);
    padding: 18px 16px;
    z-index: 5;
}

.hotel-content-left {
    flex: 1;
}

.hotel-name {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    color: var(--white);
    margin: 0 0 6px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hotel-location {
    font-size: var(--fs-caption);
    line-height: var(--lh-caption);
    font-weight: var(--fw-caption);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hotel-rating-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: rgba(22, 40, 59, 0.5);
    border: 1px solid #7A8CA3;
    border-radius: 63px;
    padding: 4px 8px;
    width: 57px;
    height: 32px;
    box-sizing: border-box;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
    align-self: flex-start;
}

.hotel-rating-badge svg {
    fill: #40E0D0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Activities Section */
.activities-section {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 32px;
    background: var(--gray-light);
}

.activities-scroll {
    width: 100%;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.activities-scroll::-webkit-scrollbar {
    display: none;
}

.activity-card {
    width: 250px;
    height: 310px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.activity-card .favorite-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(22, 40, 59, 0.5);
    border: 1.36px solid #7A8CA3 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    z-index: 10;
}

.activity-card .favorite-btn:hover {
    background: rgba(22, 40, 59, 0.75);
    border-color: #40E0D0 !important;
}

.activity-card .favorite-btn.active {
    background: rgba(22, 40, 59, 0.5);
    border-color: #40E0D0 !important;
}

.activity-card .favorite-btn.active svg {
    fill: #40E0D0;
}

.activity-card .favorite-btn svg {
    width: 22px;
    height: 22px;
    fill: #647C90;
}

.activity-card .activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.5) 50%, transparent 100%);
    padding: 20px 16px;
    color: var(--white);
    z-index: 5;
    border-radius: 0 0 20px 20px;
}

.activity-card .activity-overlay h3 {
    font-size: 18px !important;
    font-weight: 700;
    margin: 0 0 8px 0 !important;
    line-height: 1.3;
    color: var(--white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.activity-card .activity-overlay p {
    font-size: 14px !important;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Airport Transfer Hero Section */
.transfer-hero {
    position: relative;
    width: 1320px;
    max-width: 100%;
    height: 474px;
    margin: 2rem auto;
    padding: 0 144px;
    border-radius: 0;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.transfer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.65) 50%, rgba(0, 51, 102, 0.45) 100%);
    backdrop-filter: blur(1px);
}

.transfer-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 2rem;
}

.transfer-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.transfer-hero-title .highlight {
    color: var(--blue);
    text-shadow: 0 2px 10px rgba(64, 224, 208, 0.3);
}

.transfer-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.transfer-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.transfer-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.transfer-hero-arrow-left {
    left: 2rem;
}

.transfer-hero-arrow-right {
    right: 2rem;
}

.transfer-hero-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.transfer-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.transfer-pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.transfer-pagination-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 6px;
    border-color: var(--white);
}

/* Promotional Banner */
.promo-banner {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(26, 35, 50, 0.7), rgba(26, 35, 50, 0.7)),
    url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=600&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin: 4rem 0;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.5);
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-cta:hover {
    background: #002244;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 2rem;
}

.slider-arrow-right {
    right: 2rem;
}

/* Destinations Section */
.destinations-section {
    width: 100%;
    padding: 60px 24px;
    margin-bottom: 32px;
    background: #f5f7fa;
}

.destinations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.destinations-row-top {
    display: flex;
    gap: 24px;
}

.destinations-row-bottom {
    display: flex;
    gap: 24px;
}

.destinations-row-third {
    display: flex;
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.destination-card.top-left {
    width: 40%;
    height: 280px;
}

.destination-card.top-right {
    width: 60%;
    height: 280px;
}

.destination-card.bottom {
    width: calc(33.33% - 16px);
    height: 220px;
}

.destination-card.third-large {
    width: 60%;
    height: 280px;
}

.destination-card.third-small {
    width: 40%;
    height: 280px;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.5) 50%, transparent 100%);
    padding: 2rem;
    color: var(--white);
}

.destination-overlay h3 {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.destination-overlay p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        width: 100%;
        height: auto;
        min-height: 70px;
    }
    .hero {
        height: 23vh;
        min-height: 180px;
    }

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

    .destinations-row-top {
        flex-direction: column;
    }

    .destinations-row-bottom {
        flex-direction: column;
    }

    .destinations-row-third {
        flex-direction: column;
    }

    .destination-card.top-left,
    .destination-card.top-right {
        width: 100%;
        height: 280px;
    }

    .destination-card.bottom {
        width: 100%;
        height: 220px;
    }

    .destination-card.third-large,
    .destination-card.third-small {
        width: 100%;
        height: 280px;
    }

    .activity-card {
        min-width: 400px;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        height: auto;
        min-height: 60px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 20vh;
        min-height: 160px;
    }

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

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

    .transfer-hero {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-height: 474px;
        margin: 1.5rem 0;
        padding: 0 2rem;
        border-radius: 0;
    }

    .transfer-hero-title {
        font-size: 2.5rem;
    }

    .transfer-hero-subtitle {
        font-size: 1.2rem;
    }

    .transfer-hero-arrow {
        width: 44px;
        height: 44px;
    }

    .transfer-hero-arrow-left {
        left: 0.75rem;
    }

    .transfer-hero-arrow-right {
        right: 0.75rem;
    }

    .transfer-hero-pagination {
        bottom: 1.5rem;
    }

    .search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        height: 46px;
    }

    .search-field { width: 100%; }
    .input-wrapper { height: 46px; }
    .search-field input { height: 46px; }

    .section-header {
        padding: 2rem 1rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hotels-scroll,
    .activities-scroll {
        padding: 0 1rem;
    }

    .hotel-card {
        min-width: 280px;
    }

    .activity-card {
        min-width: 300px;
        height: 300px;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow-left {
        left: 1rem;
    }

    .slider-arrow-right {
        right: 1rem;
    }

    .destinations-section {
        padding: 40px 16px;
    }

    .destinations-grid {
        gap: 16px;
    }

    .destinations-row-top,
    .destinations-row-bottom,
    .destinations-row-third {
        gap: 16px;
    }

    .destination-card.top-left,
    .destination-card.top-right {
        height: 240px;
    }

    .destination-card.bottom {
        height: 200px;
    }

    .destination-card.third-large,
    .destination-card.third-small {
        height: 240px;
    }

    .destination-overlay {
        padding: 1.5rem;
    }

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

    .destination-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: 100%;
        height: auto;
        min-height: 60px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 18vh;
        min-height: 140px;
    }

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

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

    .search-section {
        margin: -40px auto 0;
        padding: 0 1rem;
    }

    .search-container {
        padding: 1.5rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .lang-btn {
        width: 35px;
        height: 35px;
    }

    .flag-icon {
        font-size: 1.2rem;
    }

    .profile-img {
        width: 32px;
        height: 32px;
    }
}

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    z-index: 2000;
}

.calendar-modal.active {
    display: block;
}

.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.calendar-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    padding: 20px 28px;
    width: 380px;
    z-index: 1;
    animation: slideDown 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.calendar-month-title {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: 700;
    color: #1F2A37;
    margin: 0;
    text-align: center;
    flex: 1;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    color: #1F2A37;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    width: 36px;
    height: 36px;
}

.calendar-nav-btn:hover {
    background: #F3F4F6;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    font-size: 0.78rem;
    color: #1F2A37;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    width: 100%;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    background: transparent;
    border: none;
    min-height: 44px;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #F3F4F6;
}

.calendar-day.disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

/* ── Start date: navy circle ── */
.calendar-day.selected-start {
    background: #0D3B66;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.calendar-day.selected-start .day-number { color: #fff; font-weight: 700; }
.calendar-day.selected-start .day-price  { color: rgba(255,255,255,0.8); }

/* ── End date: teal circle ── */
.calendar-day.selected-end {
    background: #14B8A6;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.calendar-day.selected-end .day-number { color: #fff; font-weight: 700; }
.calendar-day.selected-end .day-price  { color: rgba(255,255,255,0.8); }

/* ── Days in range: grey band ── */
.calendar-day.in-range {
    background: #E5E7EB;
    border-radius: 0;
}
.calendar-day.in-range .day-number { color: #1F2A37; }
.calendar-day.in-range .day-price  { color: #6B7280; }

/* round left edge of range (day after start) */
.calendar-day.selected-start + .calendar-day.in-range,
.calendar-day.in-range:first-of-type {
    border-radius: 0;
}

/* ── Hover preview ── */
.calendar-day.hover-range {
    background: #F3F4F6;
    border-radius: 0;
}

/* legacy .selected */
.calendar-day.selected {
    background: #0D3B66;
    border-radius: 50%;
}
.calendar-day.selected .day-number { color: #fff; }
.calendar-day.selected .day-price  { color: rgba(255,255,255,0.85); }

.day-number {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    color: #1F2A37;
}

.day-price {
    font-size: 0.68rem;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 2px;
}

.calendar-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.calendar-close-btn {
    background: #0D3B66;
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.calendar-close-btn:hover {
    background: #0a2d4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 59, 102, 0.3);
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-modal {
        position: fixed !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(15, 61, 104, 0.45) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000000 !important;
    }

    .calendar-modal.active {
        display: flex !important;
    }

    .calendar-overlay {
        display: block !important;
        background: transparent !important;
    }

    .calendar-container {
        position: relative !important;
        width: 92% !important;
        max-width: 360px !important;
        margin: auto !important;
        transform: none !important;
        box-shadow: 0 20px 50px rgba(15, 61, 104, 0.3) !important;
        animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) ease !important;
        border-radius: 20px !important;
        padding: 1.5rem !important;
    }

    .calendar-month-title {
        font-size: 1.25rem;
    }

    .calendar-day {
        padding: 0.35rem;
    }

    .day-number {
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
    }

    .day-price {
        font-size: 0.6rem;
    }

    .calendar-days {
        gap: 0.35rem;
    }
}

@media (max-width: 480px) {
    .calendar-container {
        padding: 1rem;
    }

    .calendar-header {
        margin-bottom: 1rem;
    }

    .calendar-weekdays {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }

    .calendar-days {
        gap: 0.25rem;
    }

    .calendar-day {
        padding: 0.25rem;
        min-height: 45px;
    }

    .weekday {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }

    .day-number {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }

    .day-price {
        font-size: 0.55rem;
    }
}

/* Footer */
.main-footer {
    background: #0D2B45;
    width: 100%;
    padding: 44px 40px;
    color: #fff;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.logo-column {
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.logo-initials {
    width: 56px;
    height: 56px;
    border: 2.5px solid #14B8A6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #14B8A6;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.logo-column .logo-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.14em;
}

.logo-tagline {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links li { margin: 0; }

.footer-links a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links a:hover { color: #14B8A6; }

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: #14B8A6;
    color: #14B8A6;
    background: rgba(20,184,166,0.1);
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-footer { padding: 36px 20px; }
    .footer-container { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 480px) {
    .main-footer { padding: 28px 16px; }
    .footer-container { gap: 1.4rem; }
    .social-icon { width: 32px; height: 32px; }
}

/* ============================================
   Hotels Page Styles
   ============================================ */

body {
    background-color: var(--gray-light);
}

/* User Profile in Navbar */
.user-profile,
a.user-profile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    cursor: pointer;
}

.nav-actions {
    position: relative;
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 250px;
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 34, 68, 0.12);
    padding: 0;
    z-index: 1200;
    display: none;
    overflow: hidden;
}

.user-dropdown-menu.active {
    display: block;
}

.user-dropdown-link {
    display: block;
    padding: 15px 22px;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #003366;
    line-height: 1.25;
    transition: background 0.2s ease, color 0.2s ease;
    background: #FFFFFF;
}

.user-dropdown-link:hover {
    background: #003366;
    color: #FFFFFF;
}

.user-dropdown-link.logout {
    color: #E53935;
}

.user-dropdown-link.logout:hover {
    background: #D62828;
    color: #FFFFFF;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dark-navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

/* Main Container */
.hotels-main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar Filters */
.hotels-sidebar {
    background: transparent;
    padding: 18px;
    border-right: 1px solid #E6EAF0;
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 270px;
    flex-shrink: 0;
}

.filters-title {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: var(--fw-h4);
    color: var(--dark-navy);
    margin-bottom: 12px;
    padding: 0;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.filter-section {
    margin-bottom: 16px;
}

.filter-label {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    font-weight: var(--fw-h4);
    color: #1F2A37;
    margin-bottom: 8px;
    display: block;
    font-family: 'Poppins', sans-serif;
}

/* Price Range */
.price-range-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-slider-wrapper {
    position: relative;
    margin: 8px 0 8px 0;
    height: 20px;
    --min-percent: 0%;
    --max-percent: 100%;
}

.price-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 20px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    cursor: pointer;
}

.price-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 10px;
    background: #D0D5DD;
    z-index: 1;
}

.price-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: var(--min-percent);
    width: calc(var(--max-percent) - var(--min-percent));
    height: 5px;
    border-radius: 10px;
    background: #2EC4B6;
    z-index: 2;
    pointer-events: none;
}

.price-slider-min {
    z-index: 4;
    pointer-events: none;
}

.price-slider-max {
    z-index: 4;
    pointer-events: none;
}

/* re-enable thumb only */
.price-slider::-webkit-slider-thumb {
    pointer-events: all;
}
.price-slider::-moz-range-thumb {
    pointer-events: all;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2EC4B6;
    cursor: pointer;
    border: none;
    box-shadow: none;
    pointer-events: all;
    position: relative;
    z-index: 4;
}

.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2EC4B6;
    cursor: pointer;
    border: none;
    box-shadow: none;
    pointer-events: all;
    position: relative;
    z-index: 4;
}

.price-inputs {
    display: flex;
    gap: 8px;
    position: relative;
    margin-top: 14px;
}

.price-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    display: block;
    font-size: var(--fs-caption);
    font-weight: var(--fw-caption);
    color: var(--dark-navy);
    margin-bottom: 4px;
}


.price-input {
    width: 100%;
    height: 40px;
    padding: 0 0 0 12px;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    background: #F2F4F7;
    color: #1F2A37;
    transition: all 0.2s ease;
    box-shadow: none;
}

.price-input::placeholder {
    color: #98A2B3;
}

.price-input:focus {
    outline: none;
    background: #E6EAF0;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 4px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.star-btn {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #657B90;
}

.star-btn:hover {
    color: #3FE0D0;
}

.star-btn.active {
    color: #3FE0D0;
}

.star-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    stroke: none;
}

/* Hotels List Container */
.hotels-list-container {
    background: transparent;
}

.section-title {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    font-weight: var(--fw-h2);
    letter-spacing: var(--ls-h2);
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.hotels-cards-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hotel Card Item */
.hotel-card-item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    padding-bottom: 20px;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid #EEF1F5;
    transition: all 0.2s ease;
}

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

.hotel-card-item:hover {
    transform: translateY(-2px);
}

.hotel-card-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
}

.hotel-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.hotel-rating-badge-small {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--white);
    z-index: 6;
}

.hotel-rating-badge-small svg {
    width: 13px;
    height: 13px;
    color: #3FE0D0;
    fill: #3FE0D0;
}

.hotel-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-card-name {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    color: var(--dark-navy);
    margin-bottom: 0.4rem;
}

.hotel-card-location {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: var(--fw-body-sm);
    color: var(--gray);
    margin-bottom: 6px;
}

.hotel-card-description {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: var(--fw-body-sm);
    color: var(--gray);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.hotel-price {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    color: var(--dark-navy);
}

.hotel-price .price-label {
    font-size: var(--fs-caption);
    line-height: var(--lh-caption);
    font-weight: var(--fw-caption);
    color: var(--gray);
    width: auto;
    height: auto;
    position: static;
    margin-left: 4px;
}

.view-details-btn {
    background: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: var(--fw-btn);
    font-size: var(--fs-body-sm);
    font-family: 'Poppins', sans-serif;
    letter-spacing: var(--ls-btn);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-details-btn:hover {
    background: #002244;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

/* Responsive Design - Hotels Page */
@media (max-width: 1024px) {
    .hotels-main-container {
        grid-template-columns: 270px 1fr;
        gap: 1.5rem;
    }

    .hotel-card-image-wrapper {
        width: 150px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .hotels-main-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .hotels-sidebar {
        position: static;
        order: 2;
        width: 100%;
        border-right: none;
        border-top: 1px solid #E6EAF0;
        padding: 1rem;
        margin-top: 1rem;
    }

    .hotels-list-container {
        order: 1;
    }

    .hotels-cards-list {
        gap: 1.5rem;
    }

    .hotel-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .view-details-btn {
        width: 100%;
    }

    .filters-title {
        font-size: 18px;
        margin-bottom: 1rem;
    }

    .filter-section {
        margin-bottom: 1.5rem;
    }

    .price-inputs {
        margin-top: 12px;
    }

    .price-label {
        position: static;
        width: auto;
        height: auto;
        margin-bottom: 4px;
    }

    .rating-stars {
        gap: 8px;
    }

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

@media (max-width: 480px) {
    .hotels-main-container {
        padding: 0 0.75rem;
        margin: 0.75rem auto;
    }

    .hotels-sidebar {
        padding: 1rem;
    }

    .hotels-cards-list {
        gap: 1rem;
    }

    .hotel-card-item {
        padding-bottom: 16px;
    }

    .hotel-card-image-wrapper {
        width: 120px;
        height: 90px;
    }

    .hotel-card-name {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.35rem;
    }

    .filters-title {
        font-size: 16px;
    }

    .filter-label {
        font-size: 12px;
    }

    .price-input {
        font-size: 11px;
        padding: 6px 10px;
    }

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

/* RTL Support - Hotels Page */
html[dir="rtl"] .hotels-main-container {
    direction: rtl;
}

html[dir="rtl"] .hotel-card-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hotel-rating-badge-small {
    right: auto;
    left: 10px;
}

html[dir="rtl"] .rating-stars {
    flex-direction: row;
    justify-content: flex-start;
}

html[dir="rtl"] .hotel-card-footer {
    flex-direction: row-reverse;
}

html[dir="rtl"] .hotels-sidebar {
    border-right: none;
    border-left: 1px solid #E6EAF0;
}

/* ── Activities Page ── */
.activities-hero {
    background: linear-gradient(rgba(10, 20, 40, 0.45), rgba(10, 20, 40, 0.45)),
    url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1920&h=600&fit=crop') center/cover no-repeat;
    height: 22vh;
    min-height: 160px;
}

/* Activity cards: bigger image */
.act-img {
    width: 180px !important;
    height: 130px !important;
    border-radius: 10px !important;
    flex-shrink: 0;
}

.act-card {
    align-items: flex-start;
    padding: 0;
    border-bottom: 1px solid #EEF1F5;
    padding-bottom: 20px;
    margin-bottom: 4px;
}

.act-card:last-child {
    border-bottom: none;
}

.act-card .hotel-card-name {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    font-family: 'Poppins', sans-serif;
    color: var(--dark-navy);
    margin-bottom: 4px;
}

.act-card .hotel-card-location {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    margin-bottom: 6px;
}

.act-card .hotel-card-description {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.act-card .hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.act-card .price-amount {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    font-family: 'Poppins', sans-serif;
    color: var(--dark-navy);
}

.act-card .price-label {
    font-size: var(--fs-caption);
    line-height: var(--lh-caption);
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    margin-left: 4px;
}

.act-card .view-details-btn {
    background: var(--dark-navy);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: var(--fs-body-sm);
    font-weight: var(--fw-btn);
    font-family: 'Poppins', sans-serif;
    letter-spacing: var(--ls-btn);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, box-shadow 0.2s;
}

.act-card .view-details-btn:hover {
    background: #002244;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
}

/* Destinations Page - Search Section without Hero */
.destinations-page .search-section {
    margin: 3rem auto 0;
    padding: 0 2rem;
}

/* Destination City Page */
.city-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.city-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.city-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    z-index: 10;
    color: var(--white);
}

.city-hero-title {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    font-weight: var(--fw-h1);
    letter-spacing: var(--ls-h1);
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.city-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* City Description Section */
.city-description-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.city-description-container {
    max-width: 1200px;
    margin: 0 auto;
}

.city-description-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.city-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A5568;
    max-width: 900px;
}

/* City Sections (Hotels & Activities) */
.city-hotels-section,
.city-activities-section {
    padding: 3rem 2rem;
    background: #F5F7FA;
}

.city-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.city-hotels-section .section-header,
.city-activities-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.city-hotels-section .section-header h2,
.city-activities-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
}

/* Responsive Design for City Page */
@media (max-width: 1024px) {
    .destination-city-page .hero {
        height: 45vh;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .destination-city-page .hero {
        height: 40vh;
        min-height: 300px;
    }

    .city-description-section {
        padding: 3rem 1.5rem;
    }

    .city-description-title {
        font-size: 1.75rem;
    }

    .city-description-text {
        font-size: 1rem;
    }

    .city-hotels-section,
    .city-activities-section {
        padding: 2rem 1.5rem;
    }

    .city-hotels-section .section-header h2,
    .city-activities-section .section-header h2 {
        font-size: 1.75rem;
    }
}

/* ============================================================
   GLOBAL MOBILE IMPROVEMENTS (applies to ALL pages)
   ============================================================ */

/* ── Navbar: hide user text on small screens ── */
@media (max-width: 768px) {
    .nav-user-info { display: none; }
    .nav-actions { gap: 0.5rem; }
    .profile-img { width: 36px; height: 36px; }
}

/* ── Ensure hamburger icon appears ── */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex !important; }
    .nav-menu { display: none; }
    .nav-menu.active {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.2rem 1.5rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        z-index: 999;
        gap: 1rem;
        border-top: 1px solid #E5E7EB;
    }
    .nav-menu a { font-size: 15px; padding: 6px 0; }
}

/* ── Index page: search & promo ── */
@media (max-width: 600px) {
    .transfer-hero {
        padding: 0 1rem;
        border-radius: 0;
    }
    .transfer-hero-title { font-size: 1.8rem; }
    .search-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .search-field { width: 100%; }
    .search-btn { width: 100%; justify-content: center; }
    .promo-content h2 { font-size: 1.5rem; }
    .hotel-card { width: 280px !important; height: 230px !important; }
    .activity-card { width: 200px !important; height: 260px !important; }
}

/* ── Hotels & Activities scroll on mobile ── */
@media (max-width: 768px) {
    .hotels-scroll, .activities-scroll {
        padding: 0 1rem 0.5rem;
        gap: 14px;
    }
}

/* ── Section titles on mobile ── */
@media (max-width: 600px) {
    .section-header h2 { font-size: 1.4rem; }
    .section-header { padding: 1.5rem 1rem 0.75rem; }
}

/* ── Generic page card containers ── */
@media (max-width: 768px) {
    .page-container { padding: 20px 16px 40px; }
    .booking-card { padding: 22px 16px 28px !important; gap: 18px !important; }
}

/* ── Rides find & payment ── */
@media (max-width: 600px) {
    .rides-find-container,
    .rides-payment-container { padding: 16px !important; }
}

/* ── Confirm / Booking checkout ── */
@media (max-width: 600px) {
    .confirm-card, .checkout-card { padding: 18px 14px !important; border-radius: 16px !important; }
}

/* ── Login / Register / Forgot password ── */
@media (max-width: 500px) {
    .auth-card, .login-card, .register-card,
    .forgot-card, .reset-card {
        margin: 1rem;
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }
    .auth-title { font-size: 1.4rem !important; }
}
