/* ============================================================
   Aljazeera Holidays – Site Stylesheet
   Design: Navy (#0d1b3e) + Gold (#c8a94d) + White
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────── */
:root {
    --navy: #0d1b3e;
    --navy-light: #162952;
    --gold: #c8a94d;
    --gold-light: #e2c878;
    --gold-dark: #a8892d;
    --teal: #0b7a7a;
    --teal-light: #0d9b9b;
    --white: #ffffff;
    --light: #f6f8fc;
    --light-gray: #e8ecf4;
    --gray: #6c757d;
    --dark: #1a2744;
    --text: #2c3e50;
    --red: #e74c3c;
    --shadow-sm: 0 2px 8px rgba(13,27,62,.10);
    --shadow: 0 6px 24px rgba(13,27,62,.14);
    --shadow-lg: 0 16px 48px rgba(13,27,62,.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ── Utility ─────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    color: var(--dark);
    margin-bottom: 14px;
}

.section-title span { color: var(--gold); }

.section-intro {
    font-size: 15px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,169,77,.35);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,18,48,.96) 0%, rgba(13,27,62,.80) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(200,169,77,.18);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(9,17,46,.98);
    box-shadow: 0 4px 32px rgba(9,17,46,.50);
    border-bottom-color: rgba(200,169,77,.32);
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 76px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(200,169,77,.35);
    transition: transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}

.navbar-brand:hover .logo-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 6px 24px rgba(200,169,77,.55);
}

.logo-text { line-height: 1.2; }

.logo-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .4px;
}

.logo-text span {
    font-size: 10.5px;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Nav links (centered column) ────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-links a {
    position: relative;
    display: block;
    color: rgba(255,255,255,.75);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: .2px;
    text-decoration: none;
    transition: color .22s ease, background .22s ease;
}

/* Animated gold underline that expands from center */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; right: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    border-radius: 2px;
    transition: left .25s ease, right .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,.07);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    left: 16px;
    right: 16px;
}

/* ── Right column ────────────────────────────────────────── */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* ── WhatsApp button ─────────────────────────────────────── */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28d36a 0%, #1eb858 100%);
    color: var(--white) !important;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.15);
    letter-spacing: .2px;
    box-shadow: 0 4px 18px rgba(37,211,102,.28), inset 0 1px 0 rgba(255,255,255,.2);
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-wa:hover {
    box-shadow: 0 8px 28px rgba(37,211,102,.48), inset 0 1px 0 rgba(255,255,255,.2);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* ── Mobile WA item (hidden on desktop) ─────────────────── */
.nav-wa-item { display: none; }

/* Lock body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    padding: 0;
    transition: background .2s ease;
    position: relative;
    z-index: 1200;
}

.hamburger:hover { background: rgba(255,255,255,.13); }

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .28s ease, opacity .22s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,18,48,.78) 0%, rgba(10,18,48,.65) 55%, rgba(10,18,48,.80) 100%),
        url('/images/airplane-sky.jpg');
    background-size: cover;
    background-position: center 40%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 110px 0 48px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,77,.18);
    border: 1px solid rgba(200,169,77,.35);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(34px, 5.5vw, 64px);
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.12;
}
.hero h1 span { color: var(--gold); }

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
    max-width: 640px;
}

/* ── Flight Search Widget ────────────────────────────────── */
.search-widget {
    background: rgba(255,255,255,.97);
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(10,18,48,.32);
    overflow: hidden;
    width: 100%;
}

.search-tabs {
    display: flex;
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
}

.search-tab {
    padding: 10px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border: none;
    background: none;
    transition: color .2s ease, background .2s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.search-tab.active {
    color: var(--navy);
    background: var(--white);
    border-bottom-color: var(--gold);
}

.search-body { padding: 16px 18px; }

.search-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.search-input::placeholder { color: var(--gray); }

.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,77,.15);
}

.search-input.search-input-sm { flex: 0 0 148px; }
.search-input.search-input-xs { flex: 0 0 110px; }

.search-submit-btn {
    flex-shrink: 0;
    height: 44px;
    padding: 0 24px;
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Features Bar ────────────────────────────────────────── */
.features-bar {
    background: var(--navy-light);
    padding: 28px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,169,77,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}
.feature-text span {
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

/* ── Section Generic ────────────────────────────────────── */
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 52px; }

/* ── Services Section ────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1.5px solid var(--light-gray);
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.service-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── Packages Grid ───────────────────────────────────────── */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--light-gray);
    transition: var(--transition);
}

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

.pkg-img {
    position: relative;
    height: 210px;
    background: var(--light-gray);
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.pkg-card:hover .pkg-img img { transform: scale(1.06); }

.pkg-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.pkg-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.pkg-price-tag {
    position: absolute;
    bottom: 14px; right: 14px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}
.pkg-price-tag span {
    color: var(--gold);
    font-size: 16px;
}

.pkg-body { padding: 22px; }

.pkg-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 10px;
}

.pkg-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray);
}
.pkg-meta-item span { font-size: 14px; }

.pkg-body h3 {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
}

.pkg-highlights {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}

.pkg-highlights li {
    font-size: 12.5px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pkg-highlights li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: 12px;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

/* ── Filter Buttons ──────────────────────────────────────── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(200,169,77,.1);
    border-color: rgba(200,169,77,.3);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,169,77,.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.why-text h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 7px;
}
.why-text p {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.6;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
    background:
        linear-gradient(135deg, rgba(168,137,45,.93) 0%, rgba(200,169,77,.90) 50%, rgba(168,137,45,.93) 100%),
        url('/images/traveler-map.jpg') center/cover no-repeat;
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--navy);
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(13,27,62,.75);
    font-size: 15px;
    margin-bottom: 28px;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-light::after { background: var(--light); }

.page-hero h1 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    max-width: 560px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.5); }
.breadcrumb .current { color: rgba(255,255,255,.8); }

/* ── Contact Cards ───────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1.5px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact-card-icon.navy { background: var(--navy); }
.contact-card-icon.gold { background: var(--gold); }
.contact-card-icon.teal { background: var(--teal); }
.contact-card-icon.wa { background: #25d366; }

.contact-card-body h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 6px;
}
.contact-card-body p, .contact-card-body a {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-card-body a:hover { color: var(--gold); }

/* Enquiry Form */
.enquiry-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--light-gray);
}

.enquiry-box h3 {
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--gray);
}

.form-control {
    padding: 12px 16px;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,77,.15);
}

textarea.form-control { resize: vertical; min-height: 110px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: #060f22;
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}

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

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 280px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none;
}
.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links li { margin-bottom: 9px; }
.footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(255,255,255,.4);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── WhatsApp Float Button ───────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25d366;
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: var(--transition);
    text-decoration: none;
}

.wa-float:hover {
    background: #1dba57;
    transform: scale(1.1);
}

.wa-float-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(37,211,102,.3);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0; }
}

/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip {
    background: var(--gold);
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(13,27,62,.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Testimonial ─────────────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1.5px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.testimonial-card p {
    font-size: 14px;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}
.author-info strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
}
.author-info span { font-size: 12px; color: var(--gray); }

/* ── Named Layout Grids (replaces inline styles) ─────────── */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.grid-service-block:last-child { margin-bottom: 0; }

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

.grid-enquiry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(200,169,77,.25);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
}

.stat-box-val {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.stat-box-label {
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-2col,
    .grid-service-block { gap: 40px; }
    .grid-enquiry { gap: 28px; }
}

@media (max-width: 768px) {
    .navbar-inner { height: 68px; display: flex; justify-content: space-between; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: fixed;
        top: 68px; left: 0; right: 0;
        height: calc(100vh - 68px);
        background: rgba(8,15,42,.98);
        padding: 28px 20px 40px;
        gap: 6px;
        z-index: 1100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        animation: drawerIn .25s ease;
    }

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

    .nav-links.open li { width: 100%; }

    .nav-links.open a {
        font-size: 16px;
        font-weight: 600;
        padding: 15px 20px;
        border-radius: 10px;
        color: rgba(255,255,255,.80);
        border: 1px solid rgba(255,255,255,.07);
        background: rgba(255,255,255,.04);
        display: block;
    }

    .nav-links.open a::after { display: none; }

    .nav-links.open a:hover,
    .nav-links.open a.active {
        background: rgba(200,169,77,.12);
        color: var(--gold-light);
        border-color: rgba(200,169,77,.22);
    }

    /* WhatsApp item inside drawer */
    .nav-links.open .nav-wa-item { display: block; margin-top: 12px; }
    .nav-links.open .nav-wa-item .btn-wa {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 10px;
    }

    /* Desktop nav-cta stays visible; on mobile it's already display:none */
    .nav-cta.open { display: none; }

    .search-inline { flex-wrap: wrap; }
    .search-input { flex: 1 1 calc(50% - 8px); }
    .search-input.search-input-sm,
    .search-input.search-input-xs { flex: 1 1 calc(50% - 8px); }
    .search-submit-btn { flex: 1 1 100%; }

    .services-grid,
    .packages-grid { grid-template-columns: 1fr; }

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

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

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

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

    .footer-bottom { flex-direction: column; text-align: center; }

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

    .grid-2col,
    .grid-service-block,
    .grid-enquiry {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .grid-service-block { margin-bottom: 48px; }

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

    .page-hero { padding: 104px 0 44px; }

    .enquiry-box { padding: 28px 24px; }

    .stat-box { padding: 24px 16px; }

    .footer-brand p { max-width: 100%; }

    .why-stats-col { display: none; }

}

@media (max-width: 480px) {
    .section { padding: 56px 0; }
    .search-tabs { flex-wrap: wrap; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .filter-bar { gap: 8px; }
    .grid-3col { grid-template-columns: 1fr; }
    .grid-service-block { margin-bottom: 36px; }
    .enquiry-box { padding: 22px 18px; }
    .page-hero { padding: 90px 0 36px; }
    .hero-content { padding: 96px 0 40px; }
    .search-input { flex: 1 1 calc(50% - 4px); }
    .pkg-img { height: 180px; }
    .filter-btn { padding: 7px 14px; font-size: 12px; }
}

@media (max-width: 360px) {
    .container { padding: 0 14px; }
    .logo-text span { display: none; }
    .logo-icon { width: 38px; height: 38px; font-size: 19px; border-radius: 9px; }
    .logo-text strong { font-size: 14px; }
    .hero-content { padding: 88px 0 32px; }
    .page-hero { padding: 85px 0 30px; }
    .btn-lg { padding: 13px 22px; font-size: 14px; }
    .stat-box { padding: 18px 10px; }
    .stat-box-val { font-size: clamp(24px, 8vw, 36px); }
    .enquiry-box { padding: 18px 14px; }
    .contact-card { padding: 22px 18px; }
    .search-input { flex: 1 1 100%; }
    .search-input.search-input-sm,
    .search-input.search-input-xs { flex: 1 1 100%; }
    .pkg-img { height: 160px; }
    .section { padding: 44px 0; }
    .wa-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 16px; }
}

/* ══════════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════════ */

.gallery-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.gallery-filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.gallery-section-header { margin-bottom: 28px; }

/* ── Photo Grid ─────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 72px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4 / 3;
    background: var(--navy);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gallery-caption-text {
    color: var(--white);
    font-size: 12.5px;
    font-weight: 600;
}

.gallery-zoom-icon { font-size: 16px; }

/* ── YouTube Video Grid ─────────────────────────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--light-gray);
    transition: var(--transition);
}

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

.video-embed-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: var(--navy);
}

.yt-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: var(--navy);
}

.yt-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter .3s ease;
}

.yt-facade:hover .yt-thumbnail { filter: brightness(.82); }

.yt-thumbnail-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgba(255,255,255,.2);
}

.yt-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(220,0,0,.9);
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .22s ease, background .22s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
    pointer-events: none;
}

.yt-facade:hover .yt-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    background: rgba(220,0,0,1);
}

.yt-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-body { padding: 18px 20px; }

.video-card-body h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.video-location {
    font-size: 12.5px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.video-card-body > p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    animation: lbFadeIn .2s ease;
}

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

.lightbox-img {
    max-width: 92vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.lightbox-close {
    position: absolute;
    top: 18px; right: 22px;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.lightbox-close:hover { background: rgba(255,255,255,.25); }

.lightbox-caption {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
}

/* ── Gallery Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .video-grid { grid-template-columns: 1fr; }
    .gallery-grid { margin-bottom: 48px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .yt-play-btn { width: 48px; height: 48px; }
}

@media (max-width: 360px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SERVICE IMAGE PANELS  (replaces gradient+emoji blocks)
══════════════════════════════════════════════════════════ */
.service-img-panel {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,27,62,.30) 0%, rgba(13,27,62,.82) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    gap: 8px;
}

.service-img-icon {
    font-size: 72px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.45));
    margin-bottom: 8px;
    line-height: 1;
}

.service-img-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.service-img-subtitle {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .service-img-panel { min-height: 260px; }
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US – DESTINATION PHOTO CARD
══════════════════════════════════════════════════════════ */
.why-dest-photo {
    border-radius: var(--radius);
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.why-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(13,27,62,.88) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    text-align: center;
    gap: 4px;
}

.why-dest-overlay .dest-icon { font-size: 26px; line-height: 1; }

.why-dest-overlay strong {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
}

/* ══════════════════════════════════════════════════════════
   UMRAH PACKAGES  – Featured Section
══════════════════════════════════════════════════════════ */

/* Umrah filter button — distinct gold-green style */
.filter-btn-umrah {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a1a 100%) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    font-weight: 700;
}
.filter-btn-umrah:hover,
.filter-btn-umrah.active {
    background: linear-gradient(135deg, #1e4d1e 0%, #2a5a2a 100%) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

/* Umrah featured banner */
.umrah-feature-banner {
    background:
        linear-gradient(135deg, rgba(13,27,62,.92) 0%, rgba(10,40,10,.88) 60%, rgba(13,27,62,.92) 100%),
        url('/images/mecca-kaaba.jpg') center/cover no-repeat;
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.umrah-banner-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    align-items: stretch;
    min-height: 360px;
}

.umrah-banner-text {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.umrah-banner-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.umrah-banner-img-main {
    background-size: cover;
    background-position: center;
    grid-row: span 2;
    grid-column: 1;
}

.umrah-banner-imgs > .umrah-banner-img-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-column: 2;
}

.umrah-banner-imgs > .umrah-banner-img-side > div {
    background-size: cover;
    background-position: center;
}

/* Umrah cards section */
.umrah-cards-section {
    margin-bottom: 0;
}

/* Umrah card badge override */
.pkg-badge-umrah {
    background: linear-gradient(135deg, #1a5c1a, #2d7a2d) !important;
    color: var(--gold) !important;
}

/* Umrah card top border accent */
.pkg-card-umrah {
    border-top: 3px solid var(--gold);
}

@media (max-width: 900px) {
    .umrah-banner-inner {
        grid-template-columns: 1fr;
    }
    .umrah-banner-imgs {
        height: 200px;
    }
    .umrah-banner-text {
        padding: 36px 28px;
    }
}

@media (max-width: 600px) {
    .umrah-banner-imgs {
        height: 160px;
    }
    .umrah-banner-text {
        padding: 28px 20px;
    }
}

/* ══════════════════════════════════════════════════════════
   UMRAH PAGE
══════════════════════════════════════════════════════════ */

/* Nav link accent */
.nav-umrah-link { color: var(--gold) !important; font-weight: 700; }

/* Hero extras */
.umrah-hero .breadcrumb a,
.umrah-hero .breadcrumb span { color: rgba(255,255,255,.65); }
.umrah-hero .breadcrumb .current { color: var(--gold); }

.umrah-hero-badge {
    display: inline-block;
    background: rgba(200,169,77,.18);
    border: 1px solid rgba(200,169,77,.45);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: .5px;
}

.umrah-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.umrah-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 44px;
    flex-wrap: wrap;
    gap: 0;
}

.umrah-stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}

.umrah-stat:first-child { padding-left: 0; }

.umrah-stat strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.umrah-stat span {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
    margin-top: 3px;
}

.umrah-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}

/* Why grid */
.umrah-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.umrah-why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

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

.umrah-why-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.umrah-why-card h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

.umrah-why-card p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Includes grid */
.umrah-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.umrah-include-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.umrah-include-icon {
    font-size: 30px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.umrah-include-item strong {
    display: block;
    color: var(--white);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 5px;
}

.umrah-include-item p {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Itinerary layout */
.umrah-itinerary-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.umrah-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.umrah-timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

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

.umrah-timeline-day {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding-top: 3px;
    white-space: nowrap;
}

.umrah-timeline-body strong {
    display: block;
    font-size: 14.5px;
    color: var(--dark);
    margin-bottom: 6px;
}

.umrah-timeline-body p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.umrah-itinerary-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 90px;
}

.umrah-itinerary-img {
    height: 220px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.umrah-itinerary-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,27,62,.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 20px;
}

.umrah-itinerary-img-overlay p {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    font-family: 'Poppins', sans-serif;
}

.umrah-itinerary-img-overlay span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
}

/* FAQ */
.umrah-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.umrah-faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
}

.umrah-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    transition: color .2s;
}

.umrah-faq-q:hover { color: var(--gold-dark); }

.faq-chevron {
    font-size: 11px;
    color: var(--gray);
    flex-shrink: 0;
    transition: transform .25s ease;
}

.faq-open .faq-chevron { transform: rotate(180deg); }

.umrah-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.umrah-faq-a p {
    padding: 0 20px 18px;
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.75;
    margin: 0;
}

/* CTA banner */
.umrah-cta-banner {
    background:
        linear-gradient(135deg, rgba(5,20,5,.92) 0%, rgba(13,27,62,.90) 50%, rgba(5,20,5,.92) 100%),
        url('/images/mecca-kaaba.jpg') center/cover no-repeat;
    padding: 80px 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .umrah-why-grid      { grid-template-columns: repeat(2, 1fr); }
    .umrah-includes-grid { grid-template-columns: repeat(2, 1fr); }
    .umrah-itinerary-layout { grid-template-columns: 1fr; }
    .umrah-itinerary-img-col { flex-direction: row; position: static; }
    .umrah-itinerary-img { flex: 1; }
}

@media (max-width: 768px) {
    .umrah-why-grid      { grid-template-columns: 1fr; }
    .umrah-includes-grid { grid-template-columns: 1fr; }
    .umrah-faq-grid      { grid-template-columns: 1fr; }
    .umrah-hero-stats    { gap: 8px; }
    .umrah-stat          { padding: 0 16px; }
    .umrah-stat strong   { font-size: 20px; }
    .umrah-itinerary-img-col { flex-direction: column; }
}

@media (max-width: 480px) {
    .umrah-hero-actions  { flex-direction: column; }
    .umrah-stat-div      { display: none; }
    .umrah-hero-stats    { gap: 20px; flex-direction: column; align-items: flex-start; }
    .umrah-stat          { padding: 0; }
    .umrah-timeline-item { grid-template-columns: 70px 1fr; gap: 12px; }
}