/* ==========================================================================
   BURGAROO — Official Website
   Design tokens
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  --black:        #0B0B0C;
  --black-deep:   #050505;
  --card:         #141415;
  --card-hover:   #1a1a1c;
  --red:          #E4231C;
  --red-dim:      #9c1712;
  --white:        #F6F5F1;
  --muted:        #9a9a9c;
  --muted-2:      #6b6b6d;
  --line:         rgba(246,245,241,0.09);
  --line-strong:  rgba(246,245,241,0.16);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --nav-h: 84px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure{ margin: 0; }
ul{ list-style: none; margin: 0; padding: 0; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img{ max-width: 100%; display: block; }
input, textarea, select{ font: inherit; color: inherit; }

body{
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--red);
  display: inline-block;
}
[dir="rtl"] .eyebrow::before{ order: 2; }

h1, h2, h3{ font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; }

.section-head{ margin-bottom: 56px; max-width: 640px; }
.section-head h2{ font-size: clamp(32px, 4.4vw, 52px); margin-top: 14px; }
.section-head p{ color: var(--muted); margin-top: 16px; font-size: 16px; line-height: 1.6; }

section{ position: relative; padding: 120px 0; }
@media (max-width: 768px){ section{ padding: 84px 0; } }

/* ==========================================================================
   Page loader
   ========================================================================== */
#loader{
  position: fixed; inset: 0; z-index: 999;
  background: var(--black-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#loader.hidden{ opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark{
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  letter-spacing: 0.35em; color: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.loader-bar{ width: 160px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.loader-bar::after{
  content: ""; position: absolute; inset: 0; width: 40%; background: var(--red);
  animation: loaderMove 1.1s ease-in-out infinite;
}
@keyframes loaderMove{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(350%); }
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav{
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), height 0.45s var(--ease);
}
.nav.scrolled{
  height: 68px;
  background: rgba(11,11,12,0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo{ font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: 0.02em; }
.logo span{ color: var(--red); }

.nav-links{ display: flex; align-items: center; gap: 36px; }
.nav-links a{
  font-size: 13.5px; letter-spacing: 0.03em; color: var(--white); opacity: 0.82;
  position: relative; padding: 6px 0; transition: opacity 0.25s;
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--red); transition: width 0.3s var(--ease);
}
.nav-links a:hover{ opacity: 1; }
.nav-links a:hover::after{ width: 100%; }

.nav-actions{ display: flex; align-items: center; gap: 18px; }

.lang-switch{
  display: flex; align-items: center; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 3px; gap: 2px; font-family: var(--font-mono); font-size: 11.5px;
}
.lang-switch button{
  padding: 6px 12px; border-radius: 999px; color: var(--muted); letter-spacing: 0.05em;
  transition: background 0.25s, color 0.25s;
}
.lang-switch button.active{ background: var(--red); color: var(--white); }

.icon-btn{
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.icon-btn:hover{ border-color: var(--red); background: rgba(228,35,28,0.1); transform: translateY(-1px); }
.icon-btn svg{ width: 17px; height: 17px; }

.nav-burger{ display: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 2px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--red); color: var(--white); }
.btn-primary:hover{ background: #ff2f27; transform: translateY(-2px); }
.btn-ghost{
  background: rgba(255,255,255,0.04); color: var(--white);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ border-color: var(--white); transform: translateY(-2px); }
.btn svg{ width: 15px; height: 15px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--black-deep);
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.hero-bg .base{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(228,35,28,0.22), transparent 60%),
    radial-gradient(ellipse 45% 40% at 82% 78%, rgba(228,35,28,0.10), transparent 65%),
    linear-gradient(180deg, #050505 0%, #0B0B0C 55%, #050505 100%);
}
.hero-bg .smoke{
  position: absolute; inset: -10%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.035), transparent 40%),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.025), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,0.03), transparent 40%);
  filter: blur(30px);
  animation: smokeDrift 26s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes smokeDrift{
  0%{ transform: translate3d(0,0,0) scale(1); }
  100%{ transform: translate3d(-2%, -3%, 0) scale(1.06); }
}
.hero-bg .grain{
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner{
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px;
}
.hero-copy{ padding-top: 20px; }
.hero-copy .eyebrow{ margin-bottom: 22px; }
.hero-copy h1{
  font-size: clamp(46px, 6.4vw, 84px);
  color: var(--white);
}
.hero-copy h1 em{ font-style: normal; color: var(--red); }
.hero-tagline{
  margin-top: 24px; max-width: 420px; color: var(--muted);
  font-size: 17px; line-height: 1.65;
}
.hero-ctas{ display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

.hero-visual{ position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual .ring{
  position: absolute; width: 92%; aspect-ratio: 1/1; border-radius: 50%;
  border: 1px solid var(--line-strong);
  animation: ringSpin 40s linear infinite;
}
@keyframes ringSpin{ to{ transform: rotate(360deg); } }
.hero-visual img{
  position: relative; z-index: 1;
  width: 88%; border-radius: 6px;
  box-shadow: 0 40px 90px -30px rgba(228,35,28,0.35), 0 20px 60px rgba(0,0,0,0.6);
}
.hero-scroll{
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; color: var(--muted-2);
}
.hero-scroll .stick{ width: 1px; height: 34px; background: linear-gradient(var(--red), transparent); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint{ 0%,100%{ opacity: 0.2; } 50%{ opacity: 1; } }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-copy{ order: 2; padding-top: 0; }
  .hero-visual{ order: 1; margin-bottom: 20px; }
  .hero-copy .eyebrow{ justify-content: center; }
  .hero-tagline{ margin-inline: auto; }
  .hero-ctas{ justify-content: center; }
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: 0.08s; }
.reveal-delay-2{ transition-delay: 0.16s; }
.reveal-delay-3{ transition-delay: 0.24s; }

/* ==========================================================================
   Signature Products
   ========================================================================== */
.products{ background: var(--black); }
.product-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.product-card{
  position: relative; border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; background: var(--card);
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.product-card:hover{ border-color: var(--line-strong); transform: translateY(-6px); }
.product-media{ position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-media::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.85) 100%);
}
.product-index{
  position: absolute; top: 16px; inset-inline-start: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; color: var(--white); opacity: 0.7;
}
.product-body{ padding: 22px 22px 26px; }
.product-body h3{ font-size: 20px; letter-spacing: -0.01em; }
.product-body p{ margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.product-line{
  margin-top: 16px; height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.product-line::after{
  content: ""; position: absolute; inset: 0; width: 0; background: var(--red);
  transition: width 0.5s var(--ease);
}
.product-card:hover .product-line::after{ width: 100%; }

@media (max-width: 980px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .product-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   About
   ========================================================================== */
.about{ background: var(--black-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media{ position: relative; overflow: hidden; border-radius: 4px; }
.about-media img{ width: 100%; height: 100%; object-fit: cover; }
.about-media::before{
  content: ""; position: absolute; inset: 0; border: 1px solid var(--line-strong); z-index: 2;
  margin: 14px; pointer-events: none;
}
.about-copy .section-head{ margin-bottom: 28px; }
.about-copy p.lead{ font-size: 18px; line-height: 1.7; color: var(--white); opacity: 0.9; }
.about-copy p.lead + p{ margin-top: 16px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.about-stats{ display: flex; gap: 40px; margin-top: 40px; }
.about-stats div strong{ display: block; font-family: var(--font-display); font-size: 32px; color: var(--red); }
.about-stats div span{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; }

@media (max-width: 860px){ .about-inner{ grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery{ background: var(--black); }
.gallery-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
}
.gallery-item{
  position: relative; overflow: hidden; border-radius: 3px; cursor: pointer;
  border: 1px solid var(--line);
}
.gallery-item:nth-child(3n+1){ grid-row: span 2; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s; filter: grayscale(0.15); }
.gallery-item:hover img{ transform: scale(1.08); filter: grayscale(0); }
.gallery-item::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after{ opacity: 1; }
.gallery-item .zoom-hint{
  position: absolute; bottom: 14px; inset-inline-start: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--white);
  opacity: 0; transform: translateY(6px); transition: all 0.35s var(--ease);
}
.gallery-item:hover .zoom-hint{ opacity: 1; transform: translateY(0); }

@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0; z-index: 800; background: rgba(5,5,5,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  backdrop-filter: blur(6px);
}
.lightbox.open{ opacity: 1; visibility: visible; }
.lightbox img{ max-width: 82vw; max-height: 82vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close{
  position: absolute; top: 26px; inset-inline-end: 30px;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.lightbox-close:hover{ border-color: var(--red); }

/* ==========================================================================
   Menu section
   ========================================================================== */
.menu-section{
  background: var(--black-deep);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.menu-section .section-head{ margin-left: auto; margin-right: auto; text-align: center; }
.menu-cta{ margin-top: 10px; }
.menu-note{ margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }

/* Menu modal */
.menu-modal{
  position: fixed; inset: 0; z-index: 900; background: rgba(5,5,5,0.97);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
  display: flex; flex-direction: column;
}
.menu-modal.open{ opacity: 1; visibility: visible; }
.menu-modal-bar{
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.menu-modal-bar .title{ font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.menu-zoom-controls{ display: flex; gap: 10px; align-items: center; }
.menu-zoom-controls button{
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
}
.menu-zoom-controls button:hover{ border-color: var(--red); }
.menu-modal-body{
  flex: 1; overflow: auto; display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 20px; cursor: grab;
}
.menu-modal-body.dragging{ cursor: grabbing; }
.menu-modal-body img{
  transition: transform 0.25s var(--ease);
  max-width: 620px; width: 100%; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  user-select: none; -webkit-user-drag: none;
}

/* ==========================================================================
   Order popup
   ========================================================================== */
.order-modal{
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(5,5,5,0.85); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.order-modal.open{ opacity: 1; visibility: visible; }
.order-panel{
  width: 100%; max-width: 440px; background: var(--card);
  border: 1px solid var(--line-strong); border-radius: 6px; padding: 36px 32px;
  transform: translateY(16px) scale(0.98); transition: transform 0.4s var(--ease);
}
.order-modal.open .order-panel{ transform: translateY(0) scale(1); }
.order-panel h3{ font-size: 24px; }
.order-panel .eyebrow{ margin-bottom: 12px; }
.order-close{
  position: absolute; top: 20px; inset-inline-end: 20px;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
}
.order-modal{ position: fixed; }
.order-panel{ position: relative; }

.field{ margin-top: 20px; }
.field label{
  display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 8px;
}
.field input, .field select{
  width: 100%; background: var(--black); border: 1px solid var(--line-strong);
  border-radius: 3px; padding: 12px 14px; color: var(--white); font-size: 14px;
  transition: border-color 0.25s;
}
.field input:focus, .field select:focus{ border-color: var(--red); }

.toggle-group{ display: flex; gap: 10px; margin-top: 8px; }
.toggle-group button{
  flex: 1; padding: 11px; border: 1px solid var(--line-strong); border-radius: 3px;
  font-size: 13px; color: var(--muted); transition: all 0.25s;
}
.toggle-group button.active{ border-color: var(--red); color: var(--white); background: rgba(228,35,28,0.1); }

.order-submit{ width: 100%; margin-top: 28px; justify-content: center; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact{ background: var(--black); }
.contact-inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-list{ display: flex; flex-direction: column; gap: 0; }
.contact-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.contact-row:first-child{ border-top: 1px solid var(--line); }
.contact-row .label{ font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; }
.contact-row .value{ font-size: 16px; display: flex; align-items: center; gap: 10px; }
.contact-row .value svg{ width: 16px; height: 16px; color: var(--red); }
.contact-row a.value:hover{ color: var(--red); }

.hours-block{ margin-top: 32px; }
.hours-block h4{ font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 14px; }
.hours-row{ display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.hours-row span:last-child{ color: var(--muted); font-family: var(--font-mono); font-size: 13px; }

.map-frame{ border-radius: 4px; overflow: hidden; border: 1px solid var(--line-strong); min-height: 340px; }
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

@media (max-width: 860px){ .contact-inner{ grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ background: var(--black-deep); border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer-top{ display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-links{ display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col span{ display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color 0.25s; }
.footer-col a:hover{ color: var(--white); }
.footer-social{ display: flex; gap: 12px; }
.footer-bottom{
  margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); letter-spacing: 0.03em;
}

/* ==========================================================================
   WhatsApp float
   ========================================================================== */
.wa-float{
  position: fixed; bottom: 26px; inset-inline-end: 26px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(228,35,28,0.4);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width: 26px; height: 26px; color: var(--white); }

/* ==========================================================================
   RTL adjustments
   ========================================================================== */
[dir="rtl"]{ font-family: var(--font-body); }
[dir="rtl"] .hero-copy, [dir="rtl"] .about-copy, [dir="rtl"] .section-head{ text-align: right; }
[dir="rtl"] .lightbox-close{ inset-inline-end: auto; inset-inline-start: 30px; }

/* ==========================================================================
   Mobile nav
   ========================================================================== */
@media (max-width: 860px){
  .nav-links{ position: fixed; top: var(--nav-h); inset-inline: 0; bottom: 0;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
  }
  .nav-links.open{ transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a{ font-size: 20px; }
  .nav-burger{
    display: flex; flex-direction: column; gap: 5px; width: 26px; padding: 6px 0;
  }
  .nav-burger span{ height: 1.5px; background: var(--white); transition: all 0.3s; }
  .nav-actions .lang-switch{ order: -1; }
}

@media (max-width: 640px){
  .about-stats{ gap: 26px; }
  .contact-row .value{ font-size: 14.5px; text-align: end; }
}
