:root {
  --ink: #090a08;
  --ink-soft: #10120f;
  --surface: #151712;
  --surface-soft: #1c1e17;
  --paper: #f6f0e3;
  --sand: #dfd5c4;
  --muted: #b9ad98;
  --gold: #cfa457;
  --gold-bright: #f5d998;
  --gold-deep: #8b672c;
  --line: rgba(235, 214, 166, .18);
  --line-strong: rgba(235, 214, 166, .36);
  --shadow: 0 26px 70px rgba(0,0,0,.42);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --arabic: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: -30%;
  z-index: -2;
  opacity: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(235,198,120,.34), transparent 34%),
    radial-gradient(circle at 84% 55%, rgba(196,142,52,.30), transparent 36%),
    radial-gradient(circle at 52% 90%, rgba(150,110,46,.26), transparent 38%);
  animation: bg-drift 18s ease-in-out infinite alternate;
}
@keyframes bg-drift {
  0%   { transform: translate3d(-4%, -3%, 0) scale(1.05); }
  50%  { transform: translate3d(5%, 3%, 0) scale(1.16); }
  100% { transform: translate3d(-3%, 5%, 0) scale(1.08); }
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Intro reveal */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #070806;
  transition: visibility .7s step-end, opacity .7s ease;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.6), transparent 30%, transparent 70%, rgba(0,0,0,.55)),
    radial-gradient(ellipse at 50% 50%, transparent 15%, rgba(0,0,0,.48) 80%);
  z-index: -1;
}
.intro.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-grid {
  position: absolute;
  inset: -15%;
  z-index: -2;
  opacity: .25;
  background-image:
    linear-gradient(rgba(223,184,99,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223,184,99,.11) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(700px) rotateX(61deg) translateY(-10%);
  transform-origin: 50% 50%;
  animation: grid-drift 9s linear infinite;
}
.intro-glow { position: absolute; border-radius: 50%; filter: blur(18px); z-index: -2; }
.intro-glow--a { width: 38vw; height: 38vw; background: rgba(187,130,38,.18); top: -16vw; left: -6vw; animation: glow-pulse 7s ease-in-out infinite; }
.intro-glow--b { width: 42vw; height: 42vw; background: rgba(235,209,139,.10); bottom: -22vw; right: -10vw; animation: glow-pulse 8s ease-in-out infinite reverse; }
.intro-content { position: relative; width: min(930px, 92vw); text-align: center; padding: 28px 0; }
.intro-kicker { margin: -13px 0 0; color: var(--gold-bright); letter-spacing: .30em; font-size: clamp(.65rem, 1vw, .77rem); font-weight: 700; opacity: 0; transform: translateY(12px); animation: lift-in .7s 1.35s ease forwards; }
.intro-logo-wrap { position: relative; width: min(850px, 90vw); margin: -18px auto -47px; }
.intro-logo { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 30px 22px rgba(0,0,0,.65)); opacity: 0; transform: scale(.82) translateY(18px); animation: logo-arrive 1.05s .55s cubic-bezier(.2,.8,.2,1) forwards, logo-float 5s 1.7s ease-in-out infinite; }
.intro-orbit { position: absolute; inset: 17% 10%; z-index: 1; border: 1px solid rgba(249,217,146,.28); border-radius: 50%; opacity: 0; animation: orbit-in 1.1s 1.1s ease forwards, orbit-rotate 18s 2.1s linear infinite; }
.intro-orbit--two { inset: 27% 2%; border-color: rgba(207,164,87,.23); transform: rotate(38deg); animation-delay: 1.25s, 2.1s; animation-direction: normal, reverse; }
.intro-progress { width: min(232px, 46vw); height: 1px; margin: 28px auto 18px; background: rgba(246,240,227,.2); overflow: hidden; }
.intro-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); animation: progress 3s .75s ease forwards; }
.intro-enter { border: 0; color: var(--paper); background: transparent; opacity: 0; display: inline-flex; gap: 9px; align-items: center; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transform: translateY(6px); animation: lift-in .6s 1.8s ease forwards; }
.intro-enter::after { content: ""; position: absolute; bottom: -8px; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(.5); transform-origin: center; transition: transform .2s ease; }
.intro-enter:hover::after, .intro-enter:focus-visible::after { transform: scaleX(1); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7,8,6,.95), rgba(7,8,6,.82));
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled { background: rgba(7,8,6,.97); border-color: var(--line); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.header-shell {
  width: min(1320px, calc(100% - 48px));
  min-height: 110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand { width: 185px; display: block; }
.brand-logo { width: 220px; max-height: 104px; object-fit: contain; object-position: center; filter: drop-shadow(0 10px 12px rgba(0,0,0,.25)); }
.brand-powered { margin-top: -13px; display: flex; align-items: center; justify-content: center; gap: 4px; color: var(--muted); font-size: .52rem; line-height: 1; letter-spacing: .03em; white-space: nowrap; }
.brand-powered strong { color: var(--paper); font-size: .56rem; letter-spacing: .02em; }
.voltlott-logo { width: 14px; height: 14px; object-fit: contain; border-radius: 50%; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 33px; }
.nav-link { position: relative; padding: 9px 0; color: var(--sand); font-size: .79rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: color .2s ease; }
.nav-link::after { content: ""; position: absolute; height: 1px; background: var(--gold); left: 0; right: 0; bottom: 0; transform: scaleX(0); transform-origin: left; transition: transform .24s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--gold-bright); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.language-button { border: 0; padding: 7px 9px; color: var(--muted); background: transparent; font-size: .66rem; line-height: 1; font-weight: 700; transition: background .2s ease, color .2s ease; }
.language-button:hover, .language-button.is-active { color: var(--ink); background: var(--gold-bright); }
.nav-toggle { display: none; }

/* Shared styling */
.section { position: relative; }
.hero-shell, .section-shell { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--gold-bright); font-size: .70rem; font-weight: 700; letter-spacing: .18em; }
.eyebrow > span:first-child { display: inline-block; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.035em; }
h1 { max-width: 670px; margin-bottom: 21px; font-size: clamp(3rem, 5.4vw, 5.6rem); line-height: .98; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.2vw, 4.35rem); line-height: 1.04; }
p { color: var(--sand); font-size: 1rem; line-height: 1.75; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 49px; padding: 0 22px; border: 1px solid var(--line-strong); font-size: .71rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--gold { color: #1d170e; background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; box-shadow: 0 12px 24px rgba(136,92,23,.2); }
.button--gold:hover { color: #0b0a07; background: #ffe2a0; }
.button--quiet { color: var(--paper); background: rgba(255,255,255,.025); }
.button--quiet:hover { color: var(--gold-bright); border-color: var(--gold); background: rgba(207,164,87,.06); }
.text-link { display: inline-flex; gap: 11px; align-items: center; padding-bottom: 7px; color: var(--gold-bright); border-bottom: 1px solid rgba(239,213,154,.48); font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .2s ease, border .2s ease; }
.text-link:hover { color: var(--paper); border-color: var(--paper); }

/* Hero */
.hero { min-height: 100svh; overflow: hidden; padding: 176px 0 70px; display: grid; align-items: center; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; background: linear-gradient(transparent, var(--ink)); pointer-events: none; }
.hero-halo { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(8px); }
.hero-halo--one { top: 100px; left: -17vw; width: 44vw; height: 44vw; background: radial-gradient(circle, rgba(202,153,64,.16), transparent 68%); }
.hero-halo--two { bottom: -26vw; right: 14vw; width: 54vw; height: 54vw; background: radial-gradient(circle, rgba(210,172,86,.12), transparent 60%); }
.hero-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr); align-items: center; gap: clamp(42px, 8vw, 126px); }
.hero-copy { padding-bottom: 10px; }
.hero-text { max-width: 580px; margin-bottom: 31px; color: var(--sand); font-size: clamp(.98rem, 1.4vw, 1.1rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-points { display: flex; gap: 0; flex-wrap: wrap; margin-top: 40px; }
.hero-points span { position: relative; padding: 0 18px; color: var(--muted); font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hero-points span:first-child { padding-left: 0; }
.hero-points span:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 3px; bottom: 3px; width: 1px; background: var(--line-strong); }

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 60px 0;
  direction: ltr;
}

.carousel-track {
  display: flex;
  transition: transform 1.5s cubic-bezier(0.33, 0, 0.15, 1);
  will-change: transform;
}

.carousel-track.no-anim {
  transition: none;
}

.carousel-slide {
  flex: 0 0 auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.carousel-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;
  padding: 0 40px 40px 40px;
  width: auto;
  max-width: calc(100% - 80px);
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

.carousel-slide-text h2 {
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-slide-text h1 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.carousel-slide-text p {
  margin-bottom: 20px;
  max-width: 480px;
  color: var(--sand);
}

.carousel-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.carousel-slide-image {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.8) brightness(0.85);
}

/* Enlarge only the iphones banner (renders smaller than the rest) */
.carousel-slide-image img[src*="iphones-banner"] {
  transform: scale(1.22);
}

.carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: rgba(207, 164, 87, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold-bright);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: rgba(21, 23, 18, 0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
}

.carousel-nav:hover {
  background: rgba(21, 23, 18, 0.95);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav--prev { left: 24px; }
.carousel-nav--next { right: 24px; }

@media (max-width: 980px) {
  .hero-carousel {
    min-height: auto;
  }

  .carousel-slide {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 22px;
  }

  .carousel-slide-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px 52px;
  }

  .carousel-slide-image {
    height: 240px;
    order: -1;
  }

  .carousel-slide-text {
    text-align: center;
  }

  .carousel-slide-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .carousel-nav {
    display: none;
  }

  .carousel-slide-content {
    padding: 0 12px 52px;
    gap: 12px;
  }

  .carousel-slide-text h1 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .carousel-slide-image {
    height: 180px;
  }
}
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 26px; width: 23px; height: 42px; border: 1px solid var(--line-strong); border-radius: 20px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; border-radius: 5px; background: var(--gold-bright); transform: translateX(-50%); animation: scroll-move 1.7s ease-in-out infinite; }

/* About */
.about { padding: 100px 0 0; background: linear-gradient(180deg, var(--ink), #0d0e0b 56%, #11130f); }
.about-shell { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .8fr); gap: clamp(46px, 9vw, 145px); align-items: center; padding-bottom: 106px; }
.about-image { position: relative; min-height: 570px; margin: 0; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.about-image::before { content: ""; position: absolute; z-index: 2; inset: 12px; pointer-events: none; border: 1px solid rgba(252,239,210,.18); }
.about-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.75) contrast(1.03) brightness(.71); transition: transform 1.1s ease; }
.about-image:hover img { transform: scale(1.045); }
.about-image::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(9,10,8,.68), transparent 66%); }
.about-image-accent { position: absolute; z-index: 3; top: 0; right: 0; width: 32%; height: 4px; background: linear-gradient(90deg, transparent, var(--gold-bright)); }
.about-image figcaption { position: absolute; z-index: 3; left: 29px; bottom: 27px; max-width: 220px; color: var(--paper); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-copy p:not(.eyebrow) { max-width: 545px; }
.about-copy p:nth-of-type(3) { margin-bottom: 25px; }
.service-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.02); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-item { min-height: 250px; padding: 43px clamp(22px, 3vw, 48px); border-right: 1px solid var(--line); }
.service-item:last-child { border-right: 0; }
.service-number { display: block; margin-bottom: 55px; color: var(--gold); font-family: var(--serif); font-size: 1rem; }
.service-item h3 { margin-bottom: 13px; color: var(--paper); font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: -.025em; }
.service-item p { max-width: 260px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* Story */
.story { padding: 124px 0; background: radial-gradient(circle at 89% 42%, rgba(181,132,49,.11), transparent 26%), #0d0f0c; }
.story-shell { display: grid; grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: clamp(47px, 9vw, 145px); align-items: center; }
.story-copy { padding-left: clamp(0px, 3vw, 44px); }
.story-copy p:not(.eyebrow) { max-width: 510px; }
.story-image { position: relative; min-height: 520px; margin: 0; overflow: visible; }
.story-image::before { content: ""; position: absolute; z-index: -1; left: -44px; top: -38px; width: 57%; height: 49%; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.story-image img { width: 100%; height: 520px; object-fit: cover; filter: saturate(.72) brightness(.79) contrast(1.05); box-shadow: var(--shadow); border: 1px solid var(--line); }
.story-card { position: absolute; left: -42px; bottom: 34px; max-width: 225px; padding: 23px 26px; color: var(--paper); border: 1px solid var(--line-strong); background: rgba(14,15,12,.9); backdrop-filter: blur(8px); box-shadow: 0 15px 38px rgba(0,0,0,.32); }
.story-card span { color: var(--gold-bright); font-family: var(--serif); font-size: 1.25rem; }
.story-card p { margin: 10px 0 0; color: var(--sand); font-size: .83rem; line-height: 1.45; }

/* Contact */
.contact { overflow: hidden; padding: 124px 0; background: #090a08; border-top: 1px solid var(--line); }
.contact-glow { position: absolute; width: 48vw; height: 48vw; right: -20vw; bottom: -32vw; border-radius: 50%; background: radial-gradient(circle, rgba(205,158,72,.18), transparent 65%); pointer-events: none; }
.contact-shell { position: relative; z-index: 1; display: block; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; }
.contact-signature { margin-top: 35px; width: 174px; }
.contact-signature > img { width: 166px; max-height: 90px; object-fit: contain; }
.contact-signature .brand-powered { margin-top: -15px; }
.contact-form { padding: 35px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); box-shadow: var(--shadow); }
.field-group { margin-bottom: 21px; }
.field-group label { display: block; margin-bottom: 8px; color: var(--gold-bright); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field-group input, .field-group textarea { width: 100%; color: var(--paper); outline: none; border: 1px solid rgba(237,217,176,.21); border-radius: 0; background: rgba(4,4,3,.36); padding: 13px 14px; transition: border .2s ease, box-shadow .2s ease; }
.field-group textarea { resize: vertical; min-height: 136px; }
.field-group input::placeholder, .field-group textarea::placeholder { color: #968b79; }
.field-group input:focus, .field-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(207,164,87,.12); }
.form-button { width: 100%; margin-top: 6px; }
.form-status { min-height: 24px; margin: 15px 0 0; color: var(--gold-bright); font-size: .82rem; line-height: 1.5; }

/* Turnstile CAPTCHA */
.turnstile-container { margin: 24px 0; display: flex; justify-content: center; }
.cf-turnstile { transform: scale(0.9); transform-origin: 0 0; }

/* Contact Methods */
.contact-methods { margin: 24px 0; }
.whatsapp-link { display: inline-flex; gap: 8px; align-items: center; padding: 12px 18px; color: var(--paper); background: #25D366; border-radius: 4px; font-size: .9rem; font-weight: 600; transition: background .2s ease, transform .2s ease; text-decoration: none; }
.whatsapp-link:hover, .whatsapp-link:focus-visible { background: #1ebd58; transform: translateY(-2px); outline: 2px solid var(--gold); outline-offset: 2px; }

/* Product Categories */
.product-categories {
  padding: 80px 0;
  background: #0b0b09;
}

.categories-header {
  margin-bottom: 60px;
  text-align: center;
}

.categories-header h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.categories-header p:not(.eyebrow) {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.category-card {
  text-align: center;
  padding: 25px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(218, 165, 32, 0.1);
  transition: all 0.8s ease;
  cursor: pointer;
}

.category-card:hover {
  border-color: rgba(218, 165, 32, 0.5);
  background: rgba(218, 165, 32, 0.05);
  transform: translateY(-6px);
}

.category-image {
  width: 100%;
  height: 200px;
  margin: 0 0 16px 0;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(218, 165, 32, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  transition: transform 4s ease !important;
}

.category-card:hover .category-image img {
  transform: scale(1.06);
}

.category-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #070806; }
.footer-shell { width: min(1320px, calc(100% - 48px)); min-height: 78px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; }
.footer-shell p { margin: 0; color: var(--muted); font-size: .68rem; letter-spacing: .04em; }
.footer-powered { display: inline-flex; align-items: center; justify-content: center; gap: 4px; white-space: nowrap; }
.footer-powered img { width: 15px; height: 15px; border-radius: 50%; }
.footer-powered strong { color: var(--paper); font-size: .7rem; }
.back-to-top { justify-self: end; display: inline-flex; gap: 8px; color: var(--gold-bright); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* RTL language layout */
html[dir="rtl"] body { font-family: var(--arabic); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] .service-number, html[dir="rtl"] .hero-seal { font-family: var(--arabic); letter-spacing: 0; }
html[dir="rtl"] .site-header { direction: ltr !important; }
html[dir="rtl"] .header-shell { direction: ltr !important; }
html[dir="rtl"] .brand { direction: ltr !important; }
html[dir="rtl"] .language-switcher { direction: ltr !important; }
html[dir="rtl"] .primary-nav { direction: rtl; }
html[dir="rtl"] .eyebrow { letter-spacing: .05em; }
html[dir="rtl"] .hero-points span:first-child { padding-left: 18px; padding-right: 0; }
html[dir="rtl"] .hero-points span:last-child { padding-left: 0; }
html[dir="rtl"] .about-copy, html[dir="rtl"] .story-copy, html[dir="rtl"] .contact-copy { text-align: right; }
html[dir="rtl"] .about-copy .text-link, html[dir="rtl"] .story-copy .text-link { flex-direction: row-reverse; }
html[dir="rtl"] .back-to-top { justify-self: start; flex-direction: row-reverse; }

/* Animations */
@keyframes grid-drift { to { background-position: 0 68px, 68px 0; } }
@keyframes glow-pulse { 50% { transform: scale(1.08) translate3d(1vw, -1vw, 0); opacity: .72; } }
@keyframes lift-in { to { opacity: 1; transform: translateY(0); } }
@keyframes logo-arrive { 0% { opacity: 0; transform: scale(.82) translateY(18px); } 75% { opacity: 1; transform: scale(1.025) translateY(-2px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes logo-float { 50% { transform: translateY(-7px); } }
@keyframes orbit-in { to { opacity: 1; } }
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
@keyframes progress { to { width: 100%; } }
@keyframes slow-zoom { to { transform: scale(1.1); } }
@keyframes scroll-move { 50% { transform: translate(-50%, 12px); opacity: .15; } }

@media (max-width: 980px) {
  .header-shell { grid-template-columns: 1fr auto auto; min-height: 95px; }
  .brand { width: 156px; }
  .brand-logo { width: 150px; max-height: 70px; }
  .primary-nav { position: fixed; top: 95px; left: 0; right: 0; padding: 20px 24px 24px; display: grid; gap: 0; justify-content: stretch; background: rgba(8,9,7,.98); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity .2s ease, transform .2s ease, visibility .2s step-end; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .2s ease, transform .2s ease; }
  .nav-link { padding: 14px 0; }
  .nav-toggle { position: relative; display: grid; gap: 5px; width: 42px; height: 40px; place-content: center; border: 1px solid var(--line); background: transparent; }
  .nav-toggle span { display: block; width: 17px; height: 1px; background: var(--gold-bright); transition: transform .2s ease; }
  .nav-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
  .nav-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero { padding-top: 145px; }
  .hero-shell { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 680px; }
  .hero-image-frame { height: min(70vw, 600px); min-height: 400px; }
  .about-shell { grid-template-columns: .95fr 1fr; gap: 54px; }
  .story-shell { grid-template-columns: 1fr 1.1fr; gap: 60px; }
  .story-copy { padding-left: 0; }
  .contact-shell { gap: 58px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .header-shell, .hero-shell, .section-shell, .footer-shell { width: min(100% - 34px, 1320px); }
  .header-shell { min-height: 80px; gap: 8px; }
  .brand { width: 122px; }
  .brand-logo { width: 119px; max-height: 56px; }
  .brand-powered { margin-top: -10px; font-size: .43rem; }
  .brand-powered strong { font-size: .46rem; }
  .voltlott-logo { width: 11px; height: 11px; }
  .language-switcher { padding: 3px; }
  .language-button { padding: 6px 5px; font-size: .55rem; }
  .nav-toggle { width: 36px; height: 35px; }
  .primary-nav { top: 80px; padding-left: 17px; padding-right: 17px; }
  .intro-logo-wrap { width: min(720px, 92vw); margin-top: 5px; margin-bottom: -38px; }
  .intro-kicker { font-size: .58rem; letter-spacing: .16em; }
  .intro-progress { margin-top: 24px; }
  .hero { min-height: auto; padding: 132px 0 88px; }
  .hero-shell { gap: 42px; }
  .eyebrow { margin-bottom: 15px; font-size: .60rem; }
  h1 { margin-bottom: 17px; font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { margin-bottom: 19px; font-size: clamp(2.1rem, 10.5vw, 3.35rem); }
  p { font-size: .94rem; }
  .hero-text { margin-bottom: 25px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 280px; }
  .button { width: 100%; }
  .hero-points { gap: 9px 0; margin-top: 28px; }
  .hero-points span { padding: 0 12px; font-size: .58rem; }
  .hero-image-frame { height: 105vw; min-height: 360px; }
  .hero-image-frame img { object-position: 61% center; }
  .hero-image-caption { left: 23px; right: 23px; bottom: 23px; font-size: .58rem; }
  .hero-seal { width: 58px; height: 58px; right: -13px; bottom: 47px; font-size: 1.35rem; }
  .scroll-cue { display: none; }
  .about { padding-top: 75px; }
  .about-shell { grid-template-columns: 1fr; gap: 46px; padding-bottom: 74px; }
  .about-image { min-height: 390px; }
  .about-copy p:not(.eyebrow) { margin-bottom: 17px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-item:last-child { border-bottom: 0; }
  .service-number { margin-bottom: 22px; }
  .story { padding: 75px 0 86px; }
  .story-shell { grid-template-columns: 1fr; gap: 48px; }
  .story-image { min-height: 400px; }
  .story-image img { height: 400px; }
  .story-image::before { left: -15px; top: -18px; }
  .story-card { left: 14px; bottom: 18px; max-width: 205px; }
  .contact { padding: 78px 0; }
  .contact-shell { grid-template-columns: 1fr; gap: 43px; }
  .contact-form { padding: 24px 19px; }
  .footer-shell { min-height: 122px; grid-template-columns: 1fr 1fr; padding: 22px 0; gap: 14px; }
  .footer-powered { justify-content: flex-end; }
  .back-to-top { grid-column: 1 / -1; justify-self: start; }
  .turnstile-container { margin: 18px 0; }
  .cf-turnstile { transform: scale(0.8); transform-origin: 0 0; }
  .whatsapp-link { width: 100%; justify-content: center; margin-bottom: 18px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .category-image { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ===== Floating Social Bar + WhatsApp Button ===== */
.social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 95;
  padding: 10px 8px;
}

.social-bar__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-bar__link:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,.45);
}

.social-bar__link svg { width: 20px; height: 20px; display: block; }

.social-bar__link--facebook  { background: #1877F2; }
.social-bar__link--instagram { background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.social-bar__link--whatsapp  { background: #25D366; }
.social-bar__link--tiktok    { background: #0b0b0b; border: 2px solid rgba(255,255,255,.92); }

.social-bar__link--whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
}

.whatsapp-float svg { width: 22px; height: 22px; display: block; }

@media (max-width: 680px) {
  .social-bar { gap: 8px; padding: 8px 6px; }
  .social-bar__link { width: 36px; height: 36px; }
  .social-bar__link svg { width: 17px; height: 17px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 11px 15px; font-size: .9rem; }
}

/* ===== Contact WhatsApp message box ===== */
.wa-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

.wa-box-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wa-box-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-box-icon svg { width: 24px; height: 24px; }

.wa-box-head h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
}

.wa-box-head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.wa-box textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  padding: 14px 16px;
}

.wa-box textarea::placeholder { color: var(--muted); }
.wa-box textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
}

.wa-box-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  background: #25D366;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.wa-box-button:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

/* ===== Contact info panel (Get In Touch) ===== */
.contact-info {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(235, 214, 166, .08);
  border: 1px solid var(--line);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info li strong {
  display: block;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-info li a,
.contact-info li span {
  color: var(--sand);
  text-decoration: none;
  font-size: .98rem;
  line-height: 1.45;
}

.contact-info li a:hover { color: var(--gold-bright); }

/* ===== Contact "Follow Us" list ===== */
.contact-follow { margin-top: 34px; max-width: 420px; }

.contact-follow h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper);
}

.contact-follow__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-soft);
  color: var(--sand);
  text-decoration: none;
  font-size: .95rem;
  transition: border-color .2s ease, transform .2s ease;
}

.contact-follow__link:hover {
  border-color: var(--gold-bright);
  transform: translateX(2px);
}

.contact-follow__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-follow__icon svg { width: 17px; height: 17px; }

.contact-follow__icon--facebook  { background: #1877F2; }
.contact-follow__icon--instagram { background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5); }
.contact-follow__icon--whatsapp  { background: #25D366; }
.contact-follow__icon--tiktok    { background: #0b0b0b; border: 1px solid rgba(255,255,255,.85); }

/* ===== Contact region headings + right column + map ===== */
.contact-region {
  margin: 32px 0 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper);
}

.contact-details .contact-region:first-child { margin-top: 0; }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.contact-map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 auto;
  display: flex;
  min-height: 260px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
  filter: grayscale(.15) brightness(.92);
}

/* ===== Contact page: centered header on top, columns below ===== */
.contact-header {
  max-width: none;
  margin: 0 auto 44px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-header .eyebrow { justify-content: center; }

.contact-header > p:not(.eyebrow) {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.contact-details { min-width: 0; }
.contact-right { min-width: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { min-height: 300px; }
}

/* Guarantee the WhatsApp box and the map are exactly the same width */
.contact-right > .wa-box,
.contact-right > .contact-map {
  width: 100%;
  box-sizing: border-box;
}

/* Keep the Kabul address on its intended line breaks (survives translation) */
.contact-address { white-space: pre-line; }