/* ══════════════════════════════════════════════════════════
   TAMER TRIPS — Sharm El Sheikh · cinematic luxury theme
   ══════════════════════════════════════════════════════════ */
:root {
  --ink: #04101e;
  --ink-2: #071a2e;
  --ink-3: #0a2440;
  --aqua: #17d3c4;
  --aqua-soft: rgba(23, 211, 196, .12);
  --gold: #e8c576;
  --gold-deep: #c9a24b;
  --sand: #f3e4c5;
  --white: #f7fbff;
  --mute: #9db4c8;
  --danger: #ff6b6b;
  --wa: #25d366;
  --glass: rgba(10, 32, 56, .55);
  --glass-brd: rgba(126, 200, 227, .16);
  --radius: 22px;
  --font-display: "Cormorant Garamond", "Amiri", serif;
  --font-body: "Manrope", "Tajawal", sans-serif;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .55);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}
html[lang="ar"] {
  --font-display: "Amiri", "Cormorant Garamond", serif;
  --font-body: "Tajawal", "Manrope", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--aqua); color: var(--ink); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--aqua), var(--gold)); border-radius: 6px; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.08; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
section { position: relative; }

/* ── shimmering gold text ─────────────────────────────── */
.gold-text {
  background: linear-gradient(100deg, #b98a2e 0%, var(--gold) 25%, #fff3d6 50%, var(--gold) 75%, #b98a2e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.aqua-text { color: var(--aqua); }

/* ── kicker / headings ────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  text-transform: uppercase; letter-spacing: .42em; font-size: .72rem;
  color: var(--aqua); font-weight: 700; margin-bottom: 18px;
}
.kicker::before, .kicker::after { content: ""; height: 1px; width: 44px; background: linear-gradient(90deg, transparent, var(--aqua)); }
.kicker::after { background: linear-gradient(90deg, var(--aqua), transparent); }
html[dir="rtl"] .kicker { letter-spacing: .18em; }
.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head h2 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); margin-bottom: 16px; }
.sec-head p { color: var(--mute); max-width: 640px; margin-inline: auto; font-size: 1.06rem; }

/* ── reveal-on-scroll base states (animated by GSAP) ──── */
.rv { opacity: 0; transform: translateY(48px); }
.rv-l { opacity: 0; transform: translateX(-60px); }
.rv-r { opacity: 0; transform: translateX(60px); }
.rv-s { opacity: 0; transform: scale(.88); }
html.no-anim .rv, html.no-anim .rv-l, html.no-anim .rv-r, html.no-anim .rv-s,
html.no-anim .hero-sub, html.no-anim .hero-ctas, html.no-anim .hstat, html.no-anim .scroll-hint { opacity: 1; transform: none; }

/* ══ PRELOADER ══════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: radial-gradient(120% 120% at 50% 120%, #0c2d4d 0%, var(--ink) 60%);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), visibility .9s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-logo { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: .08em; }
.pre-sub { letter-spacing: .5em; text-transform: uppercase; font-size: .68rem; color: var(--aqua); margin-top: 10px; animation: pulse-soft 2s ease-in-out infinite; }
.pre-wave { width: 190px; height: 3px; margin: 26px auto 0; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.pre-wave i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--aqua), var(--gold)); transition: width .3s ease; }
@keyframes pulse-soft { 50% { opacity: .4; } }

/* ══ SCROLL PROGRESS ════════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 0%;
  z-index: 1950; pointer-events: none;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  box-shadow: 0 0 12px rgba(232, 197, 118, .55);
  transition: width .1s linear;
}

/* ══ CUSTOM CURSOR ══════════════════════════════════════ */
#cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1900; border-radius: 50%; will-change: transform; }
#cursor-dot { width: 7px; height: 7px; background: var(--gold); transform: translate(-50%, -50%); }
#cursor-ring { width: 38px; height: 38px; border: 1.5px solid rgba(23, 211, 196, .65); transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s, background .25s; }
#cursor-ring.hovered { width: 62px; height: 62px; border-color: var(--gold); background: rgba(232, 197, 118, .08); }
@media (hover: none), (max-width: 900px) { #cursor-dot, #cursor-ring { display: none; } }

/* ══ LANGUAGE MODAL ═════════════════════════════════════ */
#lang-modal {
  position: fixed; inset: 0; z-index: 1800;
  display: grid; place-items: center;
  background: rgba(3, 10, 20, .72);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  opacity: 0; visibility: hidden; transition: opacity .6s, visibility .6s;
}
#lang-modal.open { opacity: 1; visibility: visible; }
.lang-card {
  width: min(560px, 92vw); text-align: center;
  background: linear-gradient(160deg, rgba(13, 40, 68, .92), rgba(6, 20, 36, .96));
  border: 1px solid var(--glass-brd); border-radius: 28px;
  padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(.96); transition: transform .6s var(--ease-out);
}
#lang-modal.open .lang-card { transform: none; }
.lang-card .pre-logo { font-size: 2rem; margin-bottom: 6px; }
.lang-title { font-size: .95rem; color: var(--mute); margin: 14px 0 4px; }
.lang-sub { font-size: 1.35rem; font-family: var(--font-display); margin-bottom: 26px; }
.lang-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lang-btn {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  padding: 16px 18px; border-radius: 16px; font-size: 1.05rem; font-weight: 700;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  transition: all .35s var(--ease-out);
}
.lang-btn .fl { font-size: 1.5rem; }
.lang-btn:hover { background: var(--aqua-soft); border-color: var(--aqua); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(23,211,196,.18); }
@media (max-width: 520px) { .lang-grid { grid-template-columns: 1fr; } }

/* ══ NAVBAR ═════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; inset-inline: 0; z-index: 1000;
  transition: background .45s, box-shadow .45s, padding .45s;
  padding: 22px 0;
}
#navbar.scrolled {
  padding: 12px 0;
  background: rgba(4, 15, 28, .82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  border-bottom: 1px solid rgba(126, 200, 227, .08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .05em; }
.brand svg { width: 42px; height: 42px; }
.brand b { font-weight: 700; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { position: relative; font-size: .92rem; font-weight: 600; color: #cfe2ef; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--aqua), var(--gold)); transition: width .35s var(--ease-out); border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.lang-switch { position: relative; }
.lang-switch > button {
  display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); font-weight: 700; font-size: .85rem;
}
.lang-menu {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0; min-width: 170px;
  background: rgba(8, 24, 42, .96); border: 1px solid var(--glass-brd); border-radius: 14px;
  padding: 8px; display: none; box-shadow: var(--shadow-lg);
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu button { display: flex; width: 100%; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 10px; font-size: .9rem; font-weight: 600; }
.lang-menu button:hover, .lang-menu button.active { background: var(--aqua-soft); color: var(--aqua); }
.cart-btn { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); transition: all .3s; }
.cart-btn:hover { background: var(--aqua-soft); border-color: var(--aqua); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -7px; inset-inline-end: -7px; min-width: 21px; height: 21px; padding: 0 5px;
  border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #1c1503;
  font-size: .72rem; font-weight: 800; display: grid; place-items: center;
  transition: transform .3s var(--ease-out);
}
.cart-count.bump { animation: bump .5s var(--ease-out); }
@keyframes bump { 30% { transform: scale(1.5); } }
.book-pill {
  padding: 12px 26px; border-radius: 40px; font-weight: 800; font-size: .88rem; letter-spacing: .02em;
  background: linear-gradient(120deg, var(--gold) 0%, #f4dfae 50%, var(--gold-deep) 100%);
  background-size: 180% auto; color: #201705;
  transition: background-position .5s, transform .3s, box-shadow .3s;
  box-shadow: 0 8px 30px rgba(232, 197, 118, .25);
}
.book-pill:hover { background-position: 100% center; transform: translateY(-2px); box-shadow: 0 14px 40px rgba(232, 197, 118, .4); }
#hamburger { display: none; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); place-items: center; }
#hamburger span { display: block; width: 20px; height: 2px; background: #fff; margin: 2.5px 0; border-radius: 2px; transition: .3s; }
@media (max-width: 1080px) {
  .nav-links {
    position: fixed; top: 0; inset-inline-end: 0; height: 100dvh; width: min(330px, 85vw);
    background: rgba(5, 17, 31, .97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(110%); transition: transform .55s var(--ease-out);
    border-inline-start: 1px solid var(--glass-brd); z-index: -1;
  }
  html[dir="rtl"] .nav-links { transform: translateX(-110%); }
  .nav-links.open { transform: none !important; }
  .nav-links a { font-size: 1.2rem; }
  #hamburger { display: grid; }
  #hamburger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  #hamburger.open span:nth-child(2) { opacity: 0; }
  #hamburger.open span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .book-pill { display: none; }
}

/* ══ HERO ═══════════════════════════════════════════════ */
#hero { position: relative; height: 100svh; min-height: 640px; display: grid; place-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 2.2s ease;
}
.hero-media .slide.on { opacity: 1; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.16); } }
.hero-shade {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(110% 70% at 50% 108%, rgba(4, 16, 30, .96) 0%, rgba(4, 16, 30, .25) 55%, transparent 100%),
    linear-gradient(180deg, rgba(4, 16, 30, .62) 0%, rgba(4, 16, 30, .12) 34%, rgba(4, 16, 30, .78) 100%);
}
.hero-grain { position: absolute; inset: 0; z-index: 3; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero-bubbles { position: absolute; inset: 0; z-index: 3; overflow: hidden; pointer-events: none; }
.hero-bubbles i {
  position: absolute; bottom: -60px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.05);
  animation: rise linear infinite;
}
@keyframes rise { to { transform: translateY(-118vh) translateX(6vw); opacity: 0; } }
.hero-inner { position: relative; z-index: 5; text-align: center; padding-top: 40px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px; border-radius: 40px; font-size: .74rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 700;
  color: var(--sand); background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(232, 197, 118, .3); backdrop-filter: blur(8px);
  margin-bottom: 30px;
}
html[dir="rtl"] .hero-kicker { letter-spacing: .12em; }
.hero-title { font-size: clamp(3rem, 9.2vw, 7.6rem); text-shadow: 0 20px 60px rgba(0,0,0,.45); }
.hero-title .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero-title .w > span { display: inline-block; transform: translateY(115%); }
.hero-sub { max-width: 660px; margin: 26px auto 40px; color: #dceaf5; font-size: clamp(1rem, 1.6vw, 1.16rem); opacity: 0; }
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; opacity: 0; }
.btn-hero {
  position: relative; overflow: hidden;
  padding: 17px 40px; border-radius: 50px; font-weight: 800; font-size: .98rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.btn-hero.primary { background: linear-gradient(120deg, var(--aqua), #0fa8a0); color: #032420; box-shadow: 0 14px 44px rgba(23, 211, 196, .35); }
.btn-hero.ghost { border: 1.5px solid rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.05); }
.btn-hero:hover { transform: translateY(-4px) scale(1.02); }
.btn-hero.primary:hover { box-shadow: 0 22px 60px rgba(23, 211, 196, .5); }
.btn-hero .shine { position: absolute; top: 0; height: 100%; width: 40%; inset-inline-start: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); animation: shineSweep 3.6s ease-in-out infinite; }
@keyframes shineSweep { 55%, 100% { inset-inline-start: 130%; } }
.hero-stats {
  position: absolute; bottom: 0; inset-inline: 0; z-index: 6;
  background: linear-gradient(180deg, transparent, rgba(3, 12, 22, .6));
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.hstat { padding: 22px 10px 30px; text-align: center; opacity: 0; }
.hstat b { display: block; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--gold); }
.hstat span { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.scroll-hint {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.65);
  opacity: 0;
}
.scroll-hint .mouse { width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-hint .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: var(--aqua); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 50% { transform: translateY(10px); opacity: 0; } }
@media (max-width: 760px) {
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hstat { padding: 14px 6px; }
  .scroll-hint { display: none; }
}

/* ══ TICKER ═════════════════════════════════════════════ */
.ticker {
  position: relative; z-index: 10;
  background: linear-gradient(90deg, #0b2036, #0e2c49 50%, #0b2036);
  border-block: 1px solid rgba(232, 197, 118, .22);
  overflow: hidden; padding: 15px 0;
}
.ticker-track { display: flex; gap: 56px; width: max-content; animation: ticker 150s linear infinite; direction: ltr; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; font-size: .86rem; font-weight: 600; color: #cfe2ef; }
.ticker-track span b { color: var(--gold); font-weight: 800; }
.ticker-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--aqua); }

/* ══ EXPERIENCES ════════════════════════════════════════ */
#experiences { padding: clamp(80px, 10vw, 140px) 0; background:
  radial-gradient(60% 40% at 85% 0%, rgba(23, 211, 196, .07), transparent),
  radial-gradient(50% 35% at 10% 100%, rgba(232, 197, 118, .05), transparent); }
.filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 52px; }
.fbtn {
  padding: 11px 24px; border-radius: 40px; font-weight: 700; font-size: .88rem; color: var(--mute);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03);
  transition: all .35s var(--ease-out);
}
.fbtn:hover { color: #fff; border-color: rgba(23,211,196,.5); transform: translateY(-2px); }
.fbtn.active { color: #032420; background: linear-gradient(120deg, var(--aqua), #10b3aa); border-color: transparent; box-shadow: 0 10px 30px rgba(23,211,196,.3); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 26px; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(170deg, rgba(15, 42, 70, .55), rgba(7, 22, 40, .85));
  border: 1px solid var(--glass-brd);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  transform-style: preserve-3d; will-change: transform;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 34px 70px rgba(0,0,0,.5), 0 0 0 1px rgba(23,211,196,.25); border-color: rgba(23,211,196,.4); }
.card-img, .feat, .svc, .car-visual .car-img, .ci img {
  background: linear-gradient(110deg, #0b2543 25%, #123a63 42%, #0b2543 60%);
  background-size: 220% 100%;
  animation: skel 1.8s linear infinite;
}
@keyframes skel { to { background-position: -220% 0; } }
.card-img { position: relative; height: 235px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.12); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7, 22, 40, .95)); }
.badges { position: absolute; top: 14px; inset-inline-start: 14px; display: flex; flex-wrap: wrap; gap: 7px; z-index: 2; }
.badge { padding: 5px 12px; border-radius: 30px; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.badge.hot { background: rgba(255, 94, 58, .9); color: #fff; }
.badge.top { background: rgba(232, 197, 118, .92); color: #241a04; }
.badge.rec { background: rgba(23, 211, 196, .88); color: #043b36; }
.badge.must { background: rgba(255, 255, 255, .92); color: #0a2440; }
.price-tag {
  position: absolute; bottom: 14px; inset-inline-end: 14px; z-index: 2;
  display: flex; align-items: baseline; gap: 4px;
  padding: 9px 16px; border-radius: 16px;
  background: rgba(5, 16, 30, .72); backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 197, 118, .5);
  box-shadow: 0 8px 26px rgba(0,0,0,.4);
}
.price-tag b { font-size: 1.35rem; color: var(--gold); font-weight: 800; }
.price-tag small { color: var(--mute); font-size: .7rem; }
.duration {
  position: absolute; bottom: 14px; inset-inline-start: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 700; color: #dceaf5;
  padding: 7px 12px; border-radius: 30px; background: rgba(5, 16, 30, .6); backdrop-filter: blur(8px);
}
.duration svg { width: 13px; height: 13px; }
.card-body { padding: 22px 22px 24px; }
.card-body h3 { font-size: 1.42rem; margin-bottom: 8px; }
.card-body p { color: var(--mute); font-size: .9rem; min-height: 56px; }
.card-actions { display: flex; gap: 10px; margin-top: 18px; }
.add-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 16px; border-radius: 14px; font-weight: 800; font-size: .88rem;
  background: linear-gradient(120deg, rgba(23, 211, 196, .16), rgba(23, 211, 196, .05));
  border: 1px solid rgba(23, 211, 196, .45); color: var(--aqua);
  transition: all .35s var(--ease-out); position: relative; overflow: hidden;
}
.add-btn:hover { background: linear-gradient(120deg, var(--aqua), #0fa8a0); color: #032420; box-shadow: 0 10px 30px rgba(23,211,196,.35); }
.add-btn.done { background: linear-gradient(120deg, var(--gold), var(--gold-deep)); border-color: transparent; color: #241a04; }
.ask-btn {
  display: grid; place-items: center; width: 48px; border-radius: 14px;
  border: 1px solid rgba(37, 211, 102, .45); color: var(--wa);
  transition: all .35s;
}
.ask-btn:hover { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .4); }
.ask-btn svg { width: 20px; height: 20px; }

/* ══ FEATURED ═══════════════════════════════════════════ */
#featured { padding: clamp(80px, 9vw, 130px) 0 40px; }
.feat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.feat {
  position: relative; border-radius: 26px; overflow: hidden; min-height: 380px;
  display: flex; align-items: flex-end; cursor: pointer;
  border: 1px solid var(--glass-brd);
}
.feat:nth-child(1) { grid-column: span 7; min-height: 480px; }
.feat:nth-child(2) { grid-column: span 5; min-height: 480px; }
.feat:nth-child(3) { grid-column: span 5; }
.feat:nth-child(4) { grid-column: span 7; }
.feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.feat:hover img { transform: scale(1.09); }
.feat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 30%, rgba(4, 14, 26, .93)); }
.feat-info { position: relative; z-index: 2; padding: 30px; width: 100%; }
.feat-info .price { font-size: .95rem; color: var(--gold); font-weight: 800; letter-spacing: .05em; }
.feat-info h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 6px 0 10px; }
.feat-info p { color: #c4d8e6; font-size: .92rem; max-width: 460px; }
.feat-info .go {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: .85rem; color: var(--aqua); letter-spacing: .04em;
}
.feat-info .go svg { width: 17px; height: 17px; transition: transform .35s; }
.feat:hover .go svg { transform: translateX(6px); }
html[dir="rtl"] .feat-info .go svg { transform: scaleX(-1); }
html[dir="rtl"] .feat:hover .go svg { transform: scaleX(-1) translateX(6px); }
@media (max-width: 900px) { .feat { grid-column: span 12 !important; min-height: 340px !important; } }

/* ══ CINEMATIC VIDEO BREAKS ═════════════════════════════ */
.cine {
  position: relative; min-height: 78vh; display: grid; place-items: center;
  overflow: hidden; text-align: center;
}
.cine video, .cine .cine-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cine::after { content: ""; position: absolute; inset: 0; background: rgba(3, 11, 21, .5); }
.cine .cine-inner { position: relative; z-index: 3; padding: 90px 6vw; max-width: 980px; }
.cine blockquote { font-family: var(--font-display); font-size: clamp(1.7rem, 4.4vw, 3.3rem); line-height: 1.3; text-shadow: 0 14px 44px rgba(0,0,0,.6); }
.cine .cine-inner h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); margin-bottom: 14px; }
.cine .cine-inner > p { color: #d7e6f2; max-width: 560px; margin: 0 auto 30px; }

/* ══ CAR SECTION ════════════════════════════════════════ */
#car-section { padding: clamp(80px, 10vw, 150px) 0; overflow: hidden;
  background: linear-gradient(180deg, var(--ink) 0%, #071c31 50%, var(--ink) 100%); }
#car-section .car-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(.8); }
#car-section .car-shade { position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(4,16,30,.45) 30%, rgba(4,16,30,.45) 70%, var(--ink) 100%); }
.car-wrap { position: relative; z-index: 2; }
.car-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.car-copy h2 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); margin-bottom: 20px; }
.car-copy h2 .gold-text { display: block; }
.car-copy p { color: var(--mute); font-size: 1.05rem; margin-bottom: 26px; }
.car-points { list-style: none; display: grid; gap: 14px; margin-bottom: 34px; }
.car-points li { display: flex; align-items: center; gap: 13px; font-weight: 600; color: #d9e8f3; }
.car-points li::before { content: "✓"; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: var(--aqua-soft); border: 1px solid rgba(23,211,196,.5); color: var(--aqua); font-size: .8rem; flex-shrink: 0; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 36px; border-radius: 50px; font-weight: 800; font-size: 1rem;
  background: linear-gradient(120deg, var(--wa), #1ba854); color: #fff;
  box-shadow: 0 16px 44px rgba(37, 211, 102, .35);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  position: relative;
}
.btn-wa:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(37, 211, 102, .5); }
.btn-wa svg { width: 21px; height: 21px; }
.car-visual { position: relative; }
.car-visual .car-img { border-radius: 28px; overflow: hidden; border: 1px solid var(--glass-brd); box-shadow: var(--shadow-lg); }
.car-visual .car-img img { height: 430px; width: 100%; object-fit: cover; }
.timer-chip {
  position: absolute; top: -26px; inset-inline-end: -14px;
  background: linear-gradient(150deg, #0d2b4a, #071a2e); border: 1px solid rgba(232,197,118,.5);
  padding: 18px 24px; border-radius: 20px; text-align: center; box-shadow: var(--shadow-lg);
  animation: floaty 5s ease-in-out infinite;
}
.timer-chip b { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.timer-chip span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.pin-chip {
  position: absolute; bottom: -22px; inset-inline-start: -12px;
  display: flex; gap: 12px; align-items: center;
  background: rgba(8, 24, 42, .92); backdrop-filter: blur(10px); border: 1px solid var(--glass-brd);
  padding: 14px 20px; border-radius: 18px; box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out 1.2s infinite;
}
.pin-chip .pulse { position: relative; width: 14px; height: 14px; border-radius: 50%; background: var(--aqua); flex-shrink: 0; }
.pin-chip .pulse::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid var(--aqua); animation: ping 1.6s ease-out infinite; }
@keyframes ping { to { transform: scale(1.9); opacity: 0; } }
.pin-chip span { font-size: .8rem; font-weight: 700; color: #d9e8f3; max-width: 210px; line-height: 1.35; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
@media (max-width: 940px) {
  .car-wrap { grid-template-columns: 1fr; }
  .car-visual { margin-top: 30px; }
  .car-visual .car-img img { height: 320px; }
}

/* ══ SERVICES ═══════════════════════════════════════════ */
#services { padding: clamp(80px, 10vw, 140px) 0; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.svc {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 400px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--glass-brd);
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter 1.2s; filter: saturate(.9); }
.svc:hover img { transform: scale(1.1); filter: saturate(1.15); }
.svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(4,14,26,.1) 20%, rgba(4,14,26,.96) 82%); }
.svc-body { position: relative; z-index: 2; padding: 26px; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(232, 197, 118, .14); border: 1px solid rgba(232, 197, 118, .45); color: var(--gold);
  backdrop-filter: blur(6px);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.svc-body p { color: #b9cddd; font-size: .9rem; margin-bottom: 18px; }
.svc-ask { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: .84rem; color: var(--wa);
  padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(37,211,102,.5); transition: all .3s; }
.svc-ask:hover { background: var(--wa); color: #fff; }
.svc-ask svg { width: 16px; height: 16px; }

/* ══ WHY US ═════════════════════════════════════════════ */
#why { padding: clamp(70px, 9vw, 120px) 0; background: radial-gradient(70% 60% at 50% 0%, rgba(23,211,196,.06), transparent); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.why-card {
  padding: 34px 28px; border-radius: 22px; text-align: center;
  background: linear-gradient(165deg, rgba(15, 42, 70, .5), rgba(7, 22, 40, .8));
  border: 1px solid var(--glass-brd); transition: transform .45s var(--ease-out), border-color .45s;
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(232,197,118,.45); }
.why-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(232,197,118,.65); margin-bottom: 14px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.why-card p { color: var(--mute); font-size: .9rem; }

/* ══ REVIEWS ════════════════════════════════════════════ */
#reviews { padding: clamp(70px, 9vw, 130px) 0; overflow: hidden; }
.rev-track { display: flex; gap: 24px; width: max-content; animation: revScroll 110s linear infinite; direction: ltr; }
#reviews:hover .rev-track { animation-play-state: paused; }
@keyframes revScroll { to { transform: translateX(-50%); } }
.rev {
  width: 400px; max-width: 84vw; padding: 30px; border-radius: 22px;
  background: linear-gradient(165deg, rgba(15, 42, 70, .55), rgba(7, 22, 40, .85));
  border: 1px solid var(--glass-brd); flex-shrink: 0;
}
.rev .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
.rev p { color: #cfe0ec; font-size: .95rem; font-style: italic; margin-bottom: 20px; }
.rev .who { display: flex; align-items: center; gap: 13px; }
.rev .ava { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, var(--aqua), #0b7a72); color: #032420; font-size: 1rem; }
.rev .who b { display: block; font-size: .95rem; }
.rev .who span { font-size: .78rem; color: var(--mute); }

/* ══ CTA BANNER ═════════════════════════════════════════ */
#cta-banner.cine { min-height: 68vh; }

/* ══ FOOTER ═════════════════════════════════════════════ */
footer { background: #030b15; border-top: 1px solid rgba(126, 200, 227, .1); padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--mute); font-size: .92rem; max-width: 320px; }
.foot-col h4 { font-size: .8rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-col a, .foot-col li { display: block; color: var(--mute); font-size: .92rem; margin-bottom: 12px; list-style: none; transition: color .3s, transform .3s; }
.foot-col a:hover { color: var(--aqua); transform: translateX(4px); }
html[dir="rtl"] .foot-col a:hover { transform: translateX(-4px); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; }
.foot-contact svg { width: 17px; height: 17px; color: var(--aqua); flex-shrink: 0; margin-top: 3px; }
.foot-pay { text-align: center; color: var(--gold); font-size: .85rem; font-weight: 600; padding: 16px; border-radius: 14px;
  background: rgba(232, 197, 118, .06); border: 1px dashed rgba(232, 197, 118, .35); margin-bottom: 34px; }
.foot-base { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.06); color: #5f7890; font-size: .82rem; }
@media (max-width: 940px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ══ FLOATING BUTTONS ═══════════════════════════════════ */
#car-fab {
  position: fixed; bottom: 26px; inset-inline-start: 26px; z-index: 1500;
  display: flex; align-items: center; gap: 12px;
  padding: 15px 24px; border-radius: 60px;
  background: linear-gradient(130deg, var(--gold) 0%, #f2d99c 45%, var(--gold-deep) 100%);
  color: #241a04; font-weight: 800; font-size: .92rem;
  box-shadow: 0 18px 50px rgba(232, 197, 118, .45);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  animation: fabPulse 2.6s ease-in-out infinite;
}
#car-fab:hover { transform: translateY(-5px) scale(1.04); }
#car-fab svg { width: 22px; height: 22px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(232,197,118,.45), 0 0 0 0 rgba(232,197,118,.5); }
  50% { box-shadow: 0 18px 50px rgba(232,197,118,.45), 0 0 0 16px rgba(232,197,118,0); }
}
#wa-fab {
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wa), #17a74c); color: #fff;
  box-shadow: 0 16px 44px rgba(37, 211, 102, .4);
  transition: transform .35s var(--ease-out);
  animation: waPulse 2.6s ease-in-out 1.3s infinite;
}
#wa-fab:hover { transform: scale(1.12) rotate(8deg); }
#wa-fab svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 16px 44px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 16px 44px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}
@media (max-width: 620px) {
  #car-fab { padding: 13px 18px; font-size: .82rem; bottom: 20px; inset-inline-start: 16px; }
  #wa-fab { bottom: 20px; inset-inline-end: 16px; width: 54px; height: 54px; }
}

/* ══ CART DRAWER ════════════════════════════════════════ */
#cart-overlay { position: fixed; inset: 0; z-index: 1600; background: rgba(2, 8, 16, .68); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: .45s; }
#cart-overlay.open { opacity: 1; visibility: visible; }
#cart-drawer {
  position: fixed; top: 0; inset-inline-end: 0; z-index: 1700; height: 100dvh; width: min(440px, 94vw);
  background: linear-gradient(190deg, #0a2440, #050f1d);
  border-inline-start: 1px solid var(--glass-brd);
  transform: translateX(105%); transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column;
}
html[dir="rtl"] #cart-drawer { transform: translateX(-105%); }
#cart-drawer.open { transform: none !important; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cart-head h3 { font-size: 1.5rem; }
.cart-close { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); transition: .3s; }
.cart-close:hover { background: rgba(255, 107, 107, .2); color: var(--danger); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 26px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { margin: auto; text-align: center; color: var(--mute); padding: 20px; }
.cart-empty svg { width: 60px; height: 60px; opacity: .4; margin-bottom: 16px; }
.cart-empty b { display: block; color: #dceaf5; font-size: 1.1rem; margin-bottom: 6px; }
.ci { display: flex; gap: 13px; padding: 12px; border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); }
.ci img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.ci-info { flex: 1; min-width: 0; }
.ci-info b { display: block; font-size: .92rem; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ci-info .p { color: var(--gold); font-weight: 800; font-size: .9rem; }
.ci-qty { display: flex; align-items: center; gap: 10px; margin-top: 7px; }
.ci-qty button { width: 25px; height: 25px; border-radius: 8px; background: rgba(255,255,255,.09); font-weight: 800; font-size: .9rem; transition: .25s; }
.ci-qty button:hover { background: var(--aqua); color: #032420; }
.ci-qty span { font-weight: 800; min-width: 18px; text-align: center; font-size: .9rem; }
.ci-del { align-self: flex-start; color: #6e8aa0; transition: .3s; padding: 4px; }
.ci-del:hover { color: var(--danger); transform: scale(1.15); }
.ci-del svg { width: 16px; height: 16px; }
.cart-foot { padding: 20px 26px 26px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(4, 12, 24, .6); }
.cart-field { margin-bottom: 14px; }
.cart-field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-bottom: 7px; }
.cart-field input {
  width: 100%; padding: 13px 16px; border-radius: 13px; font-family: inherit; font-size: .95rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); color: #fff;
  transition: border-color .3s; color-scheme: dark;
}
.cart-field input:focus { outline: none; border-color: var(--aqua); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin: 16px 0; font-size: 1.05rem; }
.cart-total b { font-size: 1.65rem; color: var(--gold); font-family: var(--font-display); }
.cart-book {
  width: 100%; display: inline-flex; justify-content: center; align-items: center; gap: 12px;
  padding: 17px; border-radius: 16px; font-weight: 800; font-size: 1rem;
  background: linear-gradient(120deg, var(--wa), #17a74c); color: #fff;
  box-shadow: 0 14px 38px rgba(37, 211, 102, .3);
  transition: transform .3s, box-shadow .3s;
}
.cart-book:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(37,211,102,.45); }
.cart-book:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.cart-book svg { width: 20px; height: 20px; }
.cart-clear { width: 100%; text-align: center; margin-top: 12px; color: #6e8aa0; font-size: .82rem; font-weight: 600; transition: .3s; }
.cart-clear:hover { color: var(--danger); }

/* ══ TOAST ══════════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 104px; left: 50%; transform: translate(-50%, 30px); z-index: 1590;
  display: flex; align-items: center; gap: 12px;
  padding: 15px 26px; border-radius: 50px; font-weight: 700; font-size: .92rem;
  background: rgba(8, 26, 46, .95); border: 1px solid rgba(23, 211, 196, .5);
  box-shadow: 0 20px 50px rgba(0,0,0,.5); backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transition: .45s var(--ease-out);
  max-width: 92vw; text-align: center;
}
#toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
#toast .tick { width: 22px; height: 22px; border-radius: 50%; background: var(--aqua); color: #032420; display: grid; place-items: center; font-size: .75rem; flex-shrink: 0; }

/* ══ misc ═══════════════════════════════════════════════ */
.section-fade { position: absolute; inset-inline: 0; height: 120px; pointer-events: none; z-index: 4; }
.section-fade.top { top: 0; background: linear-gradient(180deg, var(--ink), transparent); }
.section-fade.bottom { bottom: 0; background: linear-gradient(0deg, var(--ink), transparent); }
/* tactile feedback on touch */
.btn-hero:active, .add-btn:active, .ask-btn:active, .btn-wa:active, .book-pill:active,
.fbtn:active, .lang-btn:active, .cart-book:active, #car-fab:active, #wa-fab:active, .svc-ask:active { transform: scale(.96); }

/* ══ MOBILE-FIRST REFINEMENTS ═══════════════════════════ */
@media (max-width: 760px) {
  /* hero: natural flow — no overlaps */
  #hero { height: auto; min-height: 100svh; padding-top: 108px; display: flex; flex-direction: column; justify-content: center; }
  .hero-inner { padding-top: 0; }
  .hero-kicker { letter-spacing: .2em; font-size: .64rem; padding: 9px 16px; margin-bottom: 24px; }
  .hero-title { font-size: clamp(2.7rem, 12.5vw, 4rem); }
  .hero-sub { margin: 20px auto 30px; padding-inline: 2vw; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .btn-hero { width: min(100%, 330px); text-align: center; }
  .hero-stats { position: static; margin-top: 42px; background: none; }
  .hstat { padding: 18px 6px; }
  .hstat b { font-size: 1.6rem; }
  .hstat span { font-size: .66rem; letter-spacing: .1em; }

  /* cinematic breaks: tighter on small screens */
  .cine { min-height: 64vh; }
  #cta-banner.cine { min-height: 58vh; }

  /* section headers */
  .kicker { letter-spacing: .26em; font-size: .64rem; max-width: 88vw; text-align: center; }
  .kicker::before, .kicker::after { width: 22px; flex-shrink: 0; }
  html[dir="rtl"] .kicker { letter-spacing: .12em; }

  /* filters: swipeable pill row */
  .filters {
    flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    margin-inline: -4vw; padding: 4px 4vw 14px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .filters::-webkit-scrollbar { display: none; }
  .fbtn { flex: 0 0 auto; scroll-snap-align: start; }

  /* cards */
  .card-body p { min-height: 0; }
  .card-img { height: 210px; }

  /* car section */
  .timer-chip { top: -20px; inset-inline-end: 4px; padding: 14px 18px; }
  .timer-chip b { font-size: 2rem; }
  .pin-chip { bottom: -18px; inset-inline-start: 4px; padding: 11px 15px; }
  .pin-chip span { font-size: .72rem; max-width: 180px; }

  /* floating buttons: compact + safe-area */
  #car-fab { padding: 12px 17px; font-size: .8rem; gap: 9px;
    bottom: calc(16px + env(safe-area-inset-bottom)); inset-inline-start: 14px; }
  #car-fab svg { width: 19px; height: 19px; }
  #wa-fab { width: 52px; height: 52px;
    bottom: calc(16px + env(safe-area-inset-bottom)); inset-inline-end: 14px; }
  #wa-fab svg { width: 24px; height: 24px; }
  @keyframes fabPulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(232,197,118,.4), 0 0 0 0 rgba(232,197,118,.45); }
    50% { box-shadow: 0 10px 28px rgba(232,197,118,.4), 0 0 0 10px rgba(232,197,118,0); }
  }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.45); }
    50% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 10px rgba(37,211,102,0); }
  }

  /* reviews cards */
  .rev { width: 320px; padding: 24px; }

  /* footer */
  footer { padding: 54px 0 26px; }
  .foot-base { justify-content: center; text-align: center; }
}

/* compact top bar on phones */
@media (max-width: 640px) {
  #navbar { padding: 14px 0; }
  #navbar.scrolled { padding: 10px 0; }
  .nav-inner { gap: 10px; }
  .brand { font-size: 1.12rem; gap: 8px; }
  .brand svg { width: 34px; height: 34px; }
  .nav-cta { gap: 8px; }
  .lang-switch > button { padding: 8px 10px; font-size: .76rem; gap: 5px; }
  .cart-btn { width: 41px; height: 41px; border-radius: 12px; }
  .cart-btn svg { width: 18px; height: 18px; }
  #hamburger { width: 41px; height: 41px; border-radius: 12px; }
  .lang-menu { min-width: 150px; }
  #toast { bottom: calc(88px + env(safe-area-inset-bottom)); font-size: .84rem; padding: 13px 20px; }
}
@media (max-width: 380px) {
  #lang-label { display: none; }
  .brand { font-size: 1.02rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
