/* =====================================================================
   Airlight Travel - Design System
   To re-theme to your logo: change the brand colors in :root below.
   --brand        = deep brand color (nav, footer, dark sections)
   --accent       = primary accent (links, buttons, highlights)
   --gold         = premium highlight (used only for ratings / awards)
   ===================================================================== */

:root {
  /* Brand palette - sampled from the Airlight Travel logo */
  --brand:        #130857;   /* deep indigo navy (logo) */
  --brand-700:    #1a0c6e;
  --brand-600:    #271585;
  --accent:       #a71c21;   /* crimson red (logo) */
  --accent-600:   #871318;
  --accent-50:    #fbeaeb;
  --accent-light: #ff6b70;   /* lightened red for accents on dark backgrounds */
  --gold:         #e0a93b;   /* ratings / awards only */

  /* Neutrals */
  --ink:          #0c1a28;
  --body:         #475569;
  --muted:        #6b7c8f;
  --line:         #e4e9ef;
  --bg:           #ffffff;
  --bg-soft:      #f6f9fc;
  --bg-softer:    #eef3f8;
  --white:        #ffffff;

  /* Type */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 2px 10px rgba(10, 37, 64, .06);
  --shadow:    0 14px 40px rgba(10, 37, 64, .10);
  --shadow-lg: 0 30px 70px rgba(10, 37, 64, .16);

  --maxw: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ----- Layout helpers ----- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--brand { background: var(--brand); color: #cdd9e6; }
.section--brand h2, .section--brand h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section--brand .eyebrow { color: var(--accent-light); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--body); }
.section--brand .section-head p { color: #b6c5d6; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(167,28,33,.32); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(167,28,33,.42); }
.btn--primary:active { transform: translateY(0) scale(.98); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--dark { background: var(--brand); color: #fff; }
.btn--dark:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn--light { background:#fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===================================================================
   Top bar + Navigation
   =================================================================== */
.topbar {
  background: var(--brand);
  color: #aab9c9;
  font-size: 13.5px;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 42px; }
.topbar a { color: #cdd9e6; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item i { color: var(--accent-light); font-size: 15px; }
.topbar .tb-social { display: flex; gap: 14px; }
.topbar .tb-social i { font-size: 16px; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 46px; width: auto; display: block; }
.footer .brand img { height: 50px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--brand);
  padding: 10px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--accent); background: var(--accent-50); }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a i { font-size: 14px; transition: transform .25s; }
.has-drop:hover > a i { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 10px; font-size: 14.5px; color: var(--ink); font-weight: 500; transition: background .18s, color .18s; }
.drop a i { color: var(--accent); font-size: 18px; }
.drop a:hover { background: var(--accent-50); color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; font-size: 28px; color: var(--brand); padding: 4px; }

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--brand); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,24,40,.92) 0%, rgba(8,24,40,.7) 42%, rgba(8,24,40,.32) 100%);
}
.hero .wrap { padding-top: 70px; padding-bottom: 70px; }
.hero__inner { max-width: 660px; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em; margin-bottom: 24px;
}
.hero .tag i { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(38px, 6vw, 66px); line-height: 1.04; }
.hero h1 .hl { color: var(--accent-light); }
.hero p { margin-top: 22px; font-size: 19px; color: #d7e2ee; max-width: 540px; }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta { margin-top: 40px; display: flex; gap: 30px; flex-wrap: wrap; }
.hero__meta .m { display: flex; align-items: center; gap: 11px; }
.hero__meta .m i { font-size: 26px; color: var(--accent-light); }
.hero__meta .m b { display: block; font-family: var(--font-display); font-size: 20px; color: #fff; line-height: 1; }
.hero__meta .m span { font-size: 13.5px; color: #aebfce; }

/* ===================================================================
   Stats strip
   =================================================================== */
.stats { margin-top: 70px; position: relative; z-index: 5; }
.stats__grid {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { padding: 36px 28px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat i { font-size: 30px; color: var(--accent); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--ink); line-height: 1; margin: 12px 0 6px; }
.stat .lbl { font-size: 14.5px; color: var(--muted); }

/* ===================================================================
   About teaser (split)
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.about-media { position: relative; }
.about-media .img-main { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-media .img-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff;
  border-radius: var(--r); box-shadow: var(--shadow); padding: 20px 24px; display: flex; gap: 14px; align-items: center;
}
.about-media .img-badge i { font-size: 34px; color: var(--gold); }
.about-media .img-badge b { font-family: var(--font-display); font-size: 26px; color: var(--ink); display: block; line-height: 1; }
.about-media .img-badge span { font-size: 13px; color: var(--muted); }

.ticklist { margin: 26px 0 32px; display: grid; gap: 14px; }
.ticklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.ticklist li i { color: var(--accent); font-size: 21px; flex: none; margin-top: 1px; }

/* ===================================================================
   Services (asymmetric grid)
   =================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc .ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; font-size: 30px; color: var(--accent); background: var(--accent-50); margin-bottom: 20px; transition: background .3s, color .3s; }
.svc:hover .ic { background: var(--accent); color: #fff; }
.svc h3 { font-size: 21px; margin-bottom: 10px; }
.svc p { font-size: 15px; }
.svc .more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 600; font-family: var(--font-display); font-size: 14.5px; }
.svc .more i { transition: transform .25s; }
.svc:hover .more i { transform: translateX(4px); }
/* spans: 5 services -> feature first one wide */
.svc--wide { grid-column: span 3; }
.svc--reg { grid-column: span 3; }
.svc--third { grid-column: span 2; }
.svc--feature {
  grid-column: span 3; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent-600));
  border-color: transparent;
}
.svc--feature h3, .svc--feature p { color: #fff; }
.svc--feature p { color: #d7e6f2; }
.svc--feature .ic { background: rgba(255,255,255,.16); color: #fff; }
.svc--feature .more { color: #fff; }

/* ===================================================================
   Destination cards
   =================================================================== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(135deg, var(--brand), var(--accent)); }
.dest__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest:hover .dest__bg img { transform: scale(1.07); }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(8,24,40,.86) 6%, rgba(8,24,40,.18) 60%, rgba(8,24,40,.05)); }
.dest__body { padding: 26px; width: 100%; }
.dest__body .place { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #cfe0ee; }
.dest__body h3 { color: #fff; font-size: 25px; margin: 6px 0 4px; }
.dest__body .trips { font-size: 14px; color: #b9cadb; }
.dest--tall { grid-row: span 2; min-height: 100%; }

/* ===================================================================
   Tours / packages cards
   =================================================================== */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour__img { position: relative; aspect-ratio: 16/11; background: linear-gradient(135deg, var(--brand), var(--accent)); overflow: hidden; }
.tour__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tour:hover .tour__img img { transform: scale(1.06); }
.tour__dur { position: absolute; top: 14px; left: 14px; background: rgba(8,24,40,.78); color: #fff; font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); display: inline-flex; gap: 6px; align-items: center; }
.tour__tag { position: absolute; top: 14px; right: 14px; background: var(--gold); color: #3b2c08; font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.tour__body { padding: 22px 22px 0; flex: 1; }
.tour__body .place { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--accent); font-weight: 600; }
.tour__body h3 { font-size: 20px; margin: 8px 0 10px; color: var(--ink); }
.tour__body p { font-size: 14.5px; }
.tour__rating { display: flex; gap: 3px; color: var(--gold); font-size: 15px; margin-top: 14px; align-items: center; }
.tour__rating span { color: var(--muted); font-size: 13px; margin-left: 6px; font-family: var(--font-body); }
.tour__foot { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; margin-top: 18px; border-top: 1px solid var(--line); }
.tour__price small { font-size: 12px; color: var(--muted); display: block; }
.tour__price b { font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.tour__price b span { font-size: 13px; color: var(--muted); font-weight: 500; }
.tour__foot .btn { padding: 10px 18px; font-size: 14px; }

/* ===================================================================
   Why choose us
   =================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  padding: 32px; transition: transform .3s var(--ease), background .3s;
}
.why:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.why i { font-size: 36px; color: var(--accent-light); }
.why h3 { font-size: 20px; margin: 18px 0 10px; }
.why p { font-size: 15px; color: #b6c5d6; }

/* ===================================================================
   How it works
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.step { text-align: center; position: relative; }
.step .circle {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--accent-50); color: var(--accent); font-size: 38px; position: relative; box-shadow: var(--shadow-sm);
}
.step .circle .n { position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: #3b2c08; font-family: var(--font-display); font-weight: 700; font-size: 14px; display: grid; place-items: center; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; max-width: 290px; margin-inline: auto; }

/* ===================================================================
   Testimonials
   =================================================================== */
.tst { position: relative; }
.tst__track { display: flex; gap: 26px; transition: transform .55s var(--ease); }
.tst__card {
  flex: 0 0 calc((100% - 52px) / 3); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm);
}
.tst__card .stars { color: var(--gold); font-size: 16px; display: flex; gap: 3px; margin-bottom: 16px; }
.tst__card p { font-size: 15.5px; color: var(--ink); }
.tst__who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.tst__who .av { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; background: var(--bg-softer); }
.tst__who b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15.5px; }
.tst__who span { font-size: 13px; color: var(--muted); }
.tst__nav { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.tst__nav button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--brand); font-size: 19px; display: grid; place-items: center; transition: all .25s; }
.tst__nav button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===================================================================
   FAQ accordion
   =================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--ink); }
.faq__q i { color: var(--accent); font-size: 22px; transition: transform .3s; flex: none; }
.faq__item.open .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 4px 24px; font-size: 15.5px; }

/* ===================================================================
   CTA band
   =================================================================== */
.cta-band { position: relative; overflow: hidden; color: #fff; border-radius: var(--r-xl); padding: 64px; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(120deg, var(--brand), var(--accent-600)); }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.14), transparent 45%); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.cta-band p { margin: 16px auto 30px; max-width: 560px; color: #d7e6f2; font-size: 18px; }
.cta-band .hero__cta { justify-content: center; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: var(--brand); color: #9fb0c2; padding-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 52px; }
.footer h4 { color: #fff; font-size: 17px; margin-bottom: 22px; font-family: var(--font-display); }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer .brand small { color: #8aa0b5; }
.footer p { font-size: 14.5px; color: #9fb0c2; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer__contact i { color: var(--accent-light); font-size: 19px; flex: none; margin-top: 2px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 18px; color: #cdd9e6; transition: all .25s; }
.footer__social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input { flex: 1; padding: 13px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 14.5px; }
.newsletter input::placeholder { color: #8298ad; }
.newsletter input:focus { outline: none; border-color: var(--accent); }
.newsletter button { flex: none; width: 50px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 19px; display: grid; place-items: center; transition: background .2s, transform .2s; }
.newsletter button:hover { background: var(--accent-600); transform: scale(1.05); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer__bottom a:hover { color: #fff; }

/* ===================================================================
   Page banner (interior pages)
   =================================================================== */
.banner { position: relative; color: #fff; padding: 130px 0 70px; overflow: hidden; }
.banner__bg { position: absolute; inset: 0; z-index: -2; background: var(--brand); }
.banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8,24,40,.92), rgba(8,24,40,.6)); }
.banner h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.banner .crumb { margin-top: 14px; font-size: 14.5px; color: #cfe0ee; display: flex; gap: 9px; align-items: center; }
.banner .crumb a:hover { color: #fff; }
.banner .crumb i { font-size: 14px; color: var(--accent-light); }

/* ===================================================================
   Misc content blocks (interior pages)
   =================================================================== */
.lead { font-size: 19px; color: var(--ink); line-height: 1.6; }
.prose p { margin-bottom: 18px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin-top: 6px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.feature-list li i { color: var(--accent); font-size: 20px; flex: none; margin-top: 2px; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 27px; color: var(--accent); background: var(--accent-50); margin-bottom: 18px; }
.info-card h3 { font-size: 19px; margin-bottom: 9px; }
.info-card p { font-size: 14.5px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info .ci { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: box-shadow .3s, transform .3s; }
.contact-info .ci:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.contact-info .ci i { font-size: 26px; color: var(--accent); background: var(--accent-50); width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.contact-info .ci h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info .ci p, .contact-info .ci a { font-size: 14.5px; color: var(--body); }
.contact-info .ci a:hover { color: var(--accent); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-family: inherit; font-size: 15px; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #93a3b4; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-50); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 420px; border: 0; }

/* ===================================================================
   Scroll reveal
   =================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .dest__bg img, .tour__img img { transition: none !important; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1024px) {
  .split { gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > li > a { padding: 14px; font-size: 16px; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--accent-50); border-radius: 0; margin: 2px 0 6px 14px; padding: 0; }
  .nav-cta .btn { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc--wide, .svc--reg, .svc--feature, .svc--third { grid-column: span 1; }
  .dest-grid, .tour-grid, .why-grid, .steps, .info-cards { grid-template-columns: 1fr 1fr; }
  .dest--tall { grid-row: span 1; }
  .tst__card { flex-basis: calc((100% - 26px) / 2); }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar .tb-social { display: none; }
  .topbar .wrap { justify-content: center; }
  .hero { min-height: 88vh; }
  .hero__meta { gap: 22px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .about-media .img-main { aspect-ratio: 4/3; }
  .svc-grid, .dest-grid, .tour-grid, .why-grid, .steps, .info-cards, .feature-list, .form-row { grid-template-columns: 1fr; }
  .tst__card { flex-basis: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .section-head { margin-bottom: 38px; }
}

/* =====================================================================
   v2 ADDITIONS - glass, booking widget, water hero, mega menu,
   Dubai-tours listing, WhatsApp float, services sub-nav
   ===================================================================== */
:root{
  --glass-blue: linear-gradient(135deg, rgba(39,21,133,.82), rgba(19,8,87,.92));
  --glass-blue-soft: linear-gradient(135deg, rgba(45,28,150,.16), rgba(19,8,87,.10));
  --glass-white: linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
}

/* ---- glass helper ---- */
.glass{
  background: var(--glass-white);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.6);
}

/* frosted card treatment applied to existing components */
.svc, .tour, .info-card, .tst__card, .contact-info .ci{
  background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.55));
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 30px rgba(19,8,87,.08), inset 0 1px 0 rgba(255,255,255,.55);
}
.svc:hover, .tour:hover, .info-card:hover, .contact-info .ci:hover{
  border-color: rgba(255,255,255,.95);
  box-shadow: 0 20px 50px rgba(19,8,87,.16), inset 0 1px 0 rgba(255,255,255,.7);
}
.nav.scrolled{ background: rgba(255,255,255,.72); backdrop-filter: saturate(170%) blur(16px); }

/* ============ HERO WATER RIPPLE ============ */
.hero__bg{ overflow:hidden; }
.hero__bg img{ transform: scale(1.06); transition: filter .5s ease, transform 6s ease; will-change: filter; }
.hero.rippling .hero__bg img{ filter: url(#airlight-water); transform: scale(1.09); }
.hero__shine{
  position:absolute; inset:0; z-index:-1; pointer-events:none; opacity:0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(120,170,255,.18), transparent 60%),
    repeating-linear-gradient(100deg, rgba(255,255,255,.05) 0 14px, transparent 14px 34px);
  mix-blend-mode: screen; transition: opacity .6s ease;
}
.hero.rippling .hero__shine{ opacity:1; animation: waterShift 7s linear infinite; }
@keyframes waterShift{ 0%{background-position:0 0,0 0} 100%{background-position:0 0,340px 0} }
.hero__hint{
  position:absolute; left:50%; bottom:24px; transform:translateX(-50%); z-index:2;
  display:inline-flex; align-items:center; gap:8px; padding:9px 16px; border-radius:999px;
  font-size:12.5px; font-weight:600; color:#eaf2ff;
  background: rgba(19,8,87,.34); border:1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__hint i{ color:#9cc4ff; }

/* ============ BOOKING WIDGET ============ */
.bw-wrap{ position:relative; z-index:20; margin-top:-86px; }
.bw{
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.74));
  backdrop-filter: blur(22px) saturate(170%); -webkit-backdrop-filter: blur(22px) saturate(170%);
  border:1px solid rgba(255,255,255,.8); border-radius: var(--r-lg);
  box-shadow: 0 30px 70px rgba(19,8,87,.22), inset 0 1px 0 rgba(255,255,255,.8);
  padding: 16px;
}
.bw__tabs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.bw__tab{
  display:flex; flex-direction:column; align-items:center; gap:5px; min-width:92px;
  padding:12px 18px; border-radius:14px; font-family:var(--font-display); font-weight:600; font-size:13.5px;
  color:var(--brand); background: rgba(255,255,255,.55); border:1px solid rgba(255,255,255,.6);
  transition: transform .2s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.bw__tab i{ font-size:22px; }
.bw__tab:hover{ transform:translateY(-2px); }
.bw__tab.active{
  color:#fff; background: var(--glass-blue);
  box-shadow: 0 10px 24px rgba(19,8,87,.32), inset 0 1px 0 rgba(255,255,255,.25);
}
.bw__body{ background:#fff; border-radius:16px; padding:22px; border:1px solid var(--line); }
.bw__panel{ display:none; }
.bw__panel.active{ display:block; animation: bwFade .35s var(--ease); }
@keyframes bwFade{ from{opacity:0; transform:translateY(6px)} to{opacity:1; transform:none} }
.bw__trip{ display:flex; gap:22px; flex-wrap:wrap; margin-bottom:16px; }
.bw__trip label, .bw__fare label{ display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px; color:var(--brand); cursor:pointer; }
.bw__title{ font-family:var(--font-display); font-weight:700; color:var(--brand); font-size:17px; border-left:4px solid var(--accent); padding-left:12px; margin-bottom:16px; }
.bw__grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap:14px; align-items:end; }
.bw__f{ display:flex; flex-direction:column; gap:6px; }
.bw__f label{ font-size:11.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--accent); }
.bw__f input, .bw__f select{
  padding:12px 13px; border:1.5px solid var(--line); border-radius:10px; font-family:inherit; font-size:14.5px; color:var(--ink);
  background:var(--bg-soft); transition:border-color .2s, box-shadow .2s, background .2s; min-width:0;
}
.bw__f input:focus, .bw__f select:focus{ outline:none; border-color:var(--accent); background:#fff; box-shadow:0 0 0 4px var(--accent-50); }
.bw__f input:disabled{ opacity:.5; cursor:not-allowed; }
.bw__fare{ display:flex; gap:20px; flex-wrap:wrap; align-items:center; margin-top:16px; }
.bw__fare .lbl{ font-weight:700; color:var(--accent); font-size:13px; text-transform:uppercase; letter-spacing:.06em; }
.bw__go{ width:100%; justify-content:center; }
.bw__f--go{ display:flex; align-items:end; }
@media (max-width:680px){
  .bw-wrap{ margin-top:-40px; }
  .bw__tab{ flex:1 1 28%; min-width:0; padding:10px 6px; font-size:12px; }
  .bw__tab i{ font-size:19px; }
  .bw__grid{ grid-template-columns:1fr 1fr; }
}

/* ============ MEGA MENU (Dubai Tours) ============ */
.has-mega{ position:static; }
.mega{
  position:absolute; left:0; right:0; top:100%; margin-top:1px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top:1px solid var(--line); box-shadow: var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(10px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  padding:26px 0;
}
.has-mega:hover .mega, .has-mega:focus-within .mega{ opacity:1; visibility:visible; transform:none; }
.mega .wrap{ display:grid; grid-template-columns: 1.1fr 2.4fr; gap:30px; }
.mega__feature{
  border-radius:var(--r); padding:24px; color:#fff; position:relative; overflow:hidden;
  background: var(--glass-blue); display:flex; flex-direction:column; justify-content:flex-end; min-height:200px;
}
.mega__feature::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 0%, rgba(120,170,255,.3), transparent 55%); }
.mega__feature h4{ color:#fff; font-size:20px; position:relative; }
.mega__feature p{ color:#cfd8f5; font-size:13.5px; margin:8px 0 16px; position:relative; }
.mega__feature .btn{ position:relative; align-self:flex-start; }
.mega__links{ display:grid; grid-template-columns: repeat(3,1fr); gap:6px 18px; }
.mega__links a{ display:flex; align-items:center; gap:9px; padding:9px 11px; border-radius:9px; font-size:14px; font-weight:500; color:var(--ink); transition: background .18s, color .18s, padding .18s; }
.mega__links a i{ color:var(--accent); font-size:17px; flex:none; }
.mega__links a:hover{ background:var(--accent-50); color:var(--accent); padding-left:15px; }

/* ============ DUBAI TOURS LISTING (horizontal cards) ============ */
.tlist{ display:grid; gap:22px; }
.titem{
  display:grid; grid-template-columns: 300px 1fr auto; gap:0;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.56));
  backdrop-filter: blur(10px) saturate(150%); -webkit-backdrop-filter: blur(10px) saturate(150%);
  border:1px solid rgba(255,255,255,.7); border-radius: var(--r-lg); overflow:hidden;
  box-shadow:0 10px 30px rgba(19,8,87,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.titem:hover{ transform:translateY(-5px); box-shadow:0 24px 56px rgba(19,8,87,.16); }
.titem__img{ position:relative; min-height:220px; background: var(--glass-blue); overflow:hidden; }
.titem__img img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition: transform .6s var(--ease); }
.titem:hover .titem__img img{ transform:scale(1.07); }
.titem__img .cap{ position:absolute; left:0; bottom:0; padding:14px 16px; color:#fff; font-family:var(--font-display); font-weight:700; font-size:14px; letter-spacing:.04em; text-transform:uppercase; text-shadow:0 2px 10px rgba(0,0,0,.5); z-index:1; }
.titem__img::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(8,6,40,.7), transparent 55%); }
.titem__body{ padding:24px 26px; }
.titem__meta{ display:flex; gap:16px; flex-wrap:wrap; font-size:13px; color:var(--muted); margin-bottom:8px; }
.titem__meta span{ display:inline-flex; align-items:center; gap:6px; }
.titem__meta i{ color:var(--accent); font-size:15px; }
.titem__body h3{ font-size:21px; margin-bottom:6px; }
.titem__body .loc{ display:inline-flex; align-items:center; gap:6px; font-size:13.5px; color:var(--accent); font-weight:600; margin-bottom:10px; }
.titem__body p{ font-size:14.5px; color:var(--body); max-width:62ch; }
.titem__rating{ display:flex; align-items:center; gap:3px; color:var(--gold); font-size:15px; margin-top:14px; }
.titem__rating span{ color:var(--muted); font-size:13px; margin-left:6px; font-family:var(--font-body); }
.titem__side{ display:flex; flex-direction:column; align-items:flex-end; justify-content:center; gap:14px; padding:24px 26px; border-left:1px solid rgba(19,8,87,.07); min-width:190px; }
.titem__price{
  text-align:center; padding:12px 20px; border-radius:14px; color:#fff; background:var(--glass-blue);
  box-shadow:0 10px 24px rgba(19,8,87,.28), inset 0 1px 0 rgba(255,255,255,.25);
}
.titem__price b{ font-family:var(--font-display); font-size:24px; display:block; line-height:1; }
.titem__price small{ font-size:11px; opacity:.85; letter-spacing:.08em; text-transform:uppercase; }
.titem__side .btn{ width:100%; justify-content:center; }
@media (max-width:900px){
  .titem{ grid-template-columns:1fr; }
  .titem__img{ min-height:200px; }
  .titem__side{ flex-direction:row; justify-content:space-between; border-left:none; border-top:1px solid rgba(19,8,87,.07); padding:18px 26px; }
  .titem__side .btn{ width:auto; }
}

/* category quick-filter chips (also services sub-nav) */
.chipnav{
  position:sticky; top:74px; z-index:40; margin:0 0 8px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom:1px solid var(--line);
}
.chipnav .wrap{ display:flex; gap:10px; overflow-x:auto; padding-top:14px; padding-bottom:14px; scrollbar-width:none; }
.chipnav .wrap::-webkit-scrollbar{ display:none; }
.chip{
  white-space:nowrap; padding:9px 18px; border-radius:999px; font-family:var(--font-display); font-weight:600; font-size:14px;
  color:var(--brand); background:rgba(255,255,255,.6); border:1px solid var(--line); transition: all .2s var(--ease); cursor:pointer;
}
.chip:hover{ border-color:var(--accent); color:var(--accent); }
.chip.active{ color:#fff; background:var(--glass-blue); border-color:transparent; box-shadow:0 8px 20px rgba(19,8,87,.28); }

/* ============ FLOATING WHATSAPP ============ */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:60px; height:60px; border-radius:50%; display:grid; place-items:center;
  background:#25d366; color:#fff; font-size:32px; box-shadow:0 10px 30px rgba(37,211,102,.5);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.wa-float:hover{ transform:scale(1.08); box-shadow:0 14px 38px rgba(37,211,102,.62); }
.wa-float::before{ content:""; position:absolute; inset:0; border-radius:50%; background:#25d366; z-index:-1; animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse{ 0%{transform:scale(1); opacity:.6} 100%{transform:scale(1.9); opacity:0} }
.tb-item--wa{ color:#7ee2a0 !important; }

/* ============ reduced motion / transparency ============ */
@media (prefers-reduced-motion: reduce){
  .hero.rippling .hero__bg img{ filter:none; transform:scale(1.06); }
  .hero__shine{ animation:none; }
  .wa-float::before{ animation:none; }
  .titem__img img, .bw__panel{ animation:none !important; }
}
@media (prefers-reduced-transparency: reduce){
  .glass, .bw, .nav.scrolled, .mega, .chipnav, .svc, .tour, .info-card, .tst__card, .contact-info .ci, .titem{
    background:#fff !important; backdrop-filter:none !important; -webkit-backdrop-filter:none !important;
  }
  .bw__tab.active, .titem__price, .chip.active, .mega__feature{ background:var(--brand) !important; }
}

/* ---- mobile mega / dropdown collapse-toggle ---- */
@media (max-width: 900px){
  .mega{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding:0; background:transparent; }
  .mega .wrap{ display:block; padding:0; }
  .mega__feature{ display:none; }
  .mega__links{ grid-template-columns:1fr; gap:0; }
  .mega__links a{ padding:12px 14px; }
  .has-drop .drop, .has-mega .mega{ display:none; }
  .has-drop.mopen .drop, .has-mega.mopen .mega{ display:block; }
  .has-drop.mopen > a i, .has-mega.mopen > a i{ transform:rotate(180deg); }
  .chipnav{ top:0; }
}

/* =====================================================================
   v3 - MOBILE POLISH & UI OPTIMISATION
   ===================================================================== */
html{ overflow-x:hidden; }
img{ height:auto; }

/* tablet band: keep nav on one line before it collapses at 900px */
@media (min-width:901px) and (max-width:1140px){
  .nav .wrap{ gap:8px; }
  .nav-links{ gap:2px; }
  .nav-links > li > a{ padding:9px 9px; font-size:14px; }
  .brand img{ height:40px; }
  .nav-cta .btn{ padding:11px 16px; font-size:14px; }
}

/* fix sticky sub-nav offset (was overlapping at mobile) */
.chipnav{ top:73px; }
@media (max-width:900px){ .chipnav{ top:62px; } }

@media (max-width:900px){
  .nav .wrap{ min-height:62px; }
  .brand img{ height:38px; }
  .nav-links{ top:62px; inset:62px 0 auto 0; }
}

/* ---- Topbar: show only WhatsApp on small screens ---- */
@media (max-width:760px){
  .topbar .tb-left{ display:none; }
  .topbar .tb-social{ display:flex; width:100%; justify-content:center; gap:18px; }
  .topbar .tb-social a:not(.tb-item--wa){ display:none; }
  .topbar .wrap{ justify-content:center; }
}

/* ---- Hero: hide the hover hint where there is no hover (touch) ---- */
@media (hover:none), (max-width:900px){ .hero__hint{ display:none; } }
@media (max-width:600px){
  .hero{ min-height:82vh; }
  .hero h1{ font-size:clamp(30px,8vw,42px); }
  .hero p{ font-size:16.5px; }
  .hero__cta .btn{ flex:1 1 auto; justify-content:center; }
}

/* ---- Booking widget: guarantee no overflow on phones ---- */
@media (max-width:680px){
  .bw{ padding:12px; }
  .bw__body{ padding:16px; }
  .bw__grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; }
  .bw__f input, .bw__f select{ font-size:14px; padding:11px; }
  .bw__f--go{ grid-column:1 / -1; }
  .bw__trip{ gap:14px; }
  .bw__fare{ gap:12px 16px; }
  .bw__title{ font-size:15px; }
}
@media (max-width:420px){
  .bw__tab{ font-size:11px; padding:9px 4px; gap:3px; }
  .bw__tab i{ font-size:17px; }
}

/* ---- Dubai-tours horizontal cards: tidy stack on mobile ---- */
@media (max-width:900px){
  .titem__img{ min-height:180px; }
  .titem__body{ padding:20px; }
  .titem__side{ padding:16px 20px; gap:12px; }
  .titem__price{ padding:8px 16px; }
  .titem__price b{ font-size:20px; }
}

/* ---- General mobile spacing / typography ---- */
@media (max-width:600px){
  .section-head h2{ font-size:clamp(24px,6.4vw,30px); }
  .cta-band{ padding:38px 22px; }
  .cta-band h2{ font-size:clamp(22px,6vw,28px); }
  .wa-float{ width:54px; height:54px; font-size:28px; right:16px; bottom:16px; }
  .map-embed iframe{ height:320px; }
  .about-media .img-badge{ left:0; bottom:-16px; padding:14px 18px; }
  .stat .num{ font-size:30px; }
  .footer__grid{ gap:30px; }
}

/* avoid iOS auto-zoom on focus (inputs >=16px) */
@media (max-width:600px){
  .field input, .field select, .field textarea, .bw__f input, .bw__f select{ font-size:16px; }
}

/* =====================================================================
   v4 — fix feature card (glass had clobbered it) + hero image glow
   ===================================================================== */
/* restore the featured "Holiday Packages" service card (was white-on-white) */
.svc.svc--feature{
  background: linear-gradient(135deg, var(--brand), var(--accent-600));
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(19,8,87,.30);
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.svc.svc--feature h3{ color:#fff; }
.svc.svc--feature p{ color:#dfe6ff; }
.svc.svc--feature .ic{ background: rgba(255,255,255,.18); color:#fff; }
.svc.svc--feature .more{ color:#fff; }
.svc.svc--feature:hover{ box-shadow: 0 26px 60px rgba(19,8,87,.40); transform: translateY(-6px); }

/* hero: show the Dubai image with a premium gradient glow, and bring the widget into view */
.hero{ min-height: 82vh; }
.hero__bg::after{
  background: linear-gradient(100deg, rgba(8,6,40,.88) 0%, rgba(10,8,58,.62) 44%, rgba(12,10,72,.28) 100%);
}
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(52% 44% at 82% 8%, rgba(255,120,124,.22), transparent 62%),
    radial-gradient(60% 60% at 8% 96%, rgba(45,28,150,.5), transparent 60%);
}
@media (max-width:600px){ .hero{ min-height: 74vh; } }

/* =====================================================================
   v5 — booking widget visibility + hero sizing
   ===================================================================== */
.hero{ min-height: 76vh; }
.bw-wrap{ margin-top: -82px; }
.bw{ max-width: 1100px; margin-inline: auto; }
@media (max-width:900px){ .hero{ min-height: 70vh; } .bw-wrap{ margin-top:-48px; } }
@media (max-width:600px){ .hero{ min-height: 66vh; } .bw-wrap{ margin-top:-26px; } }

/* =====================================================================
   v6 — sticky header fix, bigger logo, mobile justify/center, images
   ===================================================================== */

/* 1) STICKY FIX: overflow-x:hidden on html/body turns them into a scroll
   container and breaks position:sticky. overflow:clip prevents sideways
   scroll WITHOUT creating a scroll container, so the nav sticks reliably. */
html{ overflow-x: clip; }
body{ overflow-x: clip; }
.nav{ position: sticky; top: 0; z-index: 100; }

/* 2) BIGGER LOGO everywhere */
.nav .wrap{ min-height: 86px; }
.brand img{ height: 62px; }
.footer .brand img{ height: 70px; }
.chipnav{ top: 86px; }

/* keep the tablet band tidy with the larger logo */
@media (min-width:901px) and (max-width:1200px){
  .brand img{ height: 48px; }
  .nav .wrap{ min-height: 74px; }
  .nav-links{ gap: 2px; }
  .nav-links > li > a{ padding: 9px 8px; font-size: 13.5px; }
  .nav-cta .btn{ padding: 10px 14px; font-size: 13.5px; }
  .chipnav{ top: 74px; }
}

@media (max-width:900px){
  .nav .wrap{ min-height: 72px; }
  .brand img{ height: 50px; }
  .nav-links{ top: 72px; inset: 72px 0 auto 0; }
  .chipnav{ top: 72px; }
}

/* 3) MOBILE alignment: paragraph TEXT justified, everything else centered */
@media (max-width:768px){
  .section-head, .hero__inner, .split__content, .svc, .info-card,
  .step, .why, .tour__body, .titem__body, .tst__card{ text-align: center; }
  .section-head, .hero__inner{ margin-inline: auto; }
  .hero__cta, .tour__foot, .titem__meta, .tour__rating, .titem__rating,
  .tst__who, .svc .more, .tour__body .place, .titem__body .loc{ justify-content: center; }
  .svc .ic, .info-card .ic, .split__content .ic, .about-media .img-badge{ margin-inline: auto; }
  .ticklist, .feature-list{ justify-items: center; }
  .ticklist li, .feature-list li, .contact-info .ci{ text-align: left; }

  /* justify the descriptive text */
  p, .lead, .prose p, .titem__body p, .svc p, .tour__body p, .why p,
  .info-card p, .faq__a p{ text-align: justify; text-justify: inter-word; }
  /* short intro/hero copy reads better centered */
  .section-head p, .hero p{ text-align: center; }
  .ticklist li, .feature-list li{ text-align: left; }
}

/* 4) IMAGES: always cover their box and stay visible across sections/widget */
.hero__bg img, .banner__bg img, .dest__bg img, .tour__img img,
.titem__img img, .about-media .img-main, .mega__feature img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.tour__img, .titem__img, .dest__bg{ background: var(--glass-blue); }
.about-media .img-main{ aspect-ratio: 4/5; }
@media (max-width:680px){ .about-media .img-main{ aspect-ratio: 16/10; } }
