/* ============================================================
   JANAKI KOMERC  |  Main Stylesheet
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  color-scheme: light;
  --red:        #cc1f2f;
  --red-dk:     #a01825;
  --red-lt:     rgba(204, 31, 47, 0.08);
  --ink:        #0f172a;
  --ink2:       #1f2937;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --surface:    #ffffff;
  --bg:         #f7f7f9;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-sm:  0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow:     0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg:  0 16px 40px rgba(15, 23, 42, 0.18);
  --max-w:      1200px;
  --nav-h:      72px;
}

/* ── DARK MODE TOKENS ────────────────────────────────────── */
[data-theme="dark"] {
  color-scheme: dark;
  --ink:        #e6edf3;
  --ink2:       #c9d1d9;
  --muted:      #8b949e;
  --border:     #30363d;
  --surface:    #161b22;
  --bg:         #0d1117;
  --red-lt:     rgba(204, 31, 47, 0.16);
  --shadow-sm:  0 4px 14px rgba(0,0,0,.5);
  --shadow:     0 8px 24px rgba(0,0,0,.55);
  --shadow-lg:  0 16px 40px rgba(0,0,0,.65);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Manrope', 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
}

img, iframe, video, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: .95rem;
}

/* ── BTN ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(204,31,47,.3);
}
.btn-red:hover {
  background: var(--red-dk);
  box-shadow: 0 10px 24px rgba(204,31,47,.38);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline-red:hover { background: var(--red-lt); }

.btn-white {
  background: #fff;
  color: var(--red-dk);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.btn-white:hover { box-shadow: 0 12px 28px rgba(0,0,0,.2); }

/* ── HEADER / NAV ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  box-shadow: 0 2px 18px rgba(15,23,42,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

header.scrolled {
  box-shadow: 0 4px 28px rgba(15,23,42,.15);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

/* logo */
.nav-logo img {
  height: 46px;
  width: auto;
}

/* desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-item > .nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink);
  transition: color .18s, background .18s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-links a:hover,
.nav-item > .nav-link:hover { color: var(--red); background: var(--red-lt); }

/* dropdown wrapper */
.nav-item { position: relative; }

.nav-arrow {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  transition: transform .2s;
}

.nav-item:hover .nav-arrow,
.nav-item.is-open .nav-arrow { transform: rotate(-135deg) translateY(-2px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: .87rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--red-lt); color: var(--red); }

/* nav right side */
.nav-end { display: flex; align-items: center; gap: 10px; }

/* language button */
.lang-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.lang-btn:hover { border-color: var(--red); box-shadow: 0 4px 12px rgba(204,31,47,.18); }

.lang-btn img { width: 26px; height: 26px; border-radius: 4px; object-fit: cover; }

/* ── THEME BUTTON ────────────────────────────────────────── */
.theme-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s, background .2s, color .2s;
}
.theme-btn:hover {
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(204,31,47,.2);
  color: var(--ink);
}
/* Sun = shown in dark mode (switch to light) */
.theme-btn .fa-sun  { color: #f59e0b; }
/* Moon = shown in light mode (switch to dark) */
.theme-btn .fa-moon { color: #818cf8; }

/* ── THEME ICON SPIN ANIMATION ───────────────────────────── */
@keyframes theme-icon-spin {
  0%   { transform: rotate(0deg)   scale(1);    filter: none; }
  20%  { transform: rotate(130deg) scale(1.4);  filter: brightness(1.5); }
  50%  { transform: rotate(240deg) scale(0.85); filter: brightness(0.8); }
  75%  { transform: rotate(340deg) scale(1.15); filter: brightness(1.2); }
  100% { transform: rotate(360deg) scale(1);    filter: none; }
}
.theme-icon.theme-icon-spin {
  animation: theme-icon-spin 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color .2s;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle:hover { border-color: var(--red); }

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

/* ── LANGUAGE DRAWER ─────────────────────────────────────── */
.lang-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 240px;
  height: 100vh;
  background: linear-gradient(160deg, var(--red), var(--red-dk));
  padding: 20px 16px;
  box-shadow: -14px 0 40px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
  transform: translateX(105%);
  opacity: 0;
  visibility: hidden;
  transition: transform .25s ease, opacity .22s ease, visibility .22s ease;
}

body.lang-open .lang-drawer {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.lang-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.lang-close,
.lang-icon-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.lang-close:hover,
.lang-icon-btn:hover {
  background: rgba(255,255,255,.32);
  transform: translateY(-1px);
}

.lang-icon-btn[aria-expanded="true"] {
  background: rgba(255,255,255,.36);
}

.lang-flags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lang-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s ease, transform .2s ease;
}
.lang-link:hover,
.lang-link.is-active {
  background: rgba(255,255,255,.22);
  transform: translateX(-2px);
}

.lang-link img { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; }

.lang-search-hint {
  margin-top: 4px;
  margin-bottom: 0;
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  line-height: 1.55;
}

.lang-search-cta {
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
}

.lang-search-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: max-height .36s ease, opacity .26s ease, transform .28s ease;
}

.lang-drawer.search-open .lang-search-panel {
  max-height: 330px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  color: rgba(255,255,255,.92);
}

.lang-search-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: .84rem;
}

.lang-search-input-wrap input::placeholder {
  color: rgba(255,255,255,.72);
}

.lang-search-results {
  margin-top: 8px;
  max-height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 2px;
}

.lang-search-results::-webkit-scrollbar { width: 7px; }
.lang-search-results::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.32);
  border-radius: 999px;
}

.lang-search-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 8px 10px;
  font-size: .82rem;
  cursor: pointer;
  animation: langItemIn .24s ease both;
  transition: background .2s ease, transform .2s ease;
}

.lang-search-item:hover {
  background: rgba(255,255,255,.24);
  transform: translateX(-2px);
}

.lang-search-item span:last-child {
  opacity: .8;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lang-search-empty {
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  padding: 10px 2px;
}

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

/* overlay when drawer open */
.lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
body.lang-open .lang-overlay { opacity: 1; visibility: visible; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(204,31,47,.9), transparent 60%),
    radial-gradient(ellipse 80% 80% at 100% 50%, rgba(160,24,37,.85), transparent 65%),
    var(--red);
  color: #fff;
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/reklami/Group1.jpg') center/cover no-repeat;
  opacity: .1;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}

.hero-title span { opacity: .88; font-weight: 400; }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: .88;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }

.hero-stat {}
.hero-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat-lbl {
  font-size: .75rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.18);
}

.hero-img-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero-badge-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text strong { display: block; color: var(--ink); font-size: .9rem; }
.hero-badge-text span { color: var(--muted); font-size: .76rem; }

/* ── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--red-lt); }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ── SECTION WRAPPER ─────────────────────────────────────── */
.section {
  padding: 80px 20px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── DEALS / PROMOS GRID ─────────────────────────────────── */
.promos-section { background: var(--bg); }

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

.promo-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.promo-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.promo-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

.promo-tag {
  display: inline-block;
  background: var(--red-lt);
  color: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(204,31,47,.18);
  width: fit-content;
}

.promo-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.promo-card-desc { font-size: .85rem; color: var(--muted); margin-top: 2px; flex: 1; }

/* featured promo card (spans 2 columns) */
.promo-card.featured { grid-column: span 2; flex-direction: row; }
.promo-card.featured .promo-card-img { width: 55%; height: auto; min-height: 260px; flex-shrink: 0; }
.promo-card.featured .promo-card-body { justify-content: center; padding: 28px; }
.promo-card.featured .promo-card-title { font-size: 1.2rem; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(204,31,47,.35);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }

.about-text-col {}
.about-text-col p { color: var(--ink2); font-size: .97rem; line-height: 1.8; margin-bottom: 18px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.about-feat-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--red-lt);
  border: 1px solid rgba(204,31,47,.15);
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: .95rem;
  flex-shrink: 0;
}

.about-feat h4 { font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.about-feat p { font-size: .77rem; color: var(--muted); line-height: 1.5; }

/* ── BRANDS CAROUSEL ─────────────────────────────────────── */
.brands-section { background: var(--bg); }

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.2rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.carousel-btn:hover {
  transform: scale(1.06);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(204,31,47,.18);
}
.carousel-btn:active { transform: scale(.96); }

/* Prev/Next arrows are only usable while the carousel is manually paused */
.carousel-nav {
  opacity: 0;
  pointer-events: none;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s ease;
}
.carousel-wrap.paused .carousel-nav {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.carousel-controls { display: flex; justify-content: center; margin-top: 14px; }
.carousel-playpause {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.carousel-playpause:hover {
  transform: scale(1.06);
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(204,31,47,.18);
}
.carousel-playpause:active { transform: scale(.96); }

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 16px 12px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.brand-slide {
  flex: 0 0 calc(100% / 6);
  min-width: 0;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .2s;
  position: relative;
}
.brand-slide:hover {
  border-color: rgba(204,31,47,.3);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand-slide img {
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.1));
}

.carousel-hint {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: .86rem;
}
.carousel-hint i { color: var(--red); margin-right: 6px; }

/* ── BRAND INFO POPUP ────────────────────────────────────── */
.brand-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.brand-modal-backdrop.open { opacity: 1; visibility: visible; }

.brand-modal {
  --brand-accent:  var(--red);
  --brand-accent2: #0f172a;
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 900px;
  max-width: 94vw;
  height: 700px;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.96);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.brand-modal-backdrop.open .brand-modal { transform: translateY(0) scale(1); }

.brand-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}
.brand-modal-close:hover { background: rgba(255,255,255,.4); transform: rotate(90deg); }

/* Ribbon — brand's first color + logo top-left */
.brand-modal-ribbon {
  background: linear-gradient(120deg, var(--brand-accent) 0%, color-mix(in srgb, var(--brand-accent) 60%, black) 100%);
  padding: 22px 60px 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand-modal-ribbon-logo {
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  min-height: 56px;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-modal-ribbon-logo img { max-height: 38px; max-width: 150px; object-fit: contain; }
.brand-modal-ribbon-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.15);
}

/* 4px separator stripe — brand's second color */
.brand-modal-divider { height: 4px; width: 100%; background: var(--brand-accent2); flex-shrink: 0; }

/* Split body: history (left) + auto-scrolling promo feed (right) */
.brand-modal-split {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.brand-modal-history {
  padding: 30px 32px;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}
.brand-modal-history-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand-accent2);
  margin-bottom: 12px;
}
.brand-modal-history p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.85;
  white-space: pre-line;
}

.brand-modal-feed { position: relative; overflow: hidden; background: var(--bg); }
.brand-feed-viewport { position: absolute; inset: 0; overflow: hidden; }
.brand-feed-track { display: flex; flex-direction: column; gap: 14px; padding: 18px; will-change: transform; }

.brand-feed-post {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.brand-feed-post:hover { transform: translateY(-3px) scale(1.015); box-shadow: var(--shadow-lg); }
.brand-feed-post img { width: 100%; height: 110px; object-fit: cover; display: block; }
.brand-feed-post-body { padding: 10px 14px 14px; }
.brand-feed-post-tag {
  display: inline-block;
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--brand-accent);
  margin-bottom: 4px;
}
.brand-feed-post-title { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.brand-feed-post-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-feed-empty {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}
.brand-feed-empty.show { display: flex; }
.brand-feed-empty i { font-size: 1.8rem; opacity: .5; }
.brand-feed-empty p { font-size: .86rem; }

/* Feed play/pause + manual-scroll controls */
.brand-feed-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.brand-feed-controls.hidden { display: none; }

.feed-ctrl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, .55);
  color: #fff;
  font-size: .74rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: background .2s ease, transform .2s ease, opacity .2s ease, visibility .2s ease;
}
.feed-ctrl-btn:hover { background: var(--brand-accent); transform: scale(1.1); }
.feed-ctrl-btn:active { transform: scale(.94); }

.feed-ctrl-play {
  width: 36px;
  height: 36px;
  font-size: .82rem;
  background: var(--brand-accent);
}
.feed-ctrl-play:hover { background: color-mix(in srgb, var(--brand-accent) 75%, black); transform: scale(1.08); }

.feed-ctrl-nav {
  opacity: 0;
  visibility: hidden;
  transform: scale(.8) translateY(0);
  pointer-events: none;
}
.brand-feed-controls.paused .feed-ctrl-nav {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
}

@media (max-width: 860px) {
  .brand-modal { width: 94vw; height: 88vh; }
  .brand-modal-split { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; }
  .brand-modal-history { border-right: none; border-bottom: 1px solid var(--border); overflow-y: visible; }
  .brand-modal-feed { min-height: 260px; }
}

.brand-modal-hint {
  flex-shrink: 0;
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
  padding: 9px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ── BRAND FEED POST — ZOOM POPUP ────────────────────────── */
.post-zoom-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.post-zoom-backdrop.open { opacity: 1; visibility: visible; }

.post-zoom {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 560px;
  max-width: 92vw;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(.9) translateY(10px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.post-zoom-backdrop.open .post-zoom { transform: scale(1) translateY(0); }

.post-zoom-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.75);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
  box-shadow: var(--shadow-sm);
}
.post-zoom-close:hover { background: #fff; transform: rotate(90deg); }

.post-zoom-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.post-zoom-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-zoom-body { padding: 26px 30px 32px; }
.post-zoom-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  background: rgba(204,31,47,.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.post-zoom-body h3 { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -.01em; }
.post-zoom-body p { color: var(--muted); font-size: .94rem; line-height: 1.8; white-space: pre-line; }



/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: var(--surface); }

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

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: rgba(204,31,47,.3); box-shadow: var(--shadow); }

.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-lt);
  border: 1px solid rgba(204,31,47,.15);
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--red-dk);
}

.contact-card h5 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
}

.contact-card p {
  font-size: .875rem;
  color: var(--ink2);
  line-height: 1.55;
}

/* ── TRANSPORT ───────────────────────────────────────────── */
.transport-section { background: var(--bg); }

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

.transport-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.transport-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.transport-route {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transport-route-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.transport-route h3 { font-size: .95rem; font-weight: 800; color: var(--ink); line-height: 1.3; }

.transport-detail { display: flex; flex-direction: column; gap: 8px; }

.transport-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
}

.transport-row i {
  color: var(--red);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}

.transport-row span { color: var(--ink2); line-height: 1.5; }

.transport-row strong { color: var(--ink); font-weight: 700; }

/* ── LOCATION ────────────────────────────────────────────── */
.location-section { background: var(--surface); }

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-card-label {
  padding: 14px 18px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--red-dk);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-card-label i { color: var(--red); }

.map-card iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── VEHICLE TRACKER FEATURE ─────────────────────────────── */
.vehicle-feature-section { background: var(--bg); }

.vf-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.vf-feature-list { list-style: none; margin: 6px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.vf-feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.vf-feature-list li i {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  background: var(--red-lt); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.vf-feature-list li strong { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 2px; }
.vf-feature-list li span { color: var(--muted); font-size: .85rem; line-height: 1.55; }

.vf-preview { display: flex; flex-direction: column; gap: 18px; position: relative; }

.vf-mock-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow);
}
.vf-mock-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vf-mock-logo {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.2rem;
}
.vf-mock-title strong { display: block; color: var(--ink); font-size: 1rem; }
.vf-mock-title span { color: var(--muted); font-size: .8rem; }
.vf-mock-plate {
  display: inline-flex; height: 40px; border-radius: 6px; overflow: hidden; border: 2px solid #0f172a;
  margin-bottom: 14px;
}
.vf-band {
  width: 32px; background: #1d4ed8; color: #fbbf24; font-size: .5rem; font-weight: 800; line-height: 1.25;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.vf-num {
  background: #fff; color: #0f172a; font-weight: 800; letter-spacing: .05em; font-size: 1rem;
  display: flex; align-items: center; padding: 0 14px; font-family: 'Arial Narrow', Arial, sans-serif;
}
.vf-mock-reg {
  display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.vf-mock-reg.green { background: rgba(34,197,94,.12); color: #16a34a; }

.vf-mock-wallet {
  background: linear-gradient(135deg, #16202e 0%, #0f172a 55%, #050b16 100%);
  border-radius: var(--radius-lg); padding: 20px 22px; color: #fff; box-shadow: var(--shadow);
  position: relative; z-index: 2;
}
.vf-mock-wallet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; font-size: .8rem; color: #e5e7eb; font-weight: 700; }
.vf-mock-tag {
  font-size: .6rem; font-weight: 800; letter-spacing: .08em; color: #fbbf24;
  background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.3); padding: 3px 8px; border-radius: 100px;
}
.vf-mock-wallet-name { display: block; font-size: 1.05rem; margin-bottom: 14px; }
.vf-mock-wallet-stats { display: flex; gap: 26px; margin-bottom: 16px; }
.vf-mock-wallet-stats b { display: block; font-size: 1.15rem; }
.vf-mock-wallet-stats span { display: block; font-size: .65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; }
.vf-mock-barcode {
  height: 34px; border-radius: 8px;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px, #fff 5px 6px, transparent 6px 9px, #fff 9px 12px, transparent 12px 14px);
  opacity: .85;
}

/* ── Floating car-brand balloons (below/behind the wallet card) ────────── */
.vf-logo-orbit {
  position: absolute;
  left: 0; right: 0;
  bottom: -104px;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}
.vf-logo-bubble {
  position: absolute;
  width: 76px; height: 76px;
  margin-left: -38px;
  border-radius: 50% 50% 46% 46%;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.24), 0 0 0 3px rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  padding: 13px;
  animation-name: vf-bob;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform-origin: center bottom;
}
.vf-logo-bubble img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }
.vf-logo-bubble.vf-rise { animation: vf-rise .85s cubic-bezier(.34,1.56,.64,1) forwards; }

/* Balloon gloss highlight + tie-off knot */
.vf-bln-shine {
  position: absolute;
  width: 16px; height: 32px;
  left: 11px; top: 9px;
  border-radius: 50%;
  background: rgba(148,163,184,.35);
  filter: blur(2px);
  transform: rotate(20deg);
  pointer-events: none;
}
/* Pop burst fragments + flash */
.vf-bln-burst span {
  position: absolute;
  left: 50%; top: 50%;
  margin-left: -6px; margin-top: -4px;
  width: 13px; height: 9px;
  background: var(--red);
  border-radius: 60% 40% 70% 40%;
  opacity: 0;
}
.vf-bln-flash {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  filter: blur(2px);
}

.vf-logo-bubble.vf-pop {
  animation: none;
  background: transparent;
  box-shadow: none;
}
.vf-logo-bubble.vf-pop img,
.vf-logo-bubble.vf-pop .vf-bln-shine {
  opacity: 0;
  transition: opacity .05s;
}
.vf-logo-bubble.vf-pop .vf-bln-flash { animation: vf-flash .18s ease-out; }
.vf-logo-bubble.vf-pop .vf-bln-burst span { animation: vf-fragment .8s cubic-bezier(.15,.75,.3,1) forwards; }

@keyframes vf-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes vf-flash {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(.1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(7); }
}
@keyframes vf-fragment {
  0%   { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(.25); }
}
@keyframes vf-rise {
  0%   { transform: translateY(-46px) scale(.2);  opacity: 0; }
  55%  { transform: translateY(6px)   scale(1.12); opacity: 1; }
  80%  { transform: translateY(-4px)  scale(.96);  opacity: 1; }
  100% { transform: translateY(0)     scale(1);    opacity: 1; }
}

@media (max-width: 900px) {
  .vf-grid { grid-template-columns: 1fr; gap: 40px; }
  .vf-preview { max-width: 420px; margin: 0 auto; width: 100%; }
}


/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-section {
  padding: 0 20px 80px;
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--red-dk) 0%, var(--red) 55%, #e83a4c 100%);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  right: 80px; bottom: -100px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-text { color: #fff; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-text p { opacity: .85; max-width: 480px; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, var(--red-dk) 0%, var(--red) 100%);
  color: #fff;
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 50px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }

.footer-about { font-size: .87rem; opacity: .85; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }

.social-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .95rem;
  transition: background .18s;
}
.social-icon:hover { background: rgba(255,255,255,.28); }

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .875rem; opacity: .85; transition: opacity .18s; }
.footer-col ul a:hover { opacity: 1; }

/* payments */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-payments img {
  height: 32px;
  width: auto;
  border-radius: 6px;
  background: #fff;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  opacity: .92;
  transition: opacity .18s, transform .18s;
  object-fit: contain;
}
.footer-payments img:hover { opacity: 1; transform: translateY(-2px); }

/* kargo */
.footer-kargo img {
  height: 44px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  opacity: .92;
  transition: opacity .18s;
  object-fit: contain;
  display: block;
}
.footer-kargo img:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 20px;
  text-align: center;
  font-size: .82rem;
  opacity: .75;
}

/* ── Banking partner badge ── */
.footer-bank-section { margin-top: 18px; }
.footer-bank-label {
  font-size: .63rem;
  font-weight: 700;
  opacity: .55;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.footer-bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  padding: 7px 14px;
  text-decoration: none;
  color: inherit;
  transition: background .18s;
}
.footer-bank-badge:hover { background: rgba(255,255,255,.17); }
.footer-bank-badge img { display: block; height: 44px; }
.footer-bank-name small {
  display: block;
  font-size: .63rem;
  opacity: .6;
  font-weight: 500;
  letter-spacing: .03em;
  margin-top: 1px;
}

/* ── SCROLL TO TOP ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  place-items: center;
  box-shadow: 0 8px 24px rgba(204,31,47,.38);
  transition: transform .18s ease;
}
.scroll-top.visible { display: grid; }
.scroll-top:hover { transform: translateY(-3px); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO  (shared: all-news + history)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1f2937 50%, #0f172a 100%);
  padding: 120px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(204,31,47,.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero .section-eyebrow { color: rgba(255,255,255,.55); margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   PAGE: ALL NEWS
   ════════════════════════════════════════════════════════════ */

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-bar label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.filter-bar select {
  padding: 9px 38px 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: inherit;
  font-size: .88rem;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s;
}
.filter-bar select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,31,47,.1); }

/* News collection grid */
.news-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card.is-hidden { display: none; }

/* News card */
.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Brand badge */
.brand-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.brand-badge img {
  height: 20px;
  width: auto;
  display: block;
}

/* Card thumbnail */
.news-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.news-card:hover .news-thumb img { transform: scale(1.05); }

/* Card body */
.news-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.news-body h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.news-body p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s ease;
  width: fit-content;
}
.news-link:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   PAGE: HISTORY / TIMELINE
   ════════════════════════════════════════════════════════════ */
.timeline-section {
  padding: 80px 20px 100px;
}
.timeline-list {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* Center vertical line */
.timeline-list::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--border) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: start;
  margin-bottom: 60px;
  position: relative;
}

/* Left card occupies col 1, node col 2, right side empty */
.timeline-item.is-left .timeline-card  { grid-column: 1; text-align: right; padding-right: 40px; }
.timeline-item.is-left .timeline-node  { grid-column: 2; }
.timeline-item.is-left .timeline-spacer { grid-column: 3; }

/* Right card occupies col 3, node col 2, left side empty */
.timeline-item.is-right .timeline-spacer { grid-column: 1; }
.timeline-item.is-right .timeline-node   { grid-column: 2; }
.timeline-item.is-right .timeline-card   { grid-column: 3; text-align: left; padding-left: 40px; }

/* Card */
.timeline-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.timeline-year {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.03em;
  margin-bottom: 8px;
  line-height: 1;
}
.timeline-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Node circle */
.timeline-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .88rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 7px rgba(204,31,47,.12), var(--shadow-sm);
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

/* Stats highlight in timeline */
.tl-stats {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.tl-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.tl-stat span { font-size: .75rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   HISTORY EXPERIENCE — cinematic scroll-driven timeline
   ════════════════════════════════════════════════════════════ */
.history-experience { padding: 20px 20px 100px; }

.history-scroller {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Left rail: sticky at a fixed viewport offset chosen so a 640px-tall rail
   sits vertically centered while the (much taller) chapters column scrolls ── */
.history-rail-wrap {
  position: sticky;
  top: max(24px, calc(50vh - 320px));
  height: 640px;
  overflow: hidden;
  padding: 0 22px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.history-rail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.history-rail-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  opacity: .4;
  transform: scale(.8);
  filter: blur(1px);
  transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1), filter .5s ease, box-shadow .3s ease, border-color .3s ease;
  flex-shrink: 0;
}
.history-rail-card.is-adjacent { opacity: .8; transform: scale(.92); filter: none; }
.history-rail-card.is-active {
  opacity: 1;
  transform: scale(1.08);
  filter: none;
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}
.history-rail-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red-lt);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.history-rail-card.is-active .history-rail-icon { background: var(--red); color: #fff; }
.history-rail-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.history-rail-year { font-weight: 900; font-size: 1.2rem; color: var(--red); line-height: 1; }
.history-rail-title {
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-progress {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--border);
  border-radius: 2px;
}
.history-progress-bar {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: var(--red);
  border-radius: 2px;
  transition: height .5s cubic-bezier(.22,1,.36,1);
}

/* ── Right chapters ── */
.history-chapters { display: flex; flex-direction: column; gap: 36px; }

.history-chapter {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  min-height: min(78vh, 740px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-chapter-badge {
  display: none;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: var(--red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 16px;
}

.history-chapter-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
}
.history-chapter-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.history-chapter.is-active .history-chapter-media img { transform: scale(1.045); }

.history-chapter-year {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.history-chapter-title {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.history-chapter-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 10px;
}
.history-chapter-more {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--muted);
  opacity: .85;
  max-width: 640px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.history-chapter-body .tl-stats { margin-top: 18px; }
.history-chapter-btn { margin-top: 20px; width: fit-content; }

/* ── Per-milestone photo carousel (reuses .gallery-* look, native scroll-snap) ── */
.history-chapter-gallery {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 4px;
}
.history-chapter-gallery .gallery-viewport {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius);
  scrollbar-width: none;
}
.history-chapter-gallery .gallery-viewport::-webkit-scrollbar { display: none; }
.history-chapter-gallery .gallery-track { display: flex; gap: 14px; }
.history-chapter-gallery .gallery-slide {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 28px) / 3);
  aspect-ratio: 4 / 3;
}
.history-chapter-gallery .carousel-btn[disabled] { opacity: .35; pointer-events: none; }

@media (max-width: 1080px) {
  .history-chapter-gallery .gallery-slide { flex-basis: calc((100% - 14px) / 2); }
}
@media (max-width: 640px) {
  .history-chapter-gallery .gallery-slide { flex-basis: 82%; }
}

.history-loading, .history-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.4rem;
  grid-column: 1 / -1;
}

@media (prefers-reduced-motion: reduce) {
  .history-chapter,
  .history-rail-card,
  .history-chapter-media img,
  .history-rail { transition: none !important; transform: none !important; opacity: 1 !important; filter: none !important; }
}

/* ── Tablet ── */
@media (max-width: 1080px) {
  .history-scroller { grid-template-columns: 280px 1fr; gap: 40px; }
  .history-rail-card { padding: 13px 16px; }
  .history-rail-wrap { height: 560px; top: max(20px, calc(50vh - 280px)); }
}

/* ── Shorter viewports: shrink the rail so it still fits centered ── */
@media (max-height: 760px) {
  .history-rail-wrap { height: 520px; top: max(16px, calc(50vh - 260px)); }
}

/* ── Mobile: collapse to a simple vertical timeline ── */
@media (max-width: 900px) {
  .history-rail-wrap { display: none; }
  .history-scroller { grid-template-columns: 1fr; }
  .history-chapter { min-height: 0; padding: 0; }
  .history-chapter-badge { display: inline-flex; }
  .history-chapter-year { display: none; }
  .history-chapter-media img { height: 260px; }
  .history-chapters { gap: 44px; }
}

/* ════════════════════════════════════════════════════════════
   OUR TEAM — premium carousel (end of history experience)
   ════════════════════════════════════════════════════════════ */
.team-showcase {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #0f172a;
  isolation: isolate;
}
.team-showcase-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(204,31,47,.28) 0%, transparent 55%),
              linear-gradient(180deg, #0f172a 0%, #131b2e 100%);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.team-showcase-bg.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(2px) brightness(.5);
  opacity: .5;
}
.team-showcase .section-eyebrow { color: var(--red); }

.team-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  outline: none;
}
.team-nav-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease, opacity .25s ease, border-color .2s ease;
  z-index: 2;
  /* Only usable while the carousel is manually paused, like the brand carousel */
  opacity: 0;
  pointer-events: none;
  transform: scale(.85);
}
.team-carousel.paused .team-nav-btn { opacity: 1; pointer-events: auto; transform: scale(1); }
.team-nav-btn:hover { background: var(--red); border-color: var(--red); }
.team-nav-btn:active { transform: scale(.94); }

.team-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 18px; }
.team-carousel-controls .team-nav-btn.mobile-nav { display: none; }
.team-playpause {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.team-playpause:hover { background: var(--red); border-color: var(--red); }
.team-playpause:active { transform: scale(.94); }

.team-carousel-viewport {
  flex: 1;
  overflow: hidden;
  padding: 30px 0;
  touch-action: pan-y;
}
.team-carousel-track {
  display: flex;
  align-items: center;
  gap: 28px;
  will-change: transform;
}
.team-card {
  flex: 0 0 240px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  opacity: .45;
  transform: scale(.82);
  transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.team-card.is-adjacent { opacity: .75; transform: scale(.92); }
.team-card.is-active {
  opacity: 1;
  transform: scale(1.08);
  border-color: var(--red);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.team-card-photo { width: 100%; aspect-ratio: 3/4; background: rgba(255,255,255,.05); }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); font-size: 2.4rem; }
.team-card-info { padding: 18px 16px 22px; color: #fff; background: rgba(6,9,20,.78); }
.team-card-info h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.team-card-role { display: block; color: var(--red); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.team-card-info p { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.7); }

.team-carousel-empty { text-align: center; color: rgba(255,255,255,.6); padding: 40px 20px; font-size: 1rem; }

@media (max-width: 640px) {
  /* Carousel spans closer to the screen edges on phones; arrows move down next to Play/Pause */
  .team-showcase { padding-left: 8px; padding-right: 8px; }
  .team-showcase .container { padding-left: 4px; padding-right: 4px; }
  .team-carousel { gap: 0; }
  .team-carousel > .team-nav-btn { display: none; }
  .team-carousel-controls .team-nav-btn.mobile-nav { display: flex; }
  .team-carousel-controls.paused .team-nav-btn.mobile-nav { opacity: 1; pointer-events: auto; transform: scale(1); }
  .team-card { flex: 0 0 82%; }
  .team-nav-btn { width: 40px; height: 40px; }
}

/* ════════════════════════════════════════════════════════════
   PAGE: TEAM & WAREHOUSE
   ════════════════════════════════════════════════════════════ */
.split-showcase {
  padding: 90px 20px;
  background: var(--bg);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-half {
  background: var(--surface);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.split-half:first-child { border-right: 1px solid var(--border); }
.split-half-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--red-lt);
  border: 1px solid rgba(204,31,47,.15);
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 1.3rem;
}
.split-half h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}
.split-half p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}

/* Photo galleries reuse the brand-carousel auto-scroll mechanic */
.gallery-wrap { margin-top: 4px; }
.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-track {
  display: flex;
  gap: 14px;
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 260px;
  min-width: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color: #fff;
  display: flex;
  flex-direction: column;
}
.gallery-caption strong { font-size: .88rem; font-weight: 700; }
.gallery-caption span { font-size: .74rem; opacity: .85; }
.gallery-empty {
  flex: 1;
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .promos-grid { grid-template-columns: 1fr 1fr; }
  .promo-card.featured { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .split-grid { grid-template-columns: 1fr; }
  .split-half:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 14px;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .28s ease, padding .28s ease, opacity .22s ease, visibility .22s ease;
    margin: 0 12px;
    z-index: 800;
  }

  .nav.is-open .nav-links {
    max-height: 600px;
    padding: 12px 14px 16px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a,
  .nav-item > .nav-link { width: 100%; }

  .nav-item { width: 100%; flex-direction: column; align-items: flex-start; }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 14px;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown::before { display: none; }

  .transport-grid { grid-template-columns: 1fr 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
  .brand-slide { flex-basis: calc(100% / 4); }
  .news-collection { grid-template-columns: 1fr 1fr; }

  /* Timeline: collapse to single column */
  .timeline-list::before { left: 22px; transform: none; }
  .timeline-item { grid-template-columns: 1fr; position: relative; padding-left: 66px; }
  .timeline-item.is-left .timeline-card,
  .timeline-item.is-right .timeline-card {
    grid-column: 1; grid-row: 1;
    text-align: left;
    padding-left: 0; padding-right: 0;
  }
  .timeline-item.is-left .timeline-node,
  .timeline-item.is-right .timeline-node {
    position: absolute;
    left: 0; top: 0;
    grid-column: unset; grid-row: unset;
  }
  .timeline-spacer { display: none; }
}

@media (max-width: 680px) {
  .news-collection { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px 70px; }
  .section { padding: 60px 20px; }
  .promos-grid { grid-template-columns: 1fr; }
  .promo-card.featured { grid-column: span 1; flex-direction: column; }
  .promo-card.featured .promo-card-img { width: 100%; height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 28px; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .brand-slide { flex-basis: calc(100% / 3); }
  .split-half { padding: 32px 24px; }
  .gallery-slide { flex-basis: 220px; }
}

@media (max-width: 460px) {
  .hero-title { font-size: 2rem; }
  .brand-slide { flex-basis: calc(100% / 2); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

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

/* ── DARK: FILTER SELECT ARROW ──────────────────────────── */
[data-theme="dark"] .filter-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b949e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ── MOBILE PROMO COLLAPSE ──────────────────────────────── */
@media (max-width: 767px) {
  .promos-grid.promo-collapsed .promo-card:nth-child(n+3) {
    display: none;
  }
  .promo-show-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .promo-show-more-wrap { display: none; }
}

/* ── FOOTER NEWSLETTER ────────────────────────────────── */
.footer-newsletter {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 56px 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-newsletter-inner {
  max-width: 520px;
  margin: 0 auto;
}
.footer-newsletter h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -.3px;
}
.footer-newsletter p {
  font-size: .94rem;
  color: #94a3b8;
  margin: 0 0 28px;
  line-height: 1.6;
}
.nl-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.13);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  gap: 8px;
  transition: border-color .2s;
}
.nl-form:focus-within {
  border-color: rgba(20,184,166,.6);
}
.nl-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #e2e8f0;
  font-size: .94rem;
  font-family: inherit;
}
.nl-form input::placeholder { color: #64748b; }
.nl-submit {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14b8a6;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}
.nl-submit:hover { background: #0d9488; transform: scale(1.07); }
.nl-msg {
  margin-top: 14px;
  font-size: .84rem;
  min-height: 20px;
}
.nl-msg.ok  { color: #4ade80; }
.nl-msg.err { color: #f87171; }

/* ── Google Translate toolbar suppression ─────────────── */
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip { display: none !important; }
body { top: 0 !important; }

/* ── Track Your Order button ─────────────────────────── */
.btn-track-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 18px;
  background: var(--red, #e32e2e);
  color: #fff;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: fit-content;
}
.btn-track-order:hover {
  background: #c72222;
  transform: translateY(-1px);
}

/* ── PARTNERS PAGE ───────────────────────────────────────── */
.partner-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.partner-block + .partner-block { border-top: 1px solid var(--border); }
.partner-block.reverse { grid-template-columns: 1fr 300px; }
.partner-block.reverse .partner-logo-card { order: 2; }

.partner-logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  display: grid;
  place-items: center;
  min-height: 150px;
}
.partner-logo-card img { max-height: 84px; width: auto; object-fit: contain; }

.partner-content .partner-role {
  display: block;
  color: var(--red);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.partner-content h2 { margin-bottom: 14px; }
.partner-content p { color: var(--ink2); font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }

.partner-specialties { list-style: none; margin: 18px 0 22px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.partner-specialties li { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--ink2); line-height: 1.5; }
.partner-specialties li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }

@media (max-width: 760px) {
  .partner-block, .partner-block.reverse { grid-template-columns: 1fr; padding: 40px 0; }
  .partner-block.reverse .partner-logo-card { order: 0; }
  .partner-logo-card { min-height: 120px; }
}
