/* ===========================================================
   SmartLab — smartlab.sa
   Bilingual (AR / EN), RTL + LTR, mobile-first responsive
   Brand: sky #54b7e8 / deep #1c86c2 / navy #16303d
   =========================================================== */

:root {
  --cobalt:   #1c86c2;   /* deep sky — for text/contrast + solid brand */
  --blue:     #2ea3de;   /* mid sky */
  --azure:    #54b7e8;   /* brand color */
  --navy:     #16303d;
  --dark:     #0e1c24;
  --ink:      #1f2d38;
  --muted:    #5d6b75;
  --line:     #e7eaee;
  --bg:       #ffffff;
  --bg-soft:  #f9f9f9;
  --bg-blue:  #eaf6fd;
  --white:    #ffffff;
  --wa:       #25d366;
  --shadow-sm: 0 2px 10px rgba(20, 40, 80, .05);
  --shadow:    0 10px 28px rgba(20, 40, 80, .08);
  --shadow-lg: 0 20px 46px rgba(20, 40, 80, .11);
  --radius:    20px;
  --radius-sm: 14px;
  --maxw: 1200px;
  --gutter: 22px;
  --header-h: 78px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Cairo", "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(84, 183, 232, .18);
}
html[lang="en"] body { font-family: "Montserrat", "Cairo", system-ui, sans-serif; line-height: 1.7; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--azure); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(56px, 8vw, 92px) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-block; font-weight: 700; font-size: clamp(.92rem, 2.4vw, 1.05rem); letter-spacing: .04em;
  color: var(--cobalt); background: rgba(84, 183, 232, .12);
  padding: 7px 18px; border-radius: 999px; margin-bottom: 16px;
}
html[lang="en"] .eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .95rem; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.55rem, 5.2vw, 2.7rem); font-weight: 800; color: var(--navy); line-height: 1.28; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: clamp(.98rem, 2.6vw, 1.06rem); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: clamp(.95rem, 2.4vw, 1rem);
  padding: 14px 28px; border-radius: 999px; min-height: 48px; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary { background: linear-gradient(135deg, var(--azure), var(--cobalt)); color: #fff; box-shadow: 0 10px 26px rgba(84,183,232,.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(84,183,232,.42); }
.btn-light { background: #fff; color: var(--cobalt); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.6px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: #fff; color: var(--cobalt); transform: translateY(-3px); }
.btn-outline { border: 1.6px solid var(--line); color: var(--cobalt); background: #fff; }
.btn-outline:hover { border-color: var(--cobalt); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.32); }
.btn-wa:hover { background: #1eb955; transform: translateY(-3px); }
.btn-wa svg { width: 21px; height: 21px; }
@media (hover: none) {
  .btn:hover, .pkg:hover, .feature:hover, .step:hover, .review:hover, .client:hover, .ci-card:hover { transform: none; }
}

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(14, 25, 32, .35);
  backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled, .header.menu-open { background: rgba(14, 25, 32, .96); box-shadow: 0 6px 26px rgba(0,0,0,.22); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 10px; height: var(--header-h); }
.logo { display: flex; align-items: center; flex: none; }
.logo-img { height: clamp(30px, 6vw, 40px); width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.nav-links a { font-weight: 600; color: #fff; font-size: clamp(.88rem, 1.2vw, .98rem); position: relative; padding: 4px 0; opacity: .92; transition: opacity .2s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; bottom: -3px; inset-inline-start: 0; width: 0; height: 2px; background: var(--azure); transition: width .25s var(--ease); }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; color: #fff; }
.nav-links a.active::after { width: 100%; }
.nav-links .menu-book { display: none; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .88rem; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 999px; padding: 9px 15px; min-height: 40px;
  transition: background .2s, border-color .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.lang-toggle svg { width: 16px; height: 16px; flex: none; }
.nav-book { padding: 10px 22px; font-size: .92rem; min-height: 42px; }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; align-items: center; }
.burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center;
  text-align: center; color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #0e1920; }
.hero-media .slide, .hero-media video {
  position: absolute; inset: -4%; width: 108%; height: 108%; max-width: none; object-fit: cover;
}
.hero-media .slide { opacity: 0; animation: heroFade 21s linear infinite, kenburns 21s ease-in-out infinite alternate; }
.hero-media .slide:nth-child(2) { animation-delay: 7s, 7s; }
.hero-media .slide:nth-child(3) { animation-delay: 14s, 14s; }
.hero-media video { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-1.4%, -1.4%); } }
@keyframes heroFade {
  0% { opacity: 0; } 4% { opacity: 1; } 29% { opacity: 1; } 36% { opacity: 0; } 100% { opacity: 0; }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,13,18,.34) 0%, transparent 28%, transparent 50%, rgba(8,13,18,.86) 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; }
html[dir="rtl"] .hero::after { background: linear-gradient(to left, rgba(8,13,18,.82) 0%, rgba(8,13,18,.4) 42%, transparent 72%); }
html[dir="ltr"] .hero::after { background: linear-gradient(to right, rgba(8,13,18,.82) 0%, rgba(8,13,18,.4) 42%, transparent 72%); }
.hero-content {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: calc(var(--header-h) + 46px) var(--gutter) 84px; text-align: start;
}
.hero .welcome {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px; padding: 7px 16px; font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(6px);
}
.hero .welcome .dot { width: 9px; height: 9px; border-radius: 50%; background: #2ee6a0; box-shadow: 0 0 0 4px rgba(46,230,160,.25); flex: none; }
.hero h1 { font-size: clamp(2.2rem, 8vw, 5.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -.01em; text-shadow: 0 4px 30px rgba(0,0,0,.55); max-width: 14ch; }
.hero h1 .accent { color: #7dd0ff; }
.hero .tagline { font-size: clamp(1rem, 2.6vw, 1.4rem); font-weight: 500; opacity: .96; margin: 18px 0 0; max-width: 560px; text-shadow: 0 2px 14px rgba(0,0,0,.5); }
.hero-cta { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; margin-top: clamp(26px, 4vw, 40px); }
.hero-stats { display: flex; gap: 14px clamp(20px, 4vw, 38px); justify-content: flex-start; flex-wrap: wrap; margin-top: clamp(30px, 5vw, 50px); }
.hero-stats .stat { text-align: center; }
.hero-stats .num { font-size: clamp(1.4rem, 5vw, 2.2rem); font-weight: 900; line-height: 1; }
.hero-stats .lbl { font-size: clamp(.76rem, 2.2vw, .85rem); opacity: .85; font-weight: 600; margin-top: 6px; }
.hero-stats .sep { width: 1px; align-self: stretch; background: rgba(255,255,255,.25); }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; opacity: .8; animation: bob 2s infinite; }
.scroll-cue svg { width: 28px; height: 28px; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media .slide, .hero-media video, .wa-float, .scroll-cue { animation: none; }
  .hero-media .slide:first-child { opacity: 1; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- packages ---------- */
.packages { background: linear-gradient(180deg, var(--bg-blue) 0%, #ffffff 70%); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.pkg {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 18px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pkg.featured { border-color: var(--cobalt); box-shadow: var(--shadow); }
.pkg-tag { position: absolute; inset-block-start: 14px; inset-inline-end: 14px; background: var(--cobalt); color: #fff; font-size: .72rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; z-index: 2; }
.pkg-photo {
  aspect-ratio: 16 / 11; border-radius: 14px; margin-bottom: 16px; padding: 14px; overflow: hidden;
  background: radial-gradient(220px 160px at 70% 20%, rgba(84,183,232,.12), transparent 60%), #f4f7fc;
}
.pkg-photo img { width: 100%; height: 100%; object-fit: contain; }
.pkg-photo.photo { padding: 0; }
.pkg-photo.photo img { object-fit: cover; }
.pkg h3, .pkg h2 { font-size: clamp(1.06rem, 2.6vw, 1.2rem); color: var(--navy); margin-bottom: 12px; min-height: 2.4em; display: flex; align-items: center; line-height: 1.35; font-weight: 800; }
.pkg-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.pkg-meta .count { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: .9rem; }
.pkg-meta .count svg { width: 16px; height: 16px; color: var(--azure); flex: none; }
.pkg-meta .price { background: rgba(84,183,232,.08); color: var(--cobalt); font-weight: 800; font-size: .95rem; padding: 4px 12px; border-radius: 999px; }
.pkg-meta .old { color: #9aa6b0; text-decoration: line-through; font-size: .85rem; font-weight: 600; }
.pkg-ribbon { position: absolute; inset-block-start: 14px; inset-inline-start: 14px; background: linear-gradient(135deg,#ff5d5d,#e23b3b); color: #fff; font-size: .72rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; z-index: 2; box-shadow: 0 6px 16px rgba(226,59,59,.35); }
.pkg .btn { margin-top: auto; width: 100%; }
.pkg-more { text-align: center; margin-top: clamp(30px, 4vw, 46px); }

/* ---------- concept / about ---------- */
.concept { background: #fff; }
.concept-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
.concept-text h2 { font-size: clamp(1.7rem, 5.6vw, 3.2rem); font-weight: 900; color: var(--navy); line-height: 1.18; margin-bottom: 16px; }
.concept-text h2 .hl { color: var(--cobalt); }
.concept-text p { color: var(--muted); font-size: clamp(1rem, 2.6vw, 1.08rem); margin-bottom: 14px; }
.concept-list { display: grid; gap: 13px; margin: 22px 0 30px; }
.concept-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.concept-list .check { width: 27px; height: 27px; border-radius: 8px; background: rgba(84,183,232,.1); color: var(--cobalt); display: grid; place-items: center; flex: none; margin-top: 3px; }
.concept-list .check svg { width: 16px; height: 16px; }
.concept-photos { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; gap: 14px; }
.concept-photos figure { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.concept-photos figure:first-child { grid-column: span 2; aspect-ratio: 2/1.1; }
.concept-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.concept-photos figure:hover img { transform: scale(1.06); }

/* ---------- features ---------- */
.features { background: var(--bg-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2.2vw, 22px); }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 30px) clamp(18px, 2.6vw, 26px); transition: transform .3s var(--ease), box-shadow .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--cobalt)); color: #fff; margin-bottom: 16px; box-shadow: 0 6px 16px rgba(84,183,232,.18); }
.feature .ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: clamp(1.05rem, 2.6vw, 1.14rem); color: var(--navy); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ---------- how it works ---------- */
.how { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2.2vw, 22px); }
.step { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.4vw, 32px) clamp(18px, 2.6vw, 24px); text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .num { width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, var(--blue), var(--cobalt)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; }
.step .ico { color: var(--cobalt); margin-bottom: 10px; }
.step .ico svg { width: 30px; height: 30px; margin: 0 auto; }
.step h3 { font-size: clamp(1.02rem, 2.6vw, 1.1rem); color: var(--navy); margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- clients / partners ---------- */
.clients { background: var(--azure); padding: clamp(38px, 6vw, 52px) 0; }
.clients > .container { max-width: none; padding-inline: clamp(16px, 4vw, 72px); }
.clients-head { text-align: center; margin-bottom: clamp(20px, 3vw, 30px); }
.clients-head span { display: inline-block; color: #fff; font-weight: 800; font-size: clamp(1.25rem, 4.4vw, 2rem); line-height: 1.3; }
.clients-carousel { display: flex; align-items: center; gap: 12px; }
.clients-viewport { flex: 1; min-width: 0; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.clients-viewport::-webkit-scrollbar { display: none; }
.clients-track { display: flex; gap: clamp(12px, 2vw, 22px); padding: 6px 2px; width: 100%; justify-content: center; }
.client { flex: none; width: clamp(190px, 62vw, 305px); aspect-ratio: 16 / 10; scroll-snap-align: center; background: #fff; border-radius: 18px; overflow: hidden; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(12,40,60,.16); transition: transform .25s, box-shadow .25s; }
.client:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(12,40,60,.24); }
.client img { object-fit: cover; width: 100%; height: 100%; display: block; }
.cc-nav { flex: none; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--cobalt); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(12,40,60,.2); cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.cc-nav:hover { transform: translateY(-2px); background: var(--cobalt); color: #fff; }
.cc-nav svg { width: 20px; height: 20px; }
.cc-nav[hidden] { display: none; }

/* ---------- testimonials ---------- */
.testimonials { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.review { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 28px); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; position: relative; }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review .quote-mark { font-size: 3.4rem; line-height: .6; color: rgba(84,183,232,.15); font-family: Georgia, serif; margin-bottom: 6px; }
.review .stars { display: flex; gap: 3px; margin-bottom: 12px; color: #f5a623; }
.review .stars svg { width: 18px; height: 18px; }
.review p { color: var(--ink); font-size: 1rem; line-height: 1.8; margin-bottom: 18px; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--cobalt)); color: #fff; font-weight: 800; flex: none; }
.review .who h5 { font-size: 1rem; color: var(--navy); }
.review .who span { font-size: .85rem; color: var(--muted); }

/* ---------- contact ---------- */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(26px, 4vw, 44px); }
.contact-info { display: grid; gap: 14px; align-content: start; }
.ci-card { display: flex; align-items: center; gap: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; transition: transform .25s, box-shadow .25s; }
.ci-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
html[dir="rtl"] .ci-card:hover { transform: translateX(-4px); }
.ci-card .ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--cobalt)); color: #fff; display: grid; place-items: center; flex: none; }
.ci-card .ico svg { width: 22px; height: 22px; }
.ci-card > div { min-width: 0; }
.ci-card .lbl { font-size: .82rem; color: var(--muted); font-weight: 600; }
.ci-card .val { font-weight: 700; color: var(--navy); font-size: clamp(.94rem, 2.4vw, 1.02rem); unicode-bidi: plaintext; overflow-wrap: anywhere; line-height: 1.5; }

.contact-form { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3.4vw, 32px); }
.contact-form h3 { font-size: clamp(1.2rem, 3.4vw, 1.4rem); color: var(--navy); margin-bottom: 6px; }
.contact-form .sub { color: var(--muted); margin-bottom: 20px; font-size: .96rem; }
.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 16px; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(84,183,232,.12); }
.field textarea { resize: vertical; min-height: 118px; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; text-align: center; font-size: .9rem; font-weight: 700; min-height: 22px; }
.form-note.ok { color: #019719; }
.form-note.err { color: #e23b3b; }

/* ---------- footer ---------- */
.footer { background: var(--azure); color: rgba(255,255,255,.92); padding: clamp(44px, 6vw, 66px) 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(26px, 3.4vw, 38px); margin-bottom: clamp(30px, 4vw, 44px); }
.footer .logo-img { height: 40px; margin-bottom: 16px; }
.footer-about p { font-size: .96rem; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-links a { display: block; padding: 7px 0; transition: color .2s, padding-inline-start .2s; font-size: .96rem; color: rgba(255,255,255,.9); }
.footer-links a:hover { color: #fff; padding-inline-start: 5px; }
.footer-contact li { display: flex; gap: 10px; padding: 6px 0; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: #fff; flex: none; margin-top: 5px; }
.footer-contact .v { unicode-bidi: plaintext; overflow-wrap: anywhere; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.18); display: grid; place-items: center; color: #fff; transition: background .25s, color .25s, transform .25s; }
.socials a:hover { background: #fff; color: var(--cobalt); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.28); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .9rem; }

/* ---------- all-packages page ---------- */
.page-banner { position: relative; background: linear-gradient(135deg, var(--cobalt), var(--azure)); color: #fff; padding: calc(var(--header-h) + 56px) 0 clamp(44px, 6vw, 66px); text-align: center; overflow: hidden; }
.page-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(255,255,255,.18), transparent 60%); }
.page-banner .container { position: relative; }
.page-banner .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.page-banner h1 { font-size: clamp(1.7rem, 6vw, 3.1rem); font-weight: 900; line-height: 1.2; }
.page-banner p { opacity: .92; margin-top: 10px; font-size: clamp(.98rem, 2.6vw, 1.06rem); }
.pkgs-page { padding: clamp(30px, 5vw, 44px) 0 clamp(60px, 8vw, 90px); background: var(--bg-soft); }
.filter-bar {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: clamp(26px, 4vw, 40px);
}
.filter-tab { border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-weight: 700; font-size: clamp(.86rem, 2.4vw, .95rem); padding: 10px 20px; border-radius: 999px; cursor: pointer; min-height: 42px; white-space: nowrap; transition: all .2s; }
.filter-tab:hover { border-color: var(--blue); color: var(--cobalt); }
.filter-tab.active { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.all-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.pkg.hide { display: none; }

/* ---------- modal (careers) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 16px; background: rgba(11,20,26,.78);
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
body.modal-open .hero-media .slide,
body.modal-open .hero-media video,
body.modal-open .wa-float { animation-play-state: paused !important; }
body.modal-open .hero-media { visibility: hidden; }
.modal {
  width: 100%; max-width: 620px; max-height: 92vh; max-height: 92dvh; overflow-y: auto; background: #fff;
  border-radius: 22px; box-shadow: 0 30px 80px rgba(11,20,26,.45); position: relative;
  opacity: 0; transform: translateY(24px) scale(.94);
  transition: transform .38s cubic-bezier(.2,.9,.3,1.1), opacity .28s ease;
  scrollbar-width: thin; scrollbar-color: #cfd8de transparent;
  overscroll-behavior: contain;
}
.modal::-webkit-scrollbar { width: 8px; }
.modal::-webkit-scrollbar-thumb { background: #d3dbe1; border-radius: 8px; border: 2px solid #fff; }
.modal-overlay.open .modal { opacity: 1; transform: none; }
.modal-head {
  padding: 20px 24px 16px; position: sticky; top: 0; z-index: 3; background: #fff;
  border-bottom: 1px solid var(--line); border-radius: 22px 22px 0 0;
}
.modal-head h3 { font-size: clamp(1.15rem, 3.4vw, 1.35rem); color: var(--navy); font-weight: 800; padding-inline-end: 44px; }
.modal-head h3::before { content: ""; display: inline-block; width: 5px; height: 1.05em; border-radius: 3px; background: linear-gradient(var(--azure), var(--cobalt)); margin-inline-end: 11px; vertical-align: -3px; }
.modal-head .cr-sub { color: var(--muted); margin-top: 6px; font-size: .92rem; padding-inline-end: 44px; line-height: 1.6; }
.cr-submit { width: 100%; margin-top: 6px; }
.modal-close {
  position: absolute; inset-block-start: 16px; inset-inline-end: 16px; width: 38px; height: 38px;
  border-radius: 50%; background: var(--bg-soft); color: var(--ink); font-size: 1.35rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s, transform .25s; z-index: 4;
}
.modal-close:hover { background: #e9edf2; transform: rotate(90deg); }

.booking-body { padding: 20px 24px 24px; }
.bk-field { margin-bottom: 15px; }
.bk-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.bk-field input, .bk-field select, .bk-field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid transparent; border-radius: 14px;
  font-family: inherit; font-size: 16px; color: var(--ink); background: #f4f7fa;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.bk-field input::placeholder, .bk-field textarea::placeholder { color: #9aa6b0; }
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus { outline: none; background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(84,183,232,.16); }
.bk-field input.invalid { border-color: #e23b3b; box-shadow: 0 0 0 4px rgba(226,59,59,.12); }
.bk-err { color: #e23b3b; font-size: .82rem; font-weight: 600; margin-top: 6px; min-height: 1em; }
.bk-field textarea { resize: vertical; min-height: 90px; }

/* floating whatsapp */
.wa-float {
  position: fixed; inset-block-end: 20px; inset-inline-end: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s; animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
/* the floating button must never sit on top of an open menu / modal */
body.nav-open .wa-float, body.modal-open .wa-float { opacity: 0; pointer-events: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1180px) {
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { gap: 18px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .pkg-grid, .features-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .all-pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* --- mobile nav panel --- */
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset-block-start: var(--header-h); inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0e1920;
    padding: 10px var(--gutter) 24px;
    max-height: calc(100vh - var(--header-h)); max-height: calc(100dvh - var(--header-h));
    overflow-y: auto; overscroll-behavior: contain;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    transform: translateY(-115%); visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1.02rem; opacity: 1; }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--azure); }
  .nav-links .menu-book { display: inline-flex; margin-top: 18px; width: 100%; }
  .nav-book { display: none; }
  .concept-grid, .contact-grid { grid-template-columns: 1fr; }
  .concept-photos { order: -1; }
}

@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-content { padding-block: calc(var(--header-h) + 60px) 96px; }
  html[dir="rtl"] .hero::after,
  html[dir="ltr"] .hero::after { background: linear-gradient(180deg, rgba(8,13,18,.55) 0%, rgba(8,13,18,.45) 45%, rgba(8,13,18,.7) 100%); }
  .hero h1 { max-width: 18ch; }
  .footer-about p { max-width: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .pkg-grid, .features-grid, .steps, .all-pkg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pkg h3, .pkg h2 { min-height: auto; }
  .pkg-photo { aspect-ratio: 16 / 9; }
  .filter-bar {
    justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .concept-photos { grid-template-columns: 1fr 1fr; }
  .cc-nav { display: none; }
  .client { width: clamp(200px, 74vw, 280px); }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .lang-toggle { padding: 8px 12px; font-size: .82rem; }
  .lang-toggle svg { width: 15px; height: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 12px 22px; }
  .hero-stats .sep { display: none; }
  .hero-stats .stat { text-align: start; min-width: 84px; }
  .concept-photos { grid-template-columns: 1fr; }
  .concept-photos figure:first-child { grid-column: auto; }
  .concept-photos figure { aspect-ratio: 16/10; }
  .concept-text .btn, .pkg-more .btn { width: 100%; }
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal { max-width: none; border-radius: 22px 22px 0 0; max-height: 94dvh; }
  .modal-head { border-radius: 22px 22px 0 0; }
  .ci-card .val { font-size: .92rem; }
  .wa-float { width: 52px; height: 52px; inset-block-end: 16px; inset-inline-end: 14px; }
  .wa-float svg { width: 27px; height: 27px; }
  .review .quote-mark { font-size: 2.8rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .logo-img { height: 28px; }
  .lang-toggle span { display: none; }
  .lang-toggle { padding: 9px 11px; }
  .hero h1 { font-size: 2rem; }
  .btn { padding: 13px 20px; }
}

/* landscape phones — keep the hero from swallowing the screen */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding-block: calc(var(--header-h) + 40px) 60px; }
  .scroll-cue { display: none; }
}
