/* =====================================================================
   Nusuk Travels — Main Stylesheet
   Palette: Ihram Cream / Midnight Teal / Antique Gold / Kiswah Black
   ===================================================================== */

:root {
    --cream: #F4EFE6;
    --teal: #0B2E2A;
    --teal-700: #0e3a35;
    --teal-300: #1f5b53;
    --gold: #C8A24B;
    --gold-dark: #a9853a;
    --gold-light: #ddc081;
    --black: #16110D;
    --white: #ffffff;
    --muted: #6b6256;
    --line: rgba(22, 17, 13, 0.10);
    --shadow-sm: 0 2px 8px rgba(22, 17, 13, .08);
    --shadow-md: 0 10px 30px rgba(22, 17, 13, .12);
    --shadow-lg: 0 20px 50px rgba(22, 17, 13, .18);

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-arabic: 'Noto Naskh Arabic', serif;

    --radius: 14px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --container: 1240px;
    --topbar-h: 42px;
    --header-h: 76px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------------------------------------------ base */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    background: var(--cream);
    overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--teal);
    line-height: 1.18;
    margin: 0 0 .5em;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-teal { background: var(--teal); color: var(--cream); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: var(--cream); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* Arabic decorative accent */
.arabic { font-family: var(--font-arabic); }

/* ------------------------------------------------------------- headings */
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head--left { margin-inline: 0; text-align: left; }
.divider-gold { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px auto 0; }
.section-head--left .divider-gold { margin-inline: 0; }

/* ------------------------------------------------------------- buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-teal { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-700); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: var(--cream); color: var(--teal); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--cream); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* --------------------------------------------------------------- topbar */
.topbar {
    background: var(--teal);
    color: var(--cream);
    font-size: 13px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--gold); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item i { color: var(--gold); }
.topbar__socials { display: inline-flex; gap: 13px; font-size: 14px; }

/* --------------------------------------------------------------- header */
.header {
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: var(--transition);
    border-bottom: 1px solid var(--line);
}
.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(22,17,13,.10);
    border-bottom-color: transparent;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; transition: height var(--transition); }
.header.scrolled .header__inner { height: 62px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--teal); }
/* Logo image — sized by height, width auto-preserves the source ratio
   (works for a ~3:2 / 1985×1322 source without distortion). */
.logo img { height: 54px; width: auto; max-width: 200px; object-fit: contain; display: block; transition: height var(--transition); }
.header.scrolled .logo img { height: 44px; }
.logo__mark { width: 42px; height: 42px; background: var(--gold); color: var(--black); border-radius: 12px; display: grid; place-items: center; font-size: 20px; }
.header.scrolled .logo, .header.scrolled .logo__text { color: var(--teal); }
.logo__sub { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
    position: relative;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--black);
    border-radius: var(--radius-sm);
}
.header.scrolled .nav__link { color: var(--black); }
.nav__link:hover, .nav__link.active { color: var(--gold-dark); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link.active { color: var(--gold-dark); }
.nav__link.active::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--gold); border-radius: 2px;
}
.nav__item { position: relative; }
.nav__item--dropdown > .nav__link i { font-size: 11px; margin-left: 3px; }
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); min-width: 240px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: var(--transition); z-index: 950;
    border: 1px solid var(--line);
}
.nav__item--dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--black); font-size: 14px; }
.dropdown a:hover { background: var(--cream); color: var(--teal); }
.dropdown a i { color: var(--gold-dark); width: 18px; text-align: center; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; font-size: 24px; color: var(--teal); }
.header.scrolled .hamburger { color: var(--teal); }

/* ------------------------------------------------- mobile drawer menu */
.drawer {
    position: fixed; inset: 0; z-index: 1100;
    background: var(--teal); color: var(--cream);
    transform: translateX(100%); transition: transform var(--transition);
    display: flex; flex-direction: column; padding: 24px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.drawer__close { background: none; border: 0; color: var(--cream); font-size: 28px; cursor: pointer; }
.drawer__nav a { display: block; padding: 16px 0; font-size: 20px; font-family: var(--font-display); color: var(--cream); border-bottom: 1px solid rgba(244,239,230,.12); }
.drawer__nav a:hover { color: var(--gold); padding-left: 6px; }
.drawer__cta { margin-top: 24px; }
.drawer__contact { margin-top: auto; padding-top: 24px; font-size: 14px; color: var(--gold-light); }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; }
.hero__slide {
    position: relative; height: clamp(540px, 78vh, 780px);
    display: flex; align-items: center;
    background-size: cover; background-position: center;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,46,42,.92) 0%, rgba(11,46,42,.62) 50%, rgba(22,17,13,.45) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 680px; color: var(--cream); }
.hero__arabic { font-family: var(--font-arabic); color: var(--gold); font-size: 26px; margin-bottom: 14px; opacity: .95; }
.hero__title { color: var(--cream); font-size: clamp(2.2rem, 5.2vw, 3.5rem); margin-bottom: 16px; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(244,239,230,.9); margin-bottom: 28px; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .swiper-button-next, .hero .swiper-button-prev { color: var(--gold); }
.hero .swiper-pagination-bullet { background: var(--cream); opacity: .6; }
.hero .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.cards-swiper .swiper-pagination-bullet { background: var(--teal); opacity: .35; width: 8px; height: 8px; }
.cards-swiper .swiper-pagination-bullet-active { background: var(--teal); opacity: 1; width: 22px; border-radius: 4px; }

/* quick enquiry bar under hero */
.quickbar { position: relative; z-index: 5; margin-top: -46px; }
.quickbar__inner {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 22px; display: grid; gap: 14px; grid-template-columns: repeat(5, 1fr);
    align-items: end; border-top: 4px solid var(--gold);
}
.quickbar__field { display: flex; flex-direction: column; gap: 6px; }
.quickbar__field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* ----------------------------------------------------------- trust bar */
.trustbar { background: var(--white); border-bottom: 1px solid var(--line); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.trust { text-align: center; }
.trust__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; }
.trust__num .text-gold { color: var(--gold); }
.trust__label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.trust i { color: var(--gold); font-size: 1.8rem; }

/* -------------------------------------------------------- category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
    display: flex; flex-direction: column; align-items: center; height: 100%;
    background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center;
    border: 1px solid var(--line); transition: var(--transition); position: relative; overflow: hidden;
}
.cat-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gold); transform: scaleX(0); transition: var(--transition); transform-origin: left; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon { width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; font-size: 28px; line-height: 1; border: 1px solid rgba(200,162,75,.3); transition: var(--transition); }
.cat-card__icon i { display: inline-block; }
.cat-card:hover .cat-card__icon { background: var(--teal); color: var(--gold); }
.cat-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.cat-card__count { font-size: 13px; color: var(--muted); }
/* Icon-only cards centre their content; image cards keep the banner at the top */
.cat-card:not(.cat-card--img) { justify-content: center; }
/* Category card with an uploaded image: full-bleed banner + overlapping icon */
.cat-card--img { padding-top: 0; }
.cat-card__img { width: calc(100% + 40px); margin: 0 -20px; aspect-ratio: 3/2; overflow: hidden; }
.cat-card__img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: var(--transition); background: var(--cream); }
.cat-card--img:hover .cat-card__img img { transform: scale(1.06); }
.cat-card--img .cat-card__icon { margin: -50px auto 16px; border: 3px solid var(--white); background: var(--white); position: relative; z-index: 2; box-shadow: var(--shadow-sm); }

/* ------------------------------------------------------- package cards */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pkg-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pkg-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column;
    border: 1px solid var(--line); height: 100%;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-card__media { position: relative; aspect-ratio: 10 / 7; overflow: hidden; }
/* Inside a Swiper carousel use a fixed height instead of aspect-ratio to avoid
   the resize-observer feedback loop (see gallery note). */
.swiper-slide .pkg-card__media { aspect-ratio: auto; height: 210px; }
.pkg-card__media a { display: block; width: 100%; height: 100%; }
.pkg-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.pkg-card:hover .pkg-card__media img { transform: scale(1.06); }
.pkg-card__badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--black); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .04em; }
.pkg-card__cat { position: absolute; bottom: 14px; left: 14px; background: rgba(11,46,42,.85); color: var(--cream); font-size: 12px; padding: 5px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }
.pkg-card__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-card__title { font-size: 1.2rem; margin: 0; }
.pkg-card__title a { color: var(--teal); }
.pkg-card__title a:hover { color: var(--gold-dark); }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); }
.pkg-meta span { display: inline-flex; align-items: center; gap: 6px; }
.pkg-meta i { color: var(--gold-dark); }
.pkg-hotels { font-size: 13px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 12px; }
.pkg-hotels strong { color: var(--black); font-weight: 600; }
.pkg-stars { color: var(--gold); font-size: 12px; }
.pkg-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 8px; }
.pkg-price small { display: block; font-size: 12px; color: var(--muted); }
.pkg-price__amount { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--teal); line-height: 1; }
.pkg-price__old { font-size: 14px; color: #b0392f; text-decoration: line-through; margin-left: 6px; }
.pkg-card__actions { display: flex; gap: 8px; }

/* horizontal carousel cards keep equal height inside swiper */
.swiper-slide .pkg-card { height: auto; }

/* ------------------------------------------------------- why choose us */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.why__img img { width: 100%; aspect-ratio: 4/3; object-fit: contain; display: block; background: var(--cream); }
.why__points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-point { display: flex; gap: 14px; }
.why-point__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; font-size: 20px; }
.why-point h4 { margin: 0 0 4px; font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; color: var(--teal); }
.why-point p { margin: 0; font-size: 14px; color: var(--muted); }
.bg-teal .why-point__icon { background: rgba(200,162,75,.18); color: var(--gold); }
.bg-teal .why-point h4 { color: var(--cream); }
.bg-teal .why-point p { color: rgba(244,239,230,.75); }

/* ------------------------------------------------------------ how works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; position: relative; }
.step__num { width: 70px; height: 70px; margin: 0 auto 16px; border-radius: 50%; background: var(--teal); color: var(--gold); display: grid; place-items: center; font-size: 26px; position: relative; z-index: 2; }
.step h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }
.step__count { position: absolute; top: -8px; right: calc(50% - 50px); background: var(--gold); color: var(--black); width: 26px; height: 26px; border-radius: 50%; font-size: 13px; font-weight: 700; display: grid; place-items: center; z-index: 3; }

/* ---------------------------------------------------------------- blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; border: 1px solid var(--line); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card__media { aspect-ratio: 1200/630; overflow: hidden; }
.blog-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .5s; background: var(--cream); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { font-size: 12px; color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.blog-card__title { font-size: 1.2rem; margin: 0; }
.blog-card__excerpt { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.read-more { font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ----------------------------------------------------------- accordion */
.accordion { max-width: 860px; margin: 0 auto; }
.acc-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-size: 1.05rem; font-weight: 600; color: var(--teal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body); }
.acc-q i { color: var(--gold-dark); transition: transform var(--transition); flex: 0 0 auto; }
.acc-item.open .acc-q i { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.acc-a__inner { padding: 0 22px 20px; color: var(--muted); }

/* ------------------------------------------------------------- reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.review-card__stars { color: var(--gold); margin-bottom: 12px; }
.review-card__text { font-style: italic; color: #4a4339; margin-bottom: 18px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: var(--gold); display: grid; place-items: center; font-weight: 700; }
.review-card__name { font-weight: 700; color: var(--teal); }
.review-card__role { font-size: 13px; color: var(--muted); }

/* ---------------------------------------------------------------- forms */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.form-label .req { color: #b0392f; }
.form-control {
    width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 15px;
    border: 1px solid rgba(22,17,13,.18); border-radius: var(--radius-sm); background: var(--white);
    color: var(--black); transition: var(--transition);
}
.form-control:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,75,.18); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-control.is-invalid { border-color: #b0392f; }
.field-error { color: #b0392f; font-size: 13px; margin-top: 5px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.captcha-row { display: flex; align-items: flex-end; gap: 12px; }
.captcha-row .form-group { flex: 1; margin-bottom: 0; }
.captcha-refresh { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); width: 48px; height: 48px; cursor: pointer; color: var(--teal); font-size: 16px; flex: 0 0 auto; }
.captcha-refresh:hover { background: var(--teal); color: var(--gold); }

/* form card / enquiry panels */
.form-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); border-top: 4px solid var(--gold); }
.form-card--dark { background: var(--teal-700); color: var(--cream); }
.form-card--dark .form-label { color: var(--cream); }
.form-card--dark .form-control { background: rgba(244,239,230,.96); }

/* ------------------------------------------------------------- alerts */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e7f3ec; color: #1d6b3f; border: 1px solid #b7ddc5; }
.alert-error { background: #fbeceb; color: #97352c; border: 1px solid #f0c4bf; }
.alert-info { background: #eaf1f5; color: #2a566b; border: 1px solid #c2d6e0; }

/* ------------------------------------------------------------ breadcrumb */
.breadcrumb { background: var(--teal); color: var(--cream); padding: 56px 0 40px; }
.breadcrumb h1 { color: var(--cream); margin-bottom: 8px; }
.breadcrumb__trail { font-size: 14px; color: rgba(244,239,230,.8); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb__trail a { color: var(--gold-light); }
.breadcrumb__trail a:hover { color: var(--gold); }
.breadcrumb__trail i { font-size: 10px; opacity: .6; }

/* ----------------------------------------------------- page detail bits */
.page-content h2 { margin-top: 1.6em; }
.page-content ul { padding-left: 20px; }
.page-content li { margin-bottom: 8px; }

/* package detail */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.detail-grid--plan { grid-template-columns: 1fr 1.1fr; }
.detail-grid--contact { grid-template-columns: 1fr 1fr; }
/* Package gallery — plain CSS, no carousel library (reliable sizing). */
.pkg-gallery { width: 100%; max-width: 100%; }
.pkg-gallery__main {
    width: 100%; height: clamp(260px, 42vw, 470px);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.pkg-gallery__main img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pkg-gallery__thumbs {
    margin-top: 12px; display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px;
}
.pkg-gallery__thumb {
    padding: 0; border: 0; background: none; cursor: pointer;
    border-radius: var(--radius-sm); overflow: hidden; line-height: 0;
    outline: 3px solid transparent; transition: outline-color .15s ease;
}
.pkg-gallery__thumb img { display: block; width: 100%; height: 72px; object-fit: contain; background: var(--cream); }
.pkg-gallery__thumb:hover { outline-color: rgba(200,162,75,.5); }
.pkg-gallery__thumb.is-active { outline-color: var(--gold); }
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--line); margin: 32px 0 20px; flex-wrap: wrap; }
.tab-btn { background: none; border: 0; padding: 12px 20px; font-size: 15px; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; font-family: var(--font-body); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.incl-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.incl-list li { display: flex; gap: 10px; align-items: flex-start; }
.incl-list .yes { color: #1d6b3f; }
.incl-list .no { color: #b0392f; }
.sidebar-box { position: sticky; top: calc(var(--header-h) + 16px); }
.price-tag { background: var(--teal); color: var(--cream); border-radius: var(--radius); padding: 22px; text-align: center; margin-bottom: 18px; }
.price-tag__amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.price-tag small { color: rgba(244,239,230,.8); }

.hotel-card { display: flex; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--white); }
.hotel-card__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; font-size: 22px; flex: 0 0 auto; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--black); color: rgba(244,239,230,.72); padding: 64px 0 0; font-size: 14px; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer a { color: rgba(244,239,230,.72); }
.footer a:hover { color: var(--gold); }
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__links a { display: inline-flex; align-items: center; gap: 8px; }
.footer__links i { color: var(--gold-dark); font-size: 11px; }
.footer__logo { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--cream); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo img { height: 76px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.footer__tagline { margin-bottom: 18px; max-width: 320px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(244,239,230,.08); display: grid; place-items: center; color: var(--cream); }
.footer__socials a:hover { background: var(--gold); color: var(--black); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; }
.footer__contact i { color: var(--gold); margin-top: 4px; }
.footer__bottom { margin-top: 52px; border-top: 1px solid rgba(244,239,230,.1); padding: 22px 0; }
.footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; font-size: 13px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* ------------------------------------------------- floating action buttons */
.wa-float,
.phone-float {
    position: fixed; bottom: 22px; z-index: 800;
    width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center; font-size: 26px;
    box-shadow: var(--shadow-lg); transition: var(--transition);
    text-decoration: none;
}
.wa-float { right: 22px; background: var(--gold); color: var(--black); animation: fab-pulse 2.4s infinite; }
.wa-float:hover { background: var(--gold-dark); color: var(--white); transform: scale(1.08); }
.phone-float { left: 22px; background: var(--teal); color: var(--cream); animation: fab-pulse 2.4s 1.2s infinite; }
.phone-float:hover { background: var(--teal-700); color: var(--white); transform: scale(1.08); }
@keyframes fab-pulse { 0% { box-shadow: 0 0 0 0 rgba(200,162,75,.5); } 70% { box-shadow: 0 0 0 14px rgba(200,162,75,0); } 100% { box-shadow: 0 0 0 0 rgba(200,162,75,0); } }

/* --------------------------------------------------------------- popup */
.modal-overlay { position: fixed; inset: 0; z-index: 1200; background: rgba(22,17,13,.8); display: none; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity var(--transition); overflow: hidden; }
.modal-overlay.show { display: flex; opacity: 1; }
.modal {
    background: var(--white); border-radius: var(--radius); max-width: 860px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(.98); transition: transform var(--transition); position: relative;
}
.modal-overlay.show .modal { transform: none; }
.modal__media { background-size: cover; background-position: center; min-height: 360px; position: relative; }
.modal__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,46,42,.5), transparent); }
.modal__body { padding: 36px 34px; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.85); border: 0; font-size: 18px; cursor: pointer; z-index: 3; color: var(--black); }
.modal__close:hover { background: var(--gold); }
.modal__eyebrow { color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.modal__price { font-family: var(--font-display); font-size: 1.8rem; color: var(--teal); font-weight: 800; margin: 6px 0 16px; }
.modal__mobile-banner { display: none; }

/* --------------------------------------------------------- cookie banner */
.cookie-banner {
    position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1150;
    background: var(--teal); color: var(--cream); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center;
    gap: 18px; transform: translateY(140%); transition: transform .45s ease; border: 1px solid rgba(200,162,75,.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }

/* ----------------------------------------------------- remove number arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }

/* ---------------------------------------------------------------- misc */
.ramadan-section { position: relative; overflow: hidden; }
.ramadan-section::before { content: '\f186'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -30px; top: -30px; font-size: 220px; color: rgba(200,162,75,.06); }
.filter-bar { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 30px; border: 1px solid var(--line); }
.filter-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; }

.scroll-row {
    display: flex; gap: 24px; overflow-x: auto; padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    /* Firefox slim custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
.scroll-row > * { flex: 0 0 340px; scroll-snap-align: start; }
/* WebKit slim custom scrollbar */
.scroll-row::-webkit-scrollbar { height: 6px; }
.scroll-row::-webkit-scrollbar-track { background: rgba(11,46,42,.08); border-radius: 100px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 100px; }
.scroll-row::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

.tag-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); color: var(--teal); padding: 5px 12px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }

[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
