* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

: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;
}

body {
    background-color: var(--light-bg);
    color: var(--text);
}

/* Header */
.header {
    background: var(--heading);
    color: var(--white);
    padding: 0 20px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 100px;
    height: 40px;
}

.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;
}

/* Navigation */
.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);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 520px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.hero-slide {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.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-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: left;
    max-width: 600px;
    margin: 0 10%;
    padding: 0;
}

.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;
   bottom: 190px;
    left: 50%;
    transform: translateX(-50%);
  
    z-index: 100;
}

.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;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .heroSwiper {
        min-height: 400px;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: o auto;
    margin-bottom: 30px;
}

.booking-form {
    position: relative;
    z-index: 3;
    margin-top: -72px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 24px 60px;
}


.booking-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 0;
}

.tab,
.tab-btn {
    background: rgba(255, 255, 255, 0.08);
    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.08);
    border-bottom: none;
}

.tab:hover:not(.active),
.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255,255,255,0.95);
}

.tab-btn.active,
.tab.active {
    background: #ffffff;
    color: var(--heading);
    font-weight: 600;
    border-color: transparent;
}

.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);
    }
}

/* 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;
}

/* ══════════════════════════════
   Flight Offers Carousel
══════════════════════════════ */
.offers-section {
    padding: 80px 0 90px;
    background: var(--light-bg);
}

.offers-container {
    max-width: 1200px;
    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: linear-gradient(160deg, #05051f 0%, #141468 55%, #2a2a8a 100%); }
.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%); }

/* 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; }

/* 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;
}

@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;
    }
    }


/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    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;
}

/* Experience Section */
.experience {
    padding: 80px 20px;
    max-width: 1400px;
    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);
}

/* 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: 1200px;
    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;
}

/* 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);
}

/* Footer */
.footer {
    background: var(--heading);
    color: var(--white);
    padding: 50px 20px;
}

.footer-content {
    max-width: 1200px;
    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);
}

.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);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--black);
    cursor: pointer;
    line-height: 1;
}

.nav {
    padding: 15px 0;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .header-main {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background: var(--white);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0,0,0,0.2);
        flex: unset;
    }

    .nav.active {
        right: 0;
    }

    .menu-close {
        display: block;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        color: var(--black);
    }

    .nav-item.has-dropdown.active .dropdown {
        display: block;
    }

    .has-dropdown > a::after {
        content: ' ▶';
        font-size: 10px;
        float: right;
        transition: transform 0.3s;
    }

    .has-dropdown.active > a::after {
        transform: rotate(90deg);
    }

    .nav-item .dropdown {
        display: none;
        position: static;
        box-shadow: none;
        padding-left: 20px;
        border-left: 2px solid var(--primary);
        background: rgba(0,0,0,0.03);
    }

    .nav-item .dropdown li a {
        padding: 12px 15px;
    }

    .header-right {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .booking-form {
        margin: 0 12px;
        margin-top: -40px;
        padding: 0 0 40px;
    }

    .flight-search {
        padding: 20px 18px;
    }

    .form-row {
        flex-direction: column;
    }

    .route-fields {
        width: 100%;
        flex: unset;
    }

    .form-group {
        min-width: 100%;
    }

    .experience h2,
    .awards h2 {
        font-size: 28px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        gap: 30px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }
}

.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: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 1000;
    overflow: hidden;
}

@media (max-width: 768px) {
    .travelers-dropdown-panel {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

.travelers-dropdown-panel.active {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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;
}

@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;
    }
    
    .guest-type {
        padding: 8px 0;
    }
    
    .counter-btn {
        width: 26px;
        height: 26px;
    }
}

.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;
}

@media (max-width: 600px) {
    .room-guests-grid {
        grid-template-columns: 1fr;
    }

    .cabin-options,
    .flight-type-options {
        flex-wrap: wrap;
    }
    
    .cabin-option,
    .flight-type-option {
        flex: 0 0 auto;
        padding: 6px 14px;
        font-size: 11px;
    }
}

.dropdown-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.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);
}

/* ── 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;
    flex-shrink: 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);
}

/* ── 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);
}

@media (max-width: 992px) {
    .route-fields {
        flex: unset;
        width: 100%;
        min-width: 100%;
    }

    .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;
    }
}

/* ══════════════════════════════
   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: #aaa;
    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: #bbb;
    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: #888;
    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(224,106,0,0.35);
}

.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;
}

@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;
    }
}

/* ── 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;
}

@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;
    }
}

/* ── 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;
}

/* ── Hotel guests number input ── */
.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;
}

/* ── Room Guests Dropdown Panel ── */
.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;
}

/* ── 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;
}

/* ── Math Captcha ── */
.form-captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.form-captcha label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

.form-captcha .captcha-question {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.form-captcha input {
    width: 80px;
    padding: 10px 12px;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.form-captcha input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.form-captcha input.input-error {
    border-color: #e04040;
    box-shadow: 0 0 0 3px rgba(224, 64, 64, 0.1);
}

.captcha-error-msg {
    font-size: 12px;
    color: #e04040;
    font-weight: 500;
    display: none;
    width: 100%;
}

.captcha-error-msg.show {
    display: block;
}

/* ── Mobile compact (≤480px): modals & dropdowns ── */
@media (max-width: 480px) {
    .modal-panel {
        max-height: 85vh;
        border-radius: 12px;
    }
    .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: 14px 16px;
    }
    .modal-form-section {
        padding: 14px 16px;
    }
    .section-heading {
        font-size: 11px;
    }
    .summary-item {
        padding: 6px 0;
    }
    .summary-item-value {
        font-size: 13px;
    }
    .contact-row input,
    .contact-row textarea {
        font-size: 13px;
        padding: 10px 12px;
    }
    .confirm-btn {
        padding: 12px;
        font-size: 13px;
    }

    .travelers-dropdown-panel {
        max-height: 70vh;
        overflow-y: auto;
    }
    .travelers-dropdown-panel .dropdown-columns > div {
        padding: 12px 14px;
    }
    .travelers-dropdown-panel .dropdown-footer {
        padding: 10px 14px;
    }
    .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;
    }

    .umrah-main-col {
        padding: 12px 14px;
    }
    .umrah-col-header {
        font-size: 10px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    .umrah-days-row {
        padding: 8px 0;
        gap: 10px;
    }
    .umrah-days-title {
        font-size: 12px;
    }
    .umrah-days-sub {
        font-size: 10px;
    }
    .umrah-days-row input[type="number"] {
        width: 60px;
        padding: 6px 8px;
        font-size: 13px;
    }
    .umrah-days-row--calculated {
        padding: 8px 6px;
    }
    .cabin-options {
        gap: 4px;
    }

    .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;
    }
}