/* ════════════════════════════════════════════════════════════════════════
   STYLES.CSS — REORGANIZED (element + its media queries together)
   ────────────────────────────────────────────────────────────────────────
   Every element/section below is grouped so that you see its base
   styling AND all of its responsive media queries in ONE place.

   CONTENTS
   01. Global Reset (*)
   02. CSS Variables (:root)
   03. Body
   04. Layout & Shared Containers
   05. Header
   06. Navigation & Dropdowns
   07. Menu Toggle
   08. Hero Section
   09. Tabs & Booking Form
   10. Flight Search Form
   11. Flight Offers Carousel
   12. Features Section
   13. Experience Section
   14. Awards Section
   15. Newsletter Section
   16. Footer
   17. Travelers Dropdown
   18. Guests Controls (counter / cabin / flight type)
   19. Route Fields (From / Swap / To)
   20. Multi-City Form
   21. Booking Modal
   22. Umrah Main Panel
   23. Umrah Days Rows
   24. Hotel Guests & Room Guests
   25. Room Guests Dropdown
   26. T&C Checkbox
   27. Cloudflare Turnstile
   28. Flatpickr Theme
   29. Premium Design System Overrides (loaded last)
   ════════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════════
   01. GLOBAL RESET (*)
   ════════════════════════════════════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ════════════════════════════════════════════════════════════════════════
   02. CSS VARIABLES (:root)
   ════════════════════════════════════════════════════════════════════════ */
:root {
    --primary: #0B5ED7;
    --primary-dark: #084BB0;
    --secondary: #6EC1E4;
    --accent: #FF7A00;
    --accent-dark: #E06A00;
    --white: #ffffff;
    --black: #1a1a1a;
    --heading: #0A2540;
    --text: #475569;
    --gray: #666666;
    --light-bg: #F8FAFC;
    --light-gray: #f5f5f5;
    --border: #E2E8F0;
    --input-bg: #ffffff;
    --label-color: #475569;
    --success: #22C55E;
    --error: #EF4444;
    --gold: #0B5ED7;
    --dark-gold: #084BB0;

    --container-width: 1200px;
    --page-gutter: 24px;
    --section-space: 88px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-sm: 0 8px 24px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 18px 45px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 28px 70px rgba(10, 37, 64, 0.16);

}

/* ════════════════════════════════════════════════════════════════════════
   03. BODY
   ════════════════════════════════════════════════════════════════════════ */
html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: 0;
    background-color: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ════════════════════════════════════════════════════════════════════════
   04. LAYOUT & SHARED CONTAINERS
   Shared page-width rule used across many sections below.
   ════════════════════════════════════════════════════════════════════════ */
.container,
.hero-container,
.offers-container,
.carousel-container,
.teaser-header,
.teaser-grid,
.experience-grid,
.awards-grid,
.footer-content {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-width));
    max-width: none;
    margin-inline: auto;
}

/* Full-bleed section wrappers keep their backgrounds edge-to-edge. */
.booking-form,
.newsletter {
    width: 100%;
    max-width: none;
}

/* ════════════════════════════════════════════════════════════════════════
   05. HEADER
   ════════════════════════════════════════════════════════════════════════ */
.header {
    background: var(--heading);
    color: var(--white);
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}
.logo-icon {
    height: 50px;
   
    display: block;
    object-fit: contain;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

.search-icon {
    text-decoration: none;
    font-size: 18px;
}

.language-select {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .header-main {
        position: relative;
        border-bottom: none;
    }

    .logo {
        order: 1;
        margin-left: 10px;
    }

    .logo-icon {
        width: 80px;
        height: 32px;
    }

    .header-right {
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   06. NAVIGATION & DROPDOWNS
   ════════════════════════════════════════════════════════════════════════ */
.nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .nav-list {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--primary);
}

.has-dropdown > a::after {
    content: ' ▼';
    font-size: 10px;
}

.dropdown {
    display: none;
    position: absolute;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    color: var(--black);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}

.dropdown li a:hover {
    background: var(--light-gray);
}

/* ── Responsive (max-width: 992px) — mobile slide-down nav ── */
@media (max-width: 992px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        margin-left: 0;
        height: auto;
        max-height: none;
        overflow: visible;
        background: var(--white);
        padding: 8px 0;
        clip-path: inset(0 0 100% 0);
        transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: none;
        display: block;
        justify-content: unset;
        flex: unset;
        box-sizing: border-box;
        pointer-events: none;
    }

    .nav.active {
        clip-path: inset(0 0 0% 0);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        pointer-events: auto;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 0;
        margin: 0;
    }

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

    .nav-item > a {
        color: var(--black);
        padding: 14px 24px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        transition: background 0.2s;
    }

    .nav-item > a:hover,
    .nav-item > a:active {
        background: var(--light-bg);
    }

    .nav-item:last-child > a {
        border-bottom: none;
    }

    /* Dropdown arrow indicator */
    .has-dropdown > a {
        position: relative;
        padding-right: 40px;
    }

    .has-dropdown > a::after {
        content: '';
        position: absolute;
        right: 24px;
        top: 50%;
        width: 7px;
        height: 7px;
        border-right: 2px solid var(--text);
        border-bottom: 2px solid var(--text);
        transform: translateY(-65%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .has-dropdown.active > a::after {
        transform: translateY(-35%) rotate(-135deg);
    }

    .nav-item.has-dropdown.active .dropdown {
        display: block;
    }

    .nav-item .dropdown {
        display: none;
        position: static;
        width: 100%;
        min-width: 0;
        padding: 0;
        margin: 0;
        background: var(--light-bg);
        box-shadow: none;
    }

    .nav-item .dropdown li a {
        padding: 12px 24px 12px 40px;
        color: var(--text);
        font-size: 14px;
        display: block;
        border-bottom: 1px solid var(--border);
        transition: background 0.2s;
    }

    .nav-item .dropdown li:last-child a {
        border-bottom: none;
    }

    .nav-item .dropdown li a:hover {
        background: var(--border);
        color: var(--black);
    }
}

/* ════════════════════════════════════════════════════════════════════════
   07. MENU TOGGLE
   Hamburger icon for the mobile menu.
   ════════════════════════════════════════════════════════════════════════ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin-bottom: 5px;
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(0);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

.menu-close {
    display: none;
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    z-index: 10;
}

.menu-overlay {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        order: 2;
    }

    .menu-close {
        display: none;
    }
}
.logo img {
    width: 220px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    display: block;
}
/* ════════════════════════════════════════════════════════════════════════
   08. HERO SECTION
   ════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 520px;
    margin-top: 93px;
    z-index: 5;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    min-height: 520px;
    --swiper-pagination-top: 400px;
    --swiper-pagination-bottom: auto;
    overflow: visible !important;
}

.hero-slide {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: left;
    max-width: 600px;
    padding-top:90px;
    
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.swiper-pagination {
    position: absolute;
    z-index: 100;
    pointer-events: auto;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
    opacity: 1;
}

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

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .hero {
        min-height: 300px;
        margin-top: 90px;
    }

    .heroSwiper {
        min-height: 400px;
        --swiper-pagination-top: 300px;
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(15px, 4.5vw, 32px);
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .hero {
        margin-top: 90px;
    }

    .hero-content h1 {
        font-size: clamp(16px, 4.5vw, 32px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content {
        padding: 0 16px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   09. TABS & BOOKING FORM
   ════════════════════════════════════════════════════════════════════════ */
.tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.booking-form {
    position: relative;
    z-index: 10;
    margin-top: -72px;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-width);
    padding: 0 24px 60px;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0;
}

.tab,
.tab-btn {
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 100%);
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 14px 32px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border-radius: 10px 10px 0 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-bottom: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 2px rgba(0,0,0,0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.tab:hover:not(.active),
.tab-btn:hover:not(.active) {
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.08) 100%);
    color: rgba(255,255,255,0.95);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 2px rgba(0,0,0,0.1);
}

.tab-btn.active,
.tab.active {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--heading);
    font-weight: 600;
    border-color: transparent;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -1px 2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.1);
}

.tab-content {
    display: none;
    background: #ffffff;
    border-radius: 0 14px 14px 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary);
}

.tab-content.active {
    display: block;
    animation: tabFadeIn 0.25s ease;
}

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

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .booking-form {
        width: calc(100% - 24px);
        margin: -40px auto 0;
        padding: 0 0 40px;
    }
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .booking-form {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .booking-form .field-input {
        border-right: none;
        border-bottom: none;
    }
    .booking-form .field-input:last-child {
        border-bottom: none;
    }
    .booking-form .search-btn {
        border-radius: 6px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   10. FLIGHT SEARCH FORM
   ════════════════════════════════════════════════════════════════════════ */
.flight-search {
    background: transparent;
    padding: 30px 36px 36px;
}

.flight-search .field-input {
    padding: 0;
}

.flight-search .field-input input {
    padding: 10px 12px;
}

/* Trip type — underline tab style */
.trip-type {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border-bottom: 1.5px solid #efefef;
}

.trip-type label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    color: #aaa;
    padding: 0 26px 13px 0;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    background: transparent;
    border-radius: 0;
    transition: color 0.2s ease, border-color 0.2s ease;
    gap: 0;
}

.trip-type label:hover {
    color: #666;
}

.trip-type label:has(input:checked) {
    color: var(--heading);
    font-weight: 600;
    border-bottom-color: var(--primary);
    background: transparent;
}

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

.form-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 10.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--label-color);
}

.form-group .field-input {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 58px;
}

.form-group .field-input:hover {
    border-color: #b0b0b0;
}

.form-group .field-input.focused {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
    background: #f0f7ff;
}

.form-group .field-input.next-active {
    border-color: rgba(11, 94, 215, 0.99);
    border-width: 2px;
}

.form-group .field-icon {
    padding: 0 10px 0 14px;
    font-size: 15px;
    color: #c0c0c0;
    flex-shrink: 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0 14px 0 4px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    background: transparent;
    font-family: inherit;
}

.form-group input::placeholder {
    color: #c0c0c0;
    font-weight: 400;
}

.form-group .field-input.next-active input::placeholder {
    color: #999999;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
}

.form-group input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.form-group .field-input.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #fafafa;
}

.form-group input:disabled + label,
input:disabled ~ label {
    color: #999;
}

.form-group input[data-locked] {
    opacity: 0.5;
}

.location-field .field-input {
    cursor: pointer;
}

.date-field .field-input input {
    background: transparent;
}

.return-field .field-input.disabled {
    opacity: 0.5;
}

.return-field .field-input {
    transition: all 0.3s ease;
}

.return-field .field-input.disabled {
    opacity: 0.5;
}

.search-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 32px;
    min-height: 58px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.search-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.38);
}

.search-btn.disabled-field {
    background: #d8d8d8;
    color: #aaa;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.search-btn.disabled-field:hover {
    background: #d8d8d8;
    box-shadow: none;
    transform: none;
}

.search-btn:disabled {
    background: #d8d8d8;
    color: #aaa;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.search-btn:disabled:hover {
    background: #d8d8d8;
    box-shadow: none;
    transform: none;
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .flight-search {
        padding: 20px 18px;
    }

    .form-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
    }

    .form-group {
        flex: 1 1 100%;
        min-width: 100%;
        margin-top: 6px;
    }

    .form-group.location-field {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .form-group.date-field {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .search-btn {
        flex: 1 1 100%;
        min-height: 50px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   11. FLIGHT OFFERS CAROUSEL
   ════════════════════════════════════════════════════════════════════════ */
.offers-section {
    padding: 80px 0 90px;
    background: var(--light-bg);
}

.offers-container {
    max-width: var(--container-width);
    margin: 0 auto;
    overflow: visible;
    position: relative;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 36px;
    margin-bottom: 36px;
}

.offers-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.offers-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.5px;
}

.offers-nav-btns {
    display: flex;
    gap: 10px;
}

.offers-prev,
.offers-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.offers-prev:hover,
.offers-next:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(11,94,215,0.2);
}

.offers-prev.swiper-button-disabled,
.offers-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

/* Swiper container */
.offersSwiper {
    padding: 40px 0 56px !important;
}

.offersSwiper .swiper-slide {
    transition: transform 0.45s ease, opacity 0.45s ease;
    transform: scale(0.88);
    opacity: 0.45;
}

.offersSwiper .swiper-slide-prev,
.offersSwiper .swiper-slide-next {
    transform: scale(0.94);
    opacity: 0.7;
}

.offersSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Offer card */
.offer-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* Image area — full bleed, tall */
.offer-img {
    position: relative;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Gradient overlay: dark at bottom for text legibility */
.offer-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.22) 50%,
        rgba(0,0,0,0.04) 100%
    );
}

/* Text pinned to bottom of image */
.offer-img-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 7px;
}

.offer-dest {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    display: block;
}

.offer-country {
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
    font-weight: 500;
    display: block;
}

/* Destination gradients */
.offer-london  { background-image: url('images/Makkah-Madena.png'); background-size: cover; background-position: center; }
.offer-newyork { background: linear-gradient(160deg, #0d0d1a 0%, #8b1a1a 45%, #d4380d 75%, #e8840a 100%); }
.offer-paris   { background: linear-gradient(160deg, #1a0028 0%, #55006b 50%, #9b27af 100%); }
.offer-tokyo   { background: linear-gradient(160deg, #0f001a 0%, #5c0d3b 45%, #b5205e 75%, #e0688a 100%); }
.offer-sydney  { background: linear-gradient(160deg, #001f35 0%, #005f8a 50%, #0096c7 80%, #30bde0 100%); }
.offer-umrah   { background-image: url('images/Makkah-Madena.png'); background-size: cover; background-position: center; }

/* Hotel card images */
.offer-hotel-dubai     { background-image: url('images/burajul-arab.jpg'); background-size: cover; background-position: center; }
.offer-hotel-istanbul  { background-image: url('images/hotel-istanbul-ciragan-palace.jpg'); background-size: cover; background-position: center; }
.offer-hotel-bali      { background-image: url('images/hotel-bali-anvaya.jpg'); background-size: cover; background-position: center; }
.offer-hotel-sharm     { background-image: url('images/hotel-sharm-tropicana-grand-azure.jpg'); background-size: cover; background-position: center; }
.offer-hotel-islamabad { background-image: url('images/Islamabad_.png'); background-size: cover; background-position: center; }

/* Landmark watermark */
.offer-london::before  { content:'🏰'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-newyork::before { content:'🗽'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-paris::before   { content:'🗼'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-tokyo::before   { content:'⛩';  position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-sydney::before  { content:'🦘'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-umrah::before   { content:'🕋'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }

/* Hotel card watermarks */
.offer-hotel-dubai::before     { content:'🏨'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-hotel-istanbul::before  { content:'🏰'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-hotel-bali::before      { content:'🌴'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-hotel-sharm::before     { content:'🏖️'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }
.offer-hotel-islamabad::before { content:'🌆'; position:absolute; right:16px; top:14px; font-size:52px; opacity:0.15; z-index:1; line-height:1; }

/* Card body */
.offer-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.offer-route {
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.offer-route span {
    color: var(--primary);
}

.offer-meta {
    display: flex;
    gap: 6px;
    font-size: 11.5px;
    color: #ccc;
    margin-bottom: 18px;
}

.offer-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.offer-from-label {
    font-size: 10.5px;
    color: #bbb;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.offer-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.5px;
    line-height: 1;
}

.offer-cta {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.offer-cta:hover {
    background: var(--primary);
    color: #fff;
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .offers-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .offers-title {
        font-size: 26px;
    }
    .offersSwiper {
        padding: 30px 0 44px !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   12. FEATURES SECTION
   ════════════════════════════════════════════════════════════════════════ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.feature-card {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════════
   13. EXPERIENCE SECTION
   ════════════════════════════════════════════════════════════════════════ */
.experience {
    padding: 80px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.experience h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--heading);
}

.experience-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.experience-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.experience-card .card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.experience-card .card-image.airport {
    background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8a 100%);
}

.experience-card .card-image.lounge {
    background: linear-gradient(135deg, #8b7355 0%, #a08060 100%);
}

.experience-card .card-image.abu-dhabi {
    background: linear-gradient(135deg, #0B5ED7 0%, #6EC1E4 100%);
}

.experience-card .card-image.onboard {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.experience-card .card-image.extras {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.experience-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: var(--heading);
}

.experience-card a {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.experience-card a:hover {
    color: var(--primary-dark);
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .experience h2 {
        font-size: 28px;
    }

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

/* ════════════════════════════════════════════════════════════════════════
   14. AWARDS SECTION
   ════════════════════════════════════════════════════════════════════════ */
.awards {
    background: var(--light-bg);
    padding: 80px 20px;
    text-align: center;
}

.awards h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--heading);
}

.awards > p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 50px;
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.award {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.award-icon {
    font-size: 50px;
}

.award span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    max-width: 150px;
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .awards h2 {
        font-size: 28px;
    }

    .awards-grid {
        gap: 30px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   15. NEWSLETTER SECTION
   ════════════════════════════════════════════════════════════════════════ */
.newsletter {
    background: var(--heading);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter > p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.subscribe-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.subscribe-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background: var(--accent-dark);
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   16. FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--heading);
    color: var(--white);
    padding: 50px 20px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--heading);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════════════
   17. TRAVELERS DROPDOWN
   ════════════════════════════════════════════════════════════════════════ */
.travelers-dropdown {
    position: relative;
    z-index: 100;
}

.travelers-dropdown .field-input {
    cursor: pointer;
    justify-content: space-between;
    padding: 0 14px;
    min-height: 58px;
    transition: opacity 0.3s;
}

.travelers-dropdown .field-input.disabled-field {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.rooms-field {
    transition: all 0.3s ease;
}

.rooms-field .field-input input {
    background: transparent;
}

.travelers-dropdown .dropdown-arrow {
    font-size: 10px;
    color: #888;
    padding: 0 8px;
}

.travelers-dropdown .travelers-display {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
}

.travelers-dropdown-panel {
    display: none;
    position: fixed;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 1000;
    overflow: hidden;
}

.travelers-dropdown-panel.active {
    display: block;
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    max-width: min(92vw, 660px) !important;
    width: min(92vw, 660px) !important;
    max-height: calc(100vh - 32px) !important;
    overflow-y: auto !important;
    overflow-x: hidden;
    animation: panelCenterIn 0.25s ease;
    box-sizing: border-box;
}

.travelers-dropdown-panel.umrah-main-panel.active {
    max-width: min(92vw, 780px) !important;
    width: min(92vw, 780px) !important;
}

.travelers-dropdown-panel.umrah-panel.active {
    max-width: min(92vw, 560px) !important;
    width: min(92vw, 560px) !important;
}

.travelers-dropdown-panel.room-guests-dropdown.active {
    max-width: min(92vw, 700px) !important;
    width: min(92vw, 700px) !important;
}

@keyframes panelCenterIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dropdown-columns {
    display: flex;
    gap: 0;
}

.dropdown-columns > div {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;
}

.dropdown-columns > div:first-child {
    flex: 1.5;
}

.dropdown-columns > div:last-child {
    border-right: none;
}

.guests-section {
    padding: 0;
    border-bottom: none;
}

.cabin-section {
    padding: 0;
}

.flight-type-section {
    padding: 0;
}

.dropdown-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .travelers-dropdown-panel {
        left: 10px !important;
        right: 10px !important;
        max-width: none !important;
        width: auto !important;
        position: fixed !important;
        bottom: 12px !important;
        top: auto !important;
        transform: none !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        border-radius: 16px 16px 0 0 !important;
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
    }
}

/* ── Responsive (max-width: 600px) ── */
@media (max-width: 600px) {
    .dropdown-columns {
        flex-direction: column;
    }

    .dropdown-columns > div {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
    }

    .dropdown-columns > div:last-child {
        border-bottom: none;
    }
}

/* ── Responsive (max-width: 768px) — shared with Room Guests Dropdown ── */
@media (max-width: 768px) {
    .travelers-dropdown-panel,
    .room-guests-dropdown {
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    }
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .travelers-dropdown-panel {
        max-height: 65vh !important;
        left: 8px !important;
        right: 8px !important;
    }
    .travelers-dropdown-panel .dropdown-columns > div {
        padding: 12px 14px;
    }
    .travelers-dropdown-panel .dropdown-footer {
        padding: 10px 14px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   18. GUESTS CONTROLS (counter / cabin / flight type)
   ════════════════════════════════════════════════════════════════════════ */
.guests-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 13px;
}

.guests-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 10px;
    border-radius: 4px;
}

.guest-type span {
    font-size: 14px;
    color: #333;
}

.guest-type small {
    color: #888;
    font-size: 12px;
}

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

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: #f5f5f5;
    border-color: var(--primary);
}

.counter-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.cabin-label,
.flight-type-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
}

.cabin-options,
.flight-type-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.cabin-option,
.flight-type-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background: #f5f5f5;
    border-radius: 4px;
}

.cabin-option:hover,
.flight-type-option:hover {
    background: #eee;
}

.cabin-option input,
.flight-type-option input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.cabin-option span,
.flight-type-option span {
    padding-right: 30px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.done-btn {
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

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

/* ── Responsive (max-width: 600px) ── */
@media (max-width: 600px) {
    .guest-type {
        padding: 8px 0;
    }

    .counter-btn {
        width: 26px;
        height: 26px;
    }
}

/* ── Responsive (max-width: 600px) — cabin / flight type options ── */
@media (max-width: 600px) {
    .cabin-options,
    .flight-type-options {
        flex-wrap: wrap;
    }

    .cabin-option,
    .flight-type-option {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .done-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    .guest-type {
        padding: 6px 0;
    }
    .guest-type span {
        font-size: 12px;
    }
    .guest-type small {
        font-size: 10px;
    }
    .guests-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .counter-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .cabin-option,
    .flight-type-option {
        font-size: 12px;
        padding: 6px 10px;
    }
    .cabin-option span,
    .flight-type-option span {
        padding-right: 24px;
    }

    .cabin-options {
        gap: 4px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   19. ROUTE FIELDS (From + Swap + To)
   ════════════════════════════════════════════════════════════════════════ */
.route-fields {
    display: flex;
    align-items: flex-end;
    flex: 2;
    min-width: 0;
    gap: 0;
}

.route-fields .form-group {
    flex: 1;
    min-width: 0;
}

.route-fields .location-field:first-child .field-input {
    border-radius: 6px;
}

.route-fields .location-field:last-child .field-input {
    border-radius: 6px;
}

.swap-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    color: #aaa;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 5;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.swap-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(180deg);
    box-shadow: 0 3px 12px rgba(11,94,215,0.25);
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .route-fields {
        width: 100%;
        flex: unset;
    }
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .route-fields {
        flex: unset;
        width: 100%;
        min-width: 100%;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   20. MULTI-CITY FORM
   ════════════════════════════════════════════════════════════════════════ */
.multicity-form {
    padding: 0 2px;
}

.mc-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mc-row:last-child {
    border-bottom: none;
}

.mc-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
    min-width: 58px;
    padding-bottom: 18px;
}

.mc-fields {
    display: flex;
    flex: 1;
    gap: 12px;
    flex-wrap: wrap;
}

.mc-fields .form-group {
    flex: 1;
    min-width: 180px;
}

.mc-fields .mc-date {
    flex: 0 0 180px;
}

.mc-remove-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    color: #bbb;
    font-size: 20px;
    width: 40px;
    min-height: 58px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    line-height: 1;
}

.mc-remove-btn:hover {
    border-color: #e00;
    color: #e00;
    background: #fff5f5;
}

.mc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.mc-travelers-group {
    flex: 0 0 220px;
}

.add-flight-btn {
    background: none;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 0 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    min-height: 58px;
    font-family: inherit;
}

.add-flight-btn:hover {
    background: var(--primary);
    color: #fff;
}

.add-flight-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.add-flight-btn:disabled:hover {
    background: none;
    color: var(--primary);
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    .mc-row {
        flex-wrap: wrap;
    }

    .mc-label {
        width: 100%;
        padding-bottom: 0;
    }

    .mc-fields {
        flex: unset;
        width: 100%;
    }

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

    .add-flight-btn {
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   21. BOOKING MODAL
   ════════════════════════════════════════════════════════════════════════ */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.booking-modal.open {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(6px);
    animation: overlayIn 0.25s ease;
}

.panel-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.panel-overlay.active {
    display: block;
    opacity: 1;
}

@keyframes overlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 960px);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
    animation: panelIn 0.3s cubic-bezier(0.34, 1.28, 0.64, 1);
    border-top: 3px solid var(--primary);
}

@keyframes panelIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* Modal header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 36px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-step {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.3px;
}

.modal-close {
    background: none;
    border: 1.5px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.modal-close:hover {
    border-color: #1a1a1a;
    color: var(--heading);
}

/* Modal body: two columns */
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0;
}

.section-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--carousel-heading, var(--heading));
    margin-bottom: 18px;
}

/* Summary column */
.modal-summary {
    padding: 28px 28px 36px 36px;
    border-right: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 0 0 0 16px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-item {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 10px;
    padding: 14px 16px;
}

.summary-item-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--carousel-heading, var(--heading));
    margin-bottom: 4px;
}

.summary-item-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
}

.summary-item-value .arrow {
    color: var(--primary);
    margin: 0 6px;
    font-weight: 400;
}

.summary-item.highlight {
    border-color: rgba(11,94,215,0.3);
    background: rgba(11,94,215,0.04);
}

/* Contact form column */
.modal-form-section {
    padding: 28px 36px 36px 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    gap: 14px;
}

.contact-group {
    flex: 1;
    min-width: 0;
}

.contact-group.full {
    flex: 1 0 100%;
}

.contact-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--carousel-heading, var(--heading));
    margin-bottom: 7px;
}

.contact-group .optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    color: #bbb;
}

.contact-group .field-input {
    min-height: 52px;
    padding: 0 4px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-group .field-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.contact-group .field-input input {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    padding: 14px 16px;
    width: 100%;
    border: none;
    background: transparent;
    font-family: inherit;
}

.contact-group .field-input input::placeholder {
    color: #c0c0c0;
    font-weight: 400;
}

.contact-group .field-input input:focus {
    outline: none;
}

.contact-group textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--heading);
    background: var(--input-bg);
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: 96px;
}

.contact-group textarea::placeholder {
    color: #c0c0c0;
}

.contact-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,94,215,0.1);
}

.confirm-btn {
    margin-top: 8px;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.confirm-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(11,94,215,0.30);
}

.confirm-btn.disabled-field {
    background: #d8d8d8;
    color: #aaa;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.confirm-btn.disabled-field:hover {
    background: #d8d8d8;
    box-shadow: none;
    transform: none;
}

.confirm-btn:disabled {
    background: #d8d8d8;
    color: #aaa;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.confirm-btn:disabled:hover {
    background: #d8d8d8;
    box-shadow: none;
    transform: none;
}

/* ── Responsive (max-width: 700px) ── */
@media (max-width: 700px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-summary {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        padding: 24px 20px;
    }
    .modal-form-section {
        padding: 24px 20px;
    }
    .modal-header {
        padding: 22px 20px 16px;
    }
    .contact-row {
        flex-direction: column;
    }
    .contact-group .field-input,
    .contact-group textarea {
        border-color: #c0c0c0;
    }
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .modal-panel {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 0;
        transform: none !important;
        animation: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
    }
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .modal-panel {
        max-height: 100vh !important;
        max-height: 100dvh !important;
    }
    .modal-header {
        padding: 16px 16px 12px;
    }
    .modal-title {
        font-size: 17px;
    }
    .modal-step {
        font-size: 10px;
    }
    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 17px;
    }
    .modal-summary {
        padding: 10px 16px;
    }
    .modal-form-section {
        padding: 14px 16px;
    }
    .section-heading {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .summary-items {
        gap: 2px;
    }
    .summary-item {
        background: none;
        border: none;
        border-radius: 0;
        padding: 4px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .summary-item:last-child {
        border-bottom: none;
    }
    .summary-item-label {
        font-size: 9px;
        margin-bottom: 1px;
    }
    .summary-item-value {
        font-size: 13px;
    }
    .contact-row input,
    .contact-row textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    .contact-group .field-input,
    .contact-group textarea {
        border-color: #c0c0c0;
    }
    .contact-group .field-input:focus-within,
    .contact-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
    }
    .confirm-btn {
        padding: 12px;
        font-size: 13px;
    }
}

/* ── Booking summary on mobile: compact paragraph style ── */
@media (max-width: 700px) {
    .modal-summary {
        padding: 14px 20px;
    }
    .modal-summary .section-heading {
        margin-bottom: 6px;
    }
    .summary-items {
        display: block;
        gap: 0;
    }
    .summary-item {
        display: inline;
        background: none;
        border: none;
        border-radius: 0;
        padding: 0;
    }
    .summary-item + .summary-item::before {
        content: '·';
        margin: 0 8px;
        color: #c0c0c0;
    }
    .summary-item-label {
        display: inline;
        font-size: 10px;
        margin-right: 4px;
    }
    .summary-item-label::after {
        content: ':';
    }
    .summary-item-value {
        display: inline;
        font-size: 14px;
        line-height: 1.9;
    }
    .summary-item-value .arrow {
        margin: 0 4px;
    }
    .summary-item.highlight {
        background: none;
        border-color: transparent;
    }
    .summary-item.highlight .summary-item-value {
        color: var(--primary);
    }
}

/* ════════════════════════════════════════════════════════════════════════
   22. UMRAH UNIFIED MAIN PANEL
   ════════════════════════════════════════════════════════════════════════ */
.umrah-main-columns {
    display: flex;
    gap: 0;
}

.umrah-main-col {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.umrah-main-col:last-child {
    border-right: none;
}

.umrah-col-header {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #eee;
}

.umrah-main-panel .dropdown-footer {
    border-top: 1px solid #eee;
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .umrah-main-columns {
        flex-direction: column;
    }
    .umrah-main-col {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .umrah-main-col:last-child {
        border-bottom: none;
    }
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .umrah-main-col {
        padding: 12px 14px;
    }
    .umrah-col-header {
        font-size: 10px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   23. UMRAH DAYS ROWS
   ════════════════════════════════════════════════════════════════════════ */
.umrah-days-section {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.umrah-days-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    gap: 16px;
}

.umrah-days-row--calculated {
    background: rgba(11, 94, 215, 0.05);
    border-radius: 6px;
    padding: 11px 8px;
    margin: 0 -8px;
}

.umrah-days-divider {
    height: 1px;
    background: #eee;
    margin: 0;
}

.umrah-days-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.umrah-days-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.umrah-days-hint {
    font-size: 11px;
    color: #999;
}

.umrah-days-input-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.umrah-days-input {
    width: 72px;
    height: 40px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    text-align: center;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    -moz-appearance: textfield;
}

.umrah-days-input::-webkit-outer-spin-button,
.umrah-days-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.umrah-days-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.umrah-days-input.input-error {
    border-color: #e04040;
    box-shadow: 0 0 0 3px rgba(224, 64, 64, 0.1);
}

.umrah-days-unit {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.umrah-madinah-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    min-width: 72px;
    text-align: center;
    display: inline-block;
}

.umrah-days-row--calculated .umrah-days-unit {
    color: #888;
    visibility: hidden;
}

.umrah-days-row--calculated.has-value .umrah-days-unit {
    visibility: visible;
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .umrah-days-row {
        padding: 8px 0;
        gap: 10px;
    }
    .umrah-days-title {
        font-size: 12px;
    }
    .umrah-days-hint {
        font-size: 10px;
    }
    .umrah-days-row input[type="number"] {
        width: 60px;
        padding: 6px 8px;
        font-size: 13px;
    }
    .umrah-days-row--calculated {
        padding: 8px 6px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   24. HOTEL GUESTS & ROOM GUESTS
   ════════════════════════════════════════════════════════════════════════ */
.hotel-guests-input {
    width: 100%;
    padding: 0 14px 0 4px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    font-family: inherit;
}

.hotel-guests-input:focus {
    outline: none;
}

.cabin-option.selected,
.flight-type-option.selected {
    background: rgba(11, 94, 215, 0.12);
    border: 1px solid var(--primary);
    color: var(--heading);
}

.room-guests-container {
    margin-top: 16px;
    width: 100%;
    border-top: 1.5px solid #efefef;
    padding-top: 14px;
}

.room-guests-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.room-guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.room-guest-card {
    background: #f9f9f9;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 16px;
}

.room-guest-card-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.room-guest-card .guest-type {
    background: #fff;
    border: 1px solid #f0f0f0;
}

/* ── Responsive (max-width: 600px) ── */
@media (max-width: 600px) {
    .room-guests-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   25. ROOM GUESTS DROPDOWN
   ════════════════════════════════════════════════════════════════════════ */
.room-guests-dropdown {
    position: fixed;
    z-index: 1000;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px 24px;
    display: none;
    max-height: 60vh;
    overflow: hidden;
    flex-direction: column;
}
.room-guests-dropdown.active {
    display: flex;
}
.room-guests-dropdown .dropdown-columns {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}
.room-guests-dropdown .dropdown-footer {
    flex-shrink: 0;
    padding: 12px 0 0;
}
.room-guests-dropdown .room-guests-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}
.room-guests-dropdown .room-guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.room-guests-dropdown .room-guest-card {
    background: #f9f9f9;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s;
}
.room-guests-dropdown .room-guest-card:hover {
    border-color: var(--primary, #0B5ED7);
}
.room-guests-dropdown .room-guest-card-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary, #0B5ED7);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.room-guests-dropdown .room-guest-card .guest-type {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 6px;
}
.room-guests-dropdown .room-guest-card .guest-type:last-child {
    margin-bottom: 0;
}
.room-guests-dropdown .room-guest-card .room-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 8px;
}
.room-guests-dropdown .room-guest-card .room-type-row span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
.room-guests-dropdown .room-guest-card .room-type-select {
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    background: #fafafa;
    cursor: pointer;
    font-family: inherit;
}
.room-guests-dropdown .room-guest-card .room-type-select:focus {
    outline: none;
    border-color: var(--primary, #0B5ED7);
}
.room-guests-dropdown .done-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary, #0B5ED7);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.room-guests-dropdown .done-btn:hover {
    background: #094bc0;
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    .room-guests-dropdown .room-guests-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Responsive (max-width: 480px) ── */
@media (max-width: 480px) {
    .room-guests-dropdown {
        padding: 6px 12px;
        border-radius: 10px;
        max-height: 55vh;
    }
    .room-guests-dropdown .room-guest-card {
        padding: 6px 12px;
    }
    .room-guests-dropdown .room-guest-card-header {
        margin-bottom: 4px;
        padding-bottom: 4px;
    }
    .room-guests-dropdown .room-guest-card .guest-type {
        padding: 3px 8px;
        margin-bottom: 3px;
    }
    .room-guests-dropdown .room-guest-card .room-type-row {
        padding: 3px 8px;
    }
    .room-guests-dropdown .room-guests-label {
        margin-bottom: 4px;
    }
    .room-guests-dropdown .room-guests-grid {
        gap: 6px;
        margin-bottom: 6px;
    }
    .room-guests-dropdown .dropdown-footer {
        padding: 4px 0;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   26. T&C CHECKBOX
   ════════════════════════════════════════════════════════════════════════ */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════════════════
   27. CLOUDFLARE TURNSTILE
   ════════════════════════════════════════════════════════════════════════ */
.cf-turnstile {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════════════════
   28. PREMIUM DESIGN SYSTEM OVERRIDES
   Loaded last so legacy component rules remain functional.
   ════════════════════════════════════════════════════════════════════════ */
.header-main,
.hero-container,
.booking-form,
.offers-container,
.experience,
.awards-grid,
.footer-content {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--container-width));
    max-width: none;
    margin-inline: auto;
}

.heroSwiper {
    overflow: hidden !important;
}

.hero-slide::before {
    background: linear-gradient(
        90deg,
        rgba(0, 31, 53, 0.74) 0%,
        rgba(0, 31, 53, 0.44) 48%,
        rgba(0, 31, 53, 0.18) 100%
    );
}

.cta-button,
.search-btn,
.offer-cta,
.done-btn,
.add-flight-btn,
.confirm-btn,
.subscribe-form button {
    border-radius: var(--radius-pill);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 32px rgba(11, 94, 215, 0.28);
}

.tab-content,
.modal-panel {
    border-radius: var(--radius-lg);
}

.form-group .field-input,
.contact-group .field-input,
.contact-group textarea,
.summary-item,
.travelers-dropdown-panel,
.room-guest-card,
.room-guests-dropdown {
    border-radius: var(--radius-md);
}

.offer-card,
.feature-card,
.experience-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.offer-card:hover,
.feature-card:hover,
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.offers-section,
.experience,
.awards,
.newsletter {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.offers-header {
    padding-inline: 0;
}

.offer-meta,
.carousel-card-meta {
    color: #7c8797;
}

.newsletter {
    max-width: none;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.travelers-dropdown-panel,
.room-guests-dropdown {
    z-index: 1100;
}

/* ── Responsive (max-width: 992px) ── */
@media (max-width: 992px) {
    :root {
        --page-gutter: 18px;
        --section-space: 68px;
    }

    .form-row {
        flex-wrap: wrap;
    }
}

/* ── Responsive (max-width: 768px) ── */
@media (max-width: 768px) {
    :root {
        --page-gutter: 16px;
        --section-space: 54px;
    }

    .hero-content {
        padding-inline: 20px;
    }

    .booking-form .field-input {
        border-right: 1.5px solid #d0d0d0;
        border-bottom: 1.5px solid #d0d0d0;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   MOBILE MENU FIX (matches duplicate 2 behaviour)
   The premium .header-main rule above insets the header with --page-gutter,
   but the mobile .nav is positioned with `margin-left: -20px; width: 100vw`
   to compensate the header's 20px padding. With a narrower header-main the
   nav no longer reaches the viewport edges (left margin + right overflow
   clipped by body's overflow-x: hidden). Restore full width on mobile so
   the menu spans edge to edge and child dropdowns stay fully visible.
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .header-main {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   29. GLASSMOBILE — glassy forms / popups / dropdowns on mobile
   Frosted translucent backgrounds for the mobile menu, forms, dropdown
   panels, booking modal, contact card, cookie bar and overlays.
   ════════════════════════════════════════════════════════════════════════ */

/* Mobile slide-down nav (and its sub-dropdowns) → glass */
@media (max-width: 992px) {
    .nav {
        background: rgba(255, 255, 255, 0.72);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        backdrop-filter: blur(18px) saturate(160%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    }

    .nav.active {
        box-shadow: 0 12px 32px rgba(10, 37, 64, 0.2);
    }

    .nav-item > a {
        border-bottom-color: rgba(10, 37, 64, 0.08);
    }

    .nav-item > a:hover,
    .nav-item > a:active {
        background: rgba(255, 255, 255, 0.45);
    }

    .nav-item .dropdown {
        background: rgba(255, 255, 255, 0.5);
        -webkit-backdrop-filter: blur(12px) saturate(150%);
        backdrop-filter: blur(12px) saturate(150%);
    }

    .nav-item .dropdown li a:hover {
        background: rgba(11, 94, 215, 0.08);
    }
}

/* Glassy forms, dropdowns, modals, popups on phones/tablets */
@media (max-width: 768px) {
    /* Booking tab container → glass */
    .tab-content {
        background: rgba(255, 255, 255, 0.78);
        -webkit-backdrop-filter: blur(16px) saturate(150%);
        backdrop-filter: blur(16px) saturate(150%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-top: 3px solid var(--primary);
        box-shadow: 0 24px 60px rgba(10, 37, 64, 0.16);
    }

    /* Inputs / selects / textareas → glass */
    .form-group .field-input,
    .contact-group .field-input,
    .contact-group textarea,
    .contact-form-group input,
    .contact-form-group textarea,
    .contact-form-group select {
        background: rgba(255, 255, 255, 0.55);
        -webkit-backdrop-filter: blur(10px) saturate(140%);
        backdrop-filter: blur(10px) saturate(140%);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .form-group .field-input:hover {
        border-color: rgba(255, 255, 255, 0.8);
    }

    .form-group .field-input.focused,
    .contact-group .field-input:focus,
    .contact-form-group input:focus,
    .contact-form-group textarea:focus,
    .contact-form-group select:focus {
        background: rgba(255, 255, 255, 0.78);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.18);
    }

    .form-group .field-input.disabled,
    .return-field .field-input.disabled {
        background: rgba(245, 245, 245, 0.55);
    }

    /* Newsletter subscribe input → glass */
    .subscribe-form input {
        background: rgba(255, 255, 255, 0.72);
        -webkit-backdrop-filter: blur(12px) saturate(150%);
        backdrop-filter: blur(12px) saturate(150%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: var(--heading);
    }

    /* Dropdown panels (travelers / umrah / rooms) → glass */
    .travelers-dropdown-panel,
    .room-guests-dropdown {
        background: rgba(255, 255, 255, 0.84);
        -webkit-backdrop-filter: blur(22px) saturate(160%);
        backdrop-filter: blur(22px) saturate(160%);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 20px 50px rgba(10, 37, 64, 0.18);
    }

    .dropdown-columns > div {
        border-color: rgba(10, 37, 64, 0.08);
    }

    .guest-type,
    .room-guests-dropdown .room-guest-card,
    .room-guests-dropdown .room-guest-card .guest-type,
    .room-guests-dropdown .room-guest-card .room-type-row {
        background: rgba(255, 255, 255, 0.65);
        border-color: rgba(10, 37, 64, 0.08);
    }

    .room-guests-dropdown .room-type-select {
        background: rgba(255, 255, 255, 0.85);
    }

    /* Booking modal → glass */
    .modal-panel {
        background: rgba(255, 255, 255, 0.9);
        -webkit-backdrop-filter: blur(24px) saturate(160%);
        backdrop-filter: blur(24px) saturate(160%);
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-top: 3px solid var(--primary);
    }

    .modal-header {
        border-bottom-color: rgba(10, 37, 64, 0.08);
    }

    .modal-summary {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(10, 37, 64, 0.08);
    }

    .summary-item {
        background: rgba(255, 255, 255, 0.65);
        border-color: rgba(10, 37, 64, 0.08);
    }

    .summary-item.highlight {
        background: rgba(11, 94, 215, 0.09);
        border-color: rgba(11, 94, 215, 0.3);
    }

    /* Contact form card → glass */
    .contact-form-wrap {
        background: rgba(255, 255, 255, 0.78);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 18px 45px rgba(10, 37, 64, 0.12);
    }

    /* Cookie consent → dark glass */
    .cookie-consent {
        background: rgba(10, 37, 64, 0.8);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    /* Overlays → stronger frosted blur */
    .modal-overlay {
        background: rgba(10, 10, 20, 0.6);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .panel-overlay {
        background: rgba(10, 10, 20, 0.5);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
}

/* ════════════════════════════════════════════════════════════════════════
   30. MOBILE MODAL COMPACT — smaller "Step 2" content on phones
   Compresses the booking summary + contact form so the Confirm Booking
   button stays reachable on small screens.
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
    .modal-panel {
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    }

    .modal-header {
        padding: 12px 16px 10px;
    }

    .modal-step {
        font-size: 9px;
        margin-bottom: 2px;
    }

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

    .modal-close {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    /* Compact booking summary strip */
    .modal-summary {
        padding: 8px 16px;
    }

    .modal-summary .section-heading {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .summary-item {
        padding: 2px 0;
        margin: 0;
    }

    .summary-item + .summary-item::before {
        margin: 0 6px;
    }

    .summary-item-label {
        font-size: 8.5px;
        margin-right: 3px;
    }

    .summary-item-value {
        font-size: 12px;
        line-height: 1.7;
    }

    /* Compact contact form */
    .modal-form-section {
        padding: 12px 16px 16px;
    }

    .modal-form-section > .section-heading {
        font-size: 9px;
        margin-bottom: 8px;
    }

    .contact-form {
        gap: 9px;
    }

    .contact-row {
        gap: 9px;
    }

    .contact-group label {
        font-size: 9px;
        letter-spacing: 0.8px;
        margin-bottom: 4px;
    }

    .contact-group .field-input {
        min-height: 40px;
    }

    .contact-group .field-input input {
        padding: 9px 12px;
        font-size: 13px;
    }

    .contact-group textarea {
        height: 56px;
        min-height: 56px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .form-checkbox {
        font-size: 12px;
        gap: 8px;
    }

    .form-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 1px;
    }

    .confirm-btn {
        margin-top: 4px;
        padding: 12px;
        font-size: 13px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   28. FLATPICKR THEME
   ════════════════════════════════════════════════════════════════════════ */

/* ── Calendar Container ── */

.flatpickr-calendar {
    background: #0A2540 !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28) !important;
    font-family: inherit !important;
    overflow: hidden;
}

/* ── Calendar Arrow ── */

.flatpickr-calendar.arrowTop::before {
    border-bottom-color: rgba(212, 175, 55, 0.45) !important;
}

.flatpickr-calendar.arrowTop::after {
    border-bottom-color: #0A2540 !important;
}

.flatpickr-calendar.arrowBottom::before {
    border-top-color: rgba(212, 175, 55, 0.45) !important;
}

.flatpickr-calendar.arrowBottom::after {
    border-top-color: #0A2540 !important;
}

/* ── Month Header ── */

.flatpickr-months {
    background: #0A2540 !important;
    padding: 8px 6px 4px;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: #D4AF37 !important;
    fill: #D4AF37 !important;
}

.flatpickr-current-month {
    color: #D4AF37 !important;
    font-weight: 700;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #0A2540 !important;
    color: #D4AF37 !important;
    font-weight: 700;
    border: 0;
}

.flatpickr-monthDropdown-months option {
    background: #0A2540 !important;
    color: #FFFFFF !important;
}

.flatpickr-current-month input.cur-year {
    color: #D4AF37 !important;
    font-weight: 700;
}

/* ── Previous / Next Month Buttons ── */

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #D4AF37 !important;
    fill: #D4AF37 !important;
    top: 7px !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    fill: #D4AF37 !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #FFFFFF !important;
}

/* ── Week Days ── */

.flatpickr-weekdays {
    background: #103654 !important;
}

.flatpickr-weekdaycontainer {
    background: #103654 !important;
}

span.flatpickr-weekday {
    background: #103654 !important;
    color: #E5C65C !important;
    font-weight: 600 !important;
}

/* ── Days Container ── */

.flatpickr-days {
    background: #0A2540 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.12) !important;
}

.dayContainer {
    background: #0A2540 !important;
}

/* =========================================================
   NORMAL AVAILABLE DAYS
   ========================================================= */

.flatpickr-day {
    color: #FFFFFF !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(212, 175, 55, 0.16) !important;
    border-color: #D4AF37 !important;
    color: #FFFFFF !important;
}


/* =========================================================
   TODAY
   ========================================================= */

.flatpickr-day.today {
    color: #FFFFFF !important;
    border: 1px solid #D4AF37 !important;
    background: transparent !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}


/* =========================================================
   SELECTED DATE
   ========================================================= */

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #0A2540 !important;
    font-weight: 800 !important;
    opacity: 1 !important;
}


/* =========================================================
   DATE RANGE
   ========================================================= */

.flatpickr-day.inRange {
    background: rgba(212, 175, 55, 0.14) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: -5px 0 0 rgba(212, 175, 55, 0.14), 5px 0 0 rgba(212, 175, 55, 0.14) !important;
}


/* =========================================================
   DAYS FROM PREVIOUS / NEXT MONTH
   ========================================================= */

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #8297AA !important;
    opacity: 1 !important;
}


/* =========================================================
   DISABLED / PAST DATES
   Still visibly disabled — but readable
   ========================================================= */

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay.flatpickr-disabled,
.flatpickr-day.nextMonthDay.flatpickr-disabled {
    color: #58738A !important;
    background: transparent !important;
    border-color: transparent !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

/* ── Year Up / Down Controls ── */

.numInputWrapper span {
    border-color: rgba(212, 175, 55, 0.20) !important;
}

.numInputWrapper span:hover {
    background: rgba(212, 175, 55, 0.12) !important;
}

.numInputWrapper span.arrowUp::after {
    border-bottom-color: #D4AF37 !important;
}

.numInputWrapper span.arrowDown::after {
    border-top-color: #D4AF37 !important;
}

/* ── Date Inputs ── */

.flatpickr-input,
.flatpickr-input.form-control,
input.flatpickr-input {
    cursor: pointer;
}

.flatpickr-input + input,
input.flatpickr-input {
    font-family: inherit;
}

/* ── 993px–1255px Fix ── */

@media (min-width: 993px) and (max-width: 1255px) {
    .form-group {
        position: relative;
        min-width: 0;
        z-index: 1;
    }

    .form-group:focus-within {
        z-index: 20;
    }

    .field-input {
        position: relative;
        min-width: 0;
    }

    .field-input input {
        min-width: 0;
    }

    .flatpickr-input {
        width: 100% !important;
        min-width: 0 !important;
        padding-right: 40px !important;
    }

    .flatpickr-calendar {
        z-index: 99999 !important;
    }
}

/* ── Mobile ── */

@media (max-width: 600px) {
    .flatpickr-calendar {
        border-radius: 12px !important;
    }

    .flatpickr-day {
        border-radius: 7px !important;
    }

    .flatpickr-current-month {
        font-size: 100% !important;
    }
}
