/* ============================================================
   NIKOLLA DELIVERY — Durrës, Albania
   Design: Light/airy aesthetic + deep-green anchor sections
   Font: Plus Jakarta Sans
   ============================================================ */

:root {
  /* Brand */
  --green:        #0d3c34;
  --green-deep:   #082a24;
  --green-line:   #1d5249;
  --orange:       #ff7a37;
  --orange-deep:  #f15f15;
  --orange-soft:  #ffe9dd;

  /* Neutrals (warm) */
  --ink:        #1b211f;
  --body:       #4b524f;
  --muted:      #828a86;
  --bg:         #ffffff;
  --bg-soft:    #f6f5f1;
  --bg-soft-2:  #efeee8;
  --line:       #e7e6e0;
  --white:      #ffffff;

  /* Typography */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:     0 4px 14px rgba(20, 35, 30, .06);
  --shadow-md:     0 18px 40px -16px rgba(20, 35, 30, .22);
  --shadow-lg:     0 40px 80px -28px rgba(13, 60, 52, .32);
  --shadow-bubble: 0 22px 45px -18px rgba(20, 35, 30, .35);

  --maxw: 1240px;
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.accent { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }

.section { padding: 96px 0; position: relative; z-index: 1; box-shadow: 0 12px 55px -12px rgba(0,0,0,0.11); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin: 14px 0 16px; }
.section-head p { font-size: 17px; color: var(--body); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 26px -10px rgba(241, 95, 21, .65); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 18px 30px -10px rgba(241, 95, 21, .7); }
.btn-dark { background: var(--green); color: #fff; }
.btn-dark:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ============================================================
   STATUS BAR — live business hours
   ============================================================ */
.statusbar {
  background: var(--green-deep); color: #dff0eb;
  font-size: 13.5px; font-weight: 600;
}
.statusbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 44px; padding-top: 8px; padding-bottom: 8px;
}
.status-left  { display: flex; align-items: center; gap: 10px; }
.status-dot   { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); flex: none; }
.status--open .status-dot    { background: #46d39a; box-shadow: 0 0 0 4px rgba(70,211,154,.22); animation: pulse 2.2s infinite; }
.status--premium .status-dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,122,55,.22); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.35);opacity:.7} }
.status-label b { color: #fff; }
.status-time  { color: #9fc4bb; font-variant-numeric: tabular-nums; }
.status-right { display: flex; align-items: center; gap: 22px; }
.status-right a { display: inline-flex; align-items: center; gap: 7px; color: #cfe6df; transition: color .15s; }
.status-right a:hover { color: #fff; }
.status-right svg { width: 15px; height: 15px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(20,35,30,.5); }
.nav { display: flex; align-items: center; gap: 28px; min-height: 76px; }

.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; color: var(--ink); letter-spacing: -0.03em; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -8px rgba(241,95,21,.7);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo small { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 6px; margin: 0 auto; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--body); padding: 9px 14px; border-radius: var(--r-pill); transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.deal { color: var(--orange-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Language switcher (dropdown me shigjetë, auto-translate) ── */
.lang-switch { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 10px; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.lang-current:hover { background: #eeece5; }
.lang-current .lang-flag { width: 20px; height: 15px; object-fit: cover; border-radius: 3px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang-arrow { color: var(--body); flex: none; transition: transform .22s ease; }
.lang-switch.open .lang-arrow { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 6px; min-width: 152px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 80;
}
.lang-switch.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}
.lang-option {
  display: flex; align-items: center; gap: 9px;
  border: none; background: transparent; border-radius: var(--r-sm);
  padding: 8px 10px; cursor: pointer; text-align: left; width: 100%;
  font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--body);
  transition: background .15s, color .15s;
}
.lang-option:hover { background: var(--bg-soft); }
.lang-option.active { background: var(--orange-soft); color: var(--orange-deep); }
.lang-option img { width: 20px; height: 15px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); flex: none; display: block; }

/* Hide Google Translate's default banner / tooltip UI */
.goog-te-banner-frame.skiptranslate, iframe.skiptranslate, .goog-te-gadget-icon { display: none !important; }
body { top: 0 !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; position: relative;
  margin: 0 auto; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% 12%, #fff7f2 0%, rgba(255,247,242,0) 55%),
    linear-gradient(180deg, #fbfaf7 0%, #fff 100%);
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; padding-top: 36px; padding-bottom: 130px; }
.hero .hero-request { grid-column: 1 / -1; align-self: start; margin-bottom: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 8px 8px 16px; font-weight: 700; font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-badge .chip { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; padding: 5px 12px; border-radius: var(--r-pill); font-size: 12.5px; }
.hero-badge .chip svg { width: 15px; height: 15px; }

.hero h1 { font-size: clamp(40px, 6.4vw, 78px); letter-spacing: -0.04em; }
.hero h1 .line { display: block; }
.hero-sub { font-size: clamp(17px, 1.7vw, 19px); color: var(--body); max-width: 460px; margin: 22px 0 10px; }
.hero-tag { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--green); font-size: 15px; margin-bottom: 30px; }
.hero-tag svg { width: 19px; height: 19px; color: var(--orange); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cta-mobile { display: none; }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.hero-trust .bar { width: 3px; height: 42px; background: var(--orange); border-radius: 3px; }
.hero-trust .avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-sm); border: 3px solid #fff; flex: none; background: var(--bg-soft-2); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.hero-trust-logo { width: 64px; height: 64px; object-fit: contain; display: block; flex: none; }
.hero-trust p { font-size: 14.5px; color: var(--body); font-style: italic; max-width: 280px; }

/* Hero visual — disc + figure + bubbles */
.hero-visual { position: relative; min-height: 540px; }
.hero-visual .hero-cta {
  position: absolute; bottom: -64px; left: 50%; transform: translateX(-50%);
  z-index: 5; white-space: nowrap;
}
.hero-disc {
  position: absolute; inset: 0; margin: auto;
  width: 480px; height: 480px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #e6822f 0%, #d2701f 65%, #b85d20 100%);
  box-shadow: var(--shadow-lg), inset 0 6px 30px rgba(255,255,255,.16);
  top: 0; bottom: 0; left: 0; right: 0;
}
.hero-disc::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.32); }

.hero-figure {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 480px; height: 480px;
  aspect-ratio: 1 / 1;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50%);
}
.hero-figure image-slot,
.hero-figure .img-slot,
.hero-figure img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }

/* Image slot placeholder (fallback when no photo dropped) */
.img-slot {
  width: 100%; height: 100%; border-radius: inherit;
  background: var(--bg-soft-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--muted);
  border: 2px dashed var(--line);
  cursor: pointer; user-select: none;
}
.img-slot--rider { font-size: 72px; background: linear-gradient(145deg, #e8ede9, #d5dbd6); border: none; }
.img-slot--food  { font-size: 32px; background: linear-gradient(145deg, #f8f6f2, #ece8e0); border: none; }
.img-slot--avatar{ font-size: 20px; background: linear-gradient(145deg, #e8ede9, #d5dbd6); border: none; }

/* Bubbles · overflow:visible so the cart badge can sit fully outside the circle.
   The <img> inside already has border-radius:50%, so the photo stays clipped. */
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #fff, #f0eee7);
  box-shadow: var(--shadow-bubble);
  display: grid; place-items: center;
  overflow: visible;
  z-index: 3; animation: float 5s ease-in-out infinite;
}
.bubble image-slot,
.bubble .img-slot,
.bubble img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; box-shadow: 0 8px 28px rgba(20,35,30,0.28), 0 2px 8px rgba(20,35,30,0.12); }
.bubble .cart {
  position: absolute; top: -6px; right: -6px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); border: 3px solid #fff;
}
.bubble .cart svg { width: 16px; height: 16px; color: #fff; }
.bubble.alt .cart { background: var(--orange); }
.b1 { width: 132px; height: 132px; top: 24%; left: -2%;  animation-delay: .2s; }
.b2 { width: 118px; height: 118px; top: 4%;  right: 6%;  animation-delay: 1.1s; }
.b3 { width: 100px; height: 100px; bottom: 14%; left: 6%; animation-delay: .7s; }
.b4 { width: 92px;  height: 92px;  bottom: 4%; right: 2%; animation-delay: 1.6s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }


.hero-route { position: absolute; top: 14%; left: 40%; width: 120px; color: var(--orange); z-index: 1; opacity: .9; }

@media (prefers-reduced-motion: reduce) {
  .bubble { animation: none; }
  .status-dot { animation: none !important; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 30px 28px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(28px,3vw,38px); color: var(--green); font-weight: 800; letter-spacing: -0.03em; }
.stat span { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ============================================================
   RESTAURANT MENUS (homepage preview — 4 cards)
   ============================================================ */
.menus-section { padding: 96px 0; background: var(--bg-soft); }
.menus-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.menus-header-left { max-width: 760px; }
.menus-header-left h2 { font-size: clamp(22px,2.4vw,30px); margin: 10px 0 6px; line-height: 1.25; }
.menus-header-left p { font-size: 14.5px; color: var(--body); margin: 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-deep); background: var(--orange-soft);
  padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.section-tag svg { flex: none; }

.btn-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-family: var(--font);
  font-weight: 700; font-size: 15px; padding: 13px 24px;
  border-radius: var(--r-pill); white-space: nowrap;
  transition: background .18s, transform .18s;
}
.btn-view-all:hover { background: var(--green-deep); transform: translateY(-2px); }

/* ── Custom request box (above restaurant cards) ── */
.menus-request-box {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, #ffb87a, #ff9445);
  border: 1.5px solid rgba(220,90,0,.55);
  border-radius: var(--r-lg);
  padding: 24px 28px; margin-bottom: 32px;
  box-shadow: 0 10px 28px -14px rgba(200,70,0,.5);
}
.menus-request-field { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 8px; }
.menus-request-field label { font-size: 16px; font-weight: 800; color: var(--green); letter-spacing: .01em; }
.menus-request-field textarea {
  width: 100%; resize: vertical; min-height: 50px;
  border: 1px solid rgba(241,95,21,.25); border-radius: var(--r-md);
  padding: 12px 16px; font-family: var(--font); font-size: 14.5px; color: var(--body);
  background: #fff; transition: border-color .18s, box-shadow .18s;
}
.menus-request-field textarea::placeholder { color: #a87f6c; }
.menus-request-field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,55,.18); }
.btn-send-request {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; font-family: var(--font);
  font-weight: 700; font-size: 15px; padding: 14px 24px; border: none;
  border-radius: var(--r-pill); white-space: nowrap; cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn-send-request:hover { background: var(--green-deep); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY FILTER — kartela katrore ikonë+etiketë (auto-scroll në mobile)
   ═══════════════════════════════════════════════════════════════ */
.cat-filter {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 2px 14px;
  margin: 8px 0 38px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-filter::-webkit-scrollbar { display: none; }

.cat-chip {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 80px;
  height: 80px;
  padding: 10px 6px;
  background: #faf7ef;
  border: 1.5px solid #e8e0cb;
  border-radius: 18px;
  font-family: var(--font);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  scroll-snap-align: start;
  transition: box-shadow .18s, transform .12s;
}
.cat-chip:hover { border-color: #d9cfae; }
.cat-chip:active { transform: scale(.96); }

.cat-chip.is-active {
  border-color: #22c55e;
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(34,197,94,.14);
}
.cat-chip.is-active::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: #22c55e;
}

.cat-emoji { font-size: 27px; line-height: 1; display: block; }
.cat-img   { width: 30px; height: 30px; object-fit: contain; display: block; }
.cat-label {
  font-size: 8.6px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  max-width: 68px;
}

/* MOBILE — kartela më të vogla, por gjithmonë të lexueshme */
@media (max-width: 720px) {
  .cat-filter { gap: 8px; padding: 10px 2px 10px; margin-top: 6px; margin-bottom: 28px; }
  .cat-chip   { width: 62px; height: 62px; padding: 7px 4px; gap: 4px; border-radius: 14px; }
  .cat-emoji  { font-size: 20px; }
  .cat-img    { width: 22px; height: 22px; }
  .cat-label  { font-size: 7.3px; max-width: 54px; }
  .cat-chip.is-active::before { top: -7px; width: 16px; height: 2.5px; }
}
@media (max-width: 420px) {
  .cat-chip   { width: 56px; height: 56px; }
  .cat-emoji  { font-size: 18px; }
  .cat-img    { width: 19px; height: 19px; }
  .cat-label  { font-size: 7.3px; max-width: 46px; }
}

/* Kur asnjë restorant nuk përputhet me filtrin */
.cat-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted, #828a86);
  font-size: 14px;
}

.menus-grid-home { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
@media (max-width: 1180px) { .menus-grid-home { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 980px)  { .menus-grid-home { grid-template-columns: repeat(3,1fr); } }

/* Karta shtesë "Të gjitha Menutë" — e fshehur në desktop, shfaqet vetëm
   në karuselin mobile (poshtë). */
.view-all-tile { display: none; }

.menu-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.menu-card-img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; flex: none; background: #f4f4f0; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: -webkit-optimize-contrast; }
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; position: relative;
}
.restaurant-initial {
  position: absolute; bottom: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,.28); color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
}
.menu-cuisine-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.45); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--r-pill); letter-spacing: .03em;
  backdrop-filter: blur(6px); max-width: calc(100% - 16px);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.menu-card-body { padding: 12px 14px 0; flex: 1; }
.menu-card-top { display: flex; justify-content: space-between; align-items: center; gap: 6px; margin-bottom: 8px; }
.menu-restaurant-name { font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.menu-price-range { font-size: 12px; color: var(--muted); font-weight: 600; flex-shrink: 0; }
.menu-dishes-list { display: flex; flex-direction: column; gap: 5px; }
.menu-dish-item { display: flex; justify-content: space-between; align-items: center; gap: 6px; font-size: 12px; }
.menu-dish-name { color: var(--body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-dish-price { font-weight: 700; color: var(--ink); flex-shrink: 0; }

.menu-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 14px 14px; margin-top: 10px; border-top: 1px solid var(--line); }
.menu-rating { display: none; }
.menu-rating-stars { display: none; }
.modal-meta span[style*="gray-600"] { display: none; }
.btn-see-menu {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--orange); color: #fff;
  font-size: 11.5px; font-weight: 700; font-family: var(--font);
  padding: 6px 11px; border-radius: var(--r-pill);
  transition: background .18s, transform .18s; white-space: nowrap;
}
.btn-see-menu:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-see-menu svg { width: 12px; height: 12px; }

/* MOBILE — kartat e restoranteve bëhen karusel horizontal me rrëshqitje
   (njësoj si filtri i kategorive sipër), por logoja/foto e restorantit
   mbetet dukshëm më e madhe se kutitë e kategorive që të bjerë në sy. */
@media (max-width: 720px) {
  .menus-grid-home {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menus-grid-home::-webkit-scrollbar { display: none; }

  .menu-card { flex: 0 0 auto; width: 152px; scroll-snap-align: start; }
  .menu-card-body { padding: 9px 10px 0; }
  .menu-card-top { margin-bottom: 5px; }
  .menu-restaurant-name { font-size: 12px; }
  .menu-dishes-list { gap: 3px; }
  .menu-dish-item { font-size: 10.5px; }
  .menu-dish-item:nth-child(n+3) { display: none; } /* max 2 pjata brenda karuselit */
  .menu-card-footer { padding: 7px 10px 10px; margin-top: 7px; }
  .btn-see-menu { font-size: 10px; padding: 5px 9px; }
  .menu-cuisine-badge { font-size: 9px; padding: 2px 7px; }
  .restaurant-initial { width: 20px; height: 20px; font-size: 10px; }

  /* Karta "Të gjitha Menutë" në fund të karuselit */
  .view-all-tile {
    display: flex;
    flex: 0 0 auto;
    width: 110px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    background: var(--bg-soft, #f6f5f1);
    border: 1.5px dashed #cfc7ac;
    border-radius: var(--r-lg);
    scroll-snap-align: start;
    text-decoration: none;
    padding: 14px 10px;
  }
  .view-all-tile-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .view-all-tile-label { font-size: 11px; font-weight: 800; color: var(--ink); line-height: 1.3; }
}

/* ============================================================
   SERVICES GRID — 10 cards
   ============================================================ */
.services { background: var(--bg); }
/* Grid · 4-col desktop → 3-col tablet / mobile → 2-col on very small screens.
   align-items:start lets only the hovered card expand without dragging siblings. */
.cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; align-items: start;
}
@media (max-width: 1100px) { .cards { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 520px)  { .cards { grid-template-columns: repeat(2,1fr); gap: 10px; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 16px; position: relative; overflow: hidden;
  cursor: pointer; outline: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--orange); transition: width .3s ease, background .22s ease; }
.card:hover, .card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before, .card:focus-within::before { width: 100%; }

.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-soft);
  display: grid; place-items: center; margin-bottom: 12px;
  transition: background .22s ease, transform .22s ease, color .22s ease;
}
.card-icon svg { width: 22px; height: 22px; color: var(--orange-deep); stroke-width: 1.8; transition: color .22s ease; }
.card:hover .card-icon, .card:focus-within .card-icon { transform: rotate(-6deg); }

.card h3 {
  font-size: 14.5px;
  line-height: 1.3;
  margin: 0;
}

/* Collapsed by default — hidden via display:none.
   Revealed (display:block + opacity fade) on hover (desktop) or .is-open (touch). */
.card p, .card .tag {
  margin: 0;
  display: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.card p { font-size: 13.5px; color: var(--body); }
.card .tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em; color: var(--green);
}

/* Reveal: hover for real-cursor devices, .is-open class for touch users
   (toggled by a small click handler in index.html — keeps cross-device parity). */
@media (hover: hover) {
  .card:hover p, .card:hover .tag { display: block; opacity: 1; margin-top: 8px; }
}
.card.is-open p, .card.is-open .tag { display: block; opacity: 1; margin-top: 8px; }
.card.is-open { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card.is-open::before { width: 100%; }
.card.is-open .card-icon { transform: rotate(-6deg); }

/* Tighter sizing for tablet & mobile so 3 cards fit comfortably per row */
@media (max-width: 720px) {
  .card { padding: 14px 12px; border-radius: var(--r-md); }
  .card-icon { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 10px; }
  .card-icon svg { width: 18px; height: 18px; }
  .card h3 { font-size: 12.5px; line-height: 1.25; }
  .card p { font-size: 11.5px; }
}

/* ─── COLOR THEMES — each card stays within its own hue family.
       Idle = pastel bg + deep stroke; Hover = inverted (deep bg + white stroke).
       Five hues distributed so no two adjacent cards share a colour. ─── */
.card.theme-orange .card-icon         { background: #fff0e3; }
.card.theme-orange .card-icon svg     { color: #ea580c; }
.card.theme-orange:hover .card-icon   { background: #ea580c; }
.card.theme-orange:hover .card-icon svg { color: #fff; }
.card.theme-orange::before            { background: #ea580c; }
.card.theme-orange .tag               { color: #ea580c; }

.card.theme-green .card-icon          { background: #d8ece6; }
.card.theme-green .card-icon svg      { color: #0d3c34; }
.card.theme-green:hover .card-icon    { background: #0d3c34; }
.card.theme-green:hover .card-icon svg{ color: #fff; }
.card.theme-green::before             { background: #0d3c34; }
.card.theme-green .tag                { color: #0d3c34; }

.card.theme-sky .card-icon            { background: #e0effe; }
.card.theme-sky .card-icon svg        { color: #1e6fcb; }
.card.theme-sky:hover .card-icon      { background: #1e6fcb; }
.card.theme-sky:hover .card-icon svg  { color: #fff; }
.card.theme-sky::before               { background: #1e6fcb; }
.card.theme-sky .tag                  { color: #1e6fcb; }

.card.theme-plum .card-icon           { background: #f1e3fb; }
.card.theme-plum .card-icon svg       { color: #7e22ce; }
.card.theme-plum:hover .card-icon     { background: #7e22ce; }
.card.theme-plum:hover .card-icon svg { color: #fff; }
.card.theme-plum::before              { background: #7e22ce; }
.card.theme-plum .tag                 { color: #7e22ce; }

.card.theme-amber .card-icon          { background: #fdf0c6; }
.card.theme-amber .card-icon svg      { color: #b45309; }
.card.theme-amber:hover .card-icon    { background: #b45309; }
.card.theme-amber:hover .card-icon svg{ color: #fff; }
.card.theme-amber::before             { background: #b45309; }
.card.theme-amber .tag                { color: #b45309; }

/* ============================================================
   VIP RESERVATION — deep-green feature band
   ============================================================ */
.vip { background: var(--green); color: #e9f3ef; position: relative; overflow: hidden; }
.vip::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(255,255,255,.04); }
.vip .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.vip .eyebrow { color: var(--orange); }
.vip h2 { color: #fff; font-size: clamp(30px,4vw,46px); margin: 14px 0 18px; }
.vip p { font-size: 17px; color: #cfe3dc; max-width: 480px; }
.vip-perks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.vip-perks li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #eaf4f0; }
.vip-perks svg { width: 22px; height: 22px; color: var(--orange); flex: none; }

.discount-card { background: #fff; border-radius: var(--r-lg); padding: 8px; box-shadow: var(--shadow-lg); color: var(--ink); }

/* ── VIP-section contact card · orange header + white body
       Sits in the dark-green VIP band as a high-contrast "at-a-glance" card. */
.vip-contact-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 0;
  color: var(--ink);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.35);
  overflow: hidden;
}
.vip-contact-head {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  padding: 26px 30px 24px;
  position: relative;
  overflow: hidden;
}
.vip-contact-head::after {
  /* Subtle radial highlight in the corner for depth */
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.vip-contact-card h3 {
  font-size: 24px; font-weight: 800; color: #fff;
  margin: 0 0 6px;
  position: relative;
}
.vip-contact-head .vip-contact-lead {
  font-size: 14.5px;
  color: rgba(255,255,255,0.95);
  max-width: none;
  margin: 0;
  position: relative;
}
.vip-contact-row {
  display: flex; gap: 14px;
  align-items: flex-start;
  margin: 0 30px 18px;
}
.vip-contact-head + .vip-contact-row { margin-top: 24px; }
.vc-ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--orange-soft);
  display: grid; place-items: center;
  transition: background .2s ease;
}
.vc-ic svg { width: 20px; height: 20px; color: var(--orange-deep); }
.vip-contact-row:hover .vc-ic { background: var(--orange); }
.vip-contact-row:hover .vc-ic svg { color: #fff; }
.vip-contact-row b {
  display: block; color: var(--ink);
  font-size: 15px; font-weight: 800;
  margin-bottom: 2px;
}
.vip-contact-row span { font-size: 13.5px; color: var(--muted); }

.vip-contact-socials {
  display: flex; gap: 10px; margin: 26px 30px 0;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
}
.vip-contact-socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .18s ease, transform .18s ease, color .18s ease;
}
.vip-contact-socials a svg { width: 18px; height: 18px; }
.vip-contact-socials a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.discount-top { background: linear-gradient(140deg, var(--orange), var(--orange-deep)); border-radius: 22px; padding: 30px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.discount-top .pct { font-size: 76px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.discount-top .pct sup { font-size: 30px; vertical-align: super; }
.discount-top .reserved-icon { width: 72px; height: 72px; color: #fff; margin: 6px auto 2px; display: block; }
.discount-top p { color: rgba(255,255,255,.92); font-weight: 600; margin-top: 4px; }
.discount-top .ribbon { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: rgba(0,0,0,.18); padding: 5px 40px; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.discount-body { padding: 24px 22px 18px; text-align: center; }
.discount-body h3 { font-size: 20px; margin-bottom: 6px; }
.discount-body p { font-size: 14px; color: var(--body); margin-bottom: 18px; }
.discount-body .btn { width: 100%; }

/* ============================================================
   CONTACT / INQUIRY FORM
   ============================================================ */
.contact { background: var(--bg-soft); }

/* ============================================================
   TIRANA DELIVERY · Tirana-only WhatsApp bar + 4-card service tiers
   Sits between #menus and #services. Clean, responsive, no JS deps.
   ============================================================ */
.tirana-delivery { background: var(--bg-soft); padding: 56px 0 80px; }
.tirana-delivery .section-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.tirana-delivery .section-head h2 { font-size: clamp(24px,2.8vw,32px); margin-bottom: 8px; }
.tirana-delivery .section-head p { font-size: 14.5px; color: var(--body); }

/* ── 4 courier-tier cards ── */
.courier-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: stretch;
}
@media (max-width: 1100px) { .courier-grid { grid-template-columns: repeat(2, 1fr); } }

/* MOBILE — karusel horizontal me rrëshqitje (njësoj si menutë), karta
   pak më të vogla që të duket qartë se mund të rrëshqitet me gisht. */
@media (max-width: 720px) {
  .courier-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 2px 2px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .courier-grid::-webkit-scrollbar { display: none; }

  .courier-card { flex: 0 0 auto; width: 215px; scroll-snap-align: start; padding: 16px 14px; }
  .cc-icon { width: 38px; height: 38px; margin-bottom: 9px; }
  .cc-icon svg { width: 18px; height: 18px; }
  .cc-tier { font-size: 9.5px; padding: 3px 8px; margin-bottom: 6px; }
  .courier-card h4 { font-size: 14px; margin-bottom: 4px; }
  .courier-card h4 small { font-size: 10.5px; }
  .courier-card > p { font-size: 12px; margin-bottom: 10px; }
  .cc-route { padding-top: 10px; }
  .cc-route-label { font-size: 10px; margin-bottom: 5px; }
  .cc-dest li { font-size: 11px; padding: 3px 8px; }
  .cc-wa-btn { font-size: 12px; padding: 8px 12px; margin-top: 10px; }
}

.courier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.courier-card::before {
  /* Top accent strip · colored per tier via CSS variable */
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cc-accent, var(--orange));
}
.courier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cc-soft, var(--orange-soft));
  display: grid; place-items: center; margin-bottom: 12px;
}
.cc-icon svg { width: 22px; height: 22px; color: var(--cc-accent, var(--orange-deep)); }

.cc-tier {
  display: inline-block;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cc-accent, var(--orange-deep));
  background: var(--cc-soft, var(--orange-soft));
  padding: 3px 9px; border-radius: 999px;
  margin-bottom: 8px;
}

.courier-card h4 {
  font-size: 16px; font-weight: 800; color: var(--ink);
  margin: 0 0 6px; line-height: 1.25;
}
.courier-card h4 small { font-size: 12px; font-weight: 700; color: var(--muted); }
.courier-card > p { font-size: 13.5px; color: var(--body); margin: 0 0 14px; line-height: 1.5; }
.courier-card > p strong { color: var(--ink); }

.cc-route { margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); }
.cc-route-label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.cc-dest {
  display: flex; flex-wrap: wrap; gap: 5px;
  list-style: none; padding: 0; margin: 0;
}
.cc-dest li {
  font-size: 12px; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); padding: 4px 10px; border-radius: 999px;
}
.cc-dest .cc-highlight {
  background: var(--cc-accent, var(--orange));
  color: #fff;
}

/* WhatsApp button per card — green brand colour, full-width pill */
.cc-wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  background: #25d366; color: #fff;
  border-radius: var(--r-pill);
  font-family: var(--font); font-weight: 700; font-size: 13px;
  text-decoration: none;
  transition: background .18s, transform .18s;
  box-shadow: 0 6px 14px -8px rgba(37,211,102,0.55);
}
.cc-wa-btn:hover { background: #1fb858; transform: translateY(-1px); }

/* ── Per-tier accent palette (CSS variables) ── */
.cc-sameday { --cc-accent: var(--green); --cc-soft: #d8ece6; }
.cc-nextday { --cc-accent: #1e6fcb;     --cc-soft: #e0effe; }
.cc-vip     { --cc-accent: #b45309;     --cc-soft: #fdf0c6; }
.cc-express { --cc-accent: #dc2626;     --cc-soft: #fde7e7; }

/* Responsive · stack the Tirana bar tidily on mobile */
@media (max-width: 720px) {
  .tirana-delivery { padding: 64px 0; }
  .tirana-bar { padding: 20px 18px; }
  .tirana-bar-head h3 { font-size: 17px; }
  .tirana-bar-field { flex-direction: column; align-items: stretch; }
  .btn-tirana-wa { justify-content: center; }
}

/* ============================================================
   COVERAGE MAP — custom SVG map of Durrës delivery zone
   Dark themed band; red route line glows; pins pulse on idle
   and scale on hover. Pure CSS, no external assets.
   ============================================================ */
.coverage {
  background: var(--green);
  color: #fff;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    inset 0 28px 50px -28px rgba(0,0,0,0.30),
    0 12px 55px -12px rgba(0,0,0,0.11);
}
.coverage::before {
  content: "";
  position: absolute; top: -160px; right: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.025);
  pointer-events: none;
}
.coverage .section-head { color: #fff; text-align: center; max-width: 720px; margin: 0 auto 22px; }
.coverage .section-head h2 { color: #fff; font-size: clamp(28px,3.4vw,40px); margin-bottom: 12px; }
.coverage .section-head h2 .accent { color: var(--orange); font-style: normal; }
.coverage .section-head p { color: rgba(255,255,255,0.72); font-size: 15.5px; }
.coverage .section-head .eyebrow { color: var(--orange); }

/* Map outer panel — gives the SVG breathing room and a subtle frame */
.coverage-map-wrap {
  background: linear-gradient(160deg, #0a342d, #114a40);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 24px 24px 18px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.coverage-map { width: 100%; height: auto; display: block; max-height: 420px; }

/* Land mass */
.map-land {
  fill: rgba(255,255,255,0.04);
  stroke: rgba(239,68,68,0.65);
  stroke-width: 3;
}
.map-wave { fill: none; stroke: rgba(255,255,255,0.10); stroke-width: 1; stroke-linecap: round; }
.map-sea-label {
  fill: rgba(255,255,255,0.18);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em;
  font-family: var(--font);
}
.map-region-label {
  fill: rgba(255,255,255,0.38);
  font-size: 22px; font-weight: 800;
  letter-spacing: 0.3em;
  font-family: var(--font);
}

/* Service route — red network with draw-on animation */
.map-route {
  fill: none;
  stroke: #ef4444;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18000;
  stroke-dashoffset: 18000;
  animation: route-draw 4s ease-out 0.4s forwards;
}
@keyframes route-draw { to { stroke-dashoffset: 0; } }

/* Markers — group lets us animate transform on hover.
   transform-box:fill-box anchors the scale to the marker's own centre. */
.map-marker { cursor: pointer; outline: none; }
.map-marker .marker-dot,
.map-marker .marker-pulse {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.22s ease, fill 0.18s ease;
}
.marker-dot {
  fill: #ef4444;
  stroke: #fff;
  stroke-width: 2.2;
  transform: scale(0.85);
}
.marker-pulse {
  fill: #ef4444;
  opacity: 0;
  animation: marker-pulse 2.4s ease-out infinite;
}
@keyframes marker-pulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}
.marker-label {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 600;
  fill: rgba(255,255,255,0.72);
  pointer-events: none;
  paint-order: stroke;
  stroke: #0a342d;
  stroke-width: 3.5;
  transition: fill 0.18s ease, font-size 0.18s ease, font-weight 0.18s ease;
}

/* Hover / focus state — scale the pin and pop the label */
.map-marker:hover .marker-dot,
.map-marker:focus-visible .marker-dot { transform: scale(1.45); fill: #fff; stroke: #ef4444; stroke-width: 3; }
.map-marker:hover .marker-label,
.map-marker:focus-visible .marker-label { fill: #fff; font-weight: 800; font-size: 21px; }
.map-marker:hover .marker-pulse,
.map-marker:focus-visible .marker-pulse { animation-duration: 1.2s; }

.map-compass text { font-family: var(--font); }

/* Legend strip below the map */
.map-legend {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.legend-item { display: inline-flex; align-items: center; gap: 9px; }
.legend-line {
  width: 28px; height: 3px; border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,0.65);
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ef4444;
  border: 2px solid #fff;
}
.legend-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 9px 16px; border-radius: var(--r-pill);
  transition: background .18s, transform .18s;
}
.legend-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
.legend-cta svg { color: #fff; }

@media (max-width: 720px) {
  .coverage { padding: 70px 0 80px; }
  .coverage-map-wrap { padding: 14px 12px 12px; }
  .marker-label { font-size: 16px; }
  .map-legend { gap: 16px; font-size: 12px; }
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: stretch; }

.contact-info { background: var(--green); color: #dceee8; border-radius: var(--r-lg); padding: 40px 34px; position: relative; overflow: hidden; }
.contact-info h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.contact-info > p { color: #bcd6cd; margin-bottom: 28px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 22px; }
.info-row .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 20px; height: 20px; color: var(--orange); }
.info-row b { color: #fff; font-size: 15px; display: block; }
.info-row span { font-size: 14px; color: #bcd6cd; }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .18s, transform .18s; }
.contact-socials a:hover { background: var(--orange); transform: translateY(-3px); }
.contact-socials svg { width: 19px; height: 19px; color: #fff; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 34px; }
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card > p { color: var(--body); margin-bottom: 26px; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--orange-deep); }
.field input,
.field select,
.field textarea {
  font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg-soft); transition: border-color .15s, background .15s, box-shadow .15s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255,122,55,.12); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23828a86' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}

/* ── Customer Auth Modal ─────────────────────────────────── */
.nda-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.52); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 16px;
}
.nda-overlay--open { display: flex; }
.nda-modal {
  background: #fff; border-radius: 22px;
  width: 100%; max-width: 430px; max-height: 92vh; overflow-y: auto;
  padding: 30px 28px 26px; position: relative;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  scrollbar-width: thin;
}
.nda-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 26px; line-height: 1;
  color: #9ca3af; cursor: pointer; padding: 2px 6px; border-radius: 6px;
  transition: color .15s;
}
.nda-close:hover { color: #111; }

/* tabs */
.nda-tabs { display: flex; border-bottom: 2px solid var(--line); margin-bottom: 22px; }
.nda-tab {
  flex: 1; background: none; border: none; padding: 9px 0 12px;
  font: 600 14.5px var(--font); color: #9ca3af; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s;
}
.nda-tab--active { color: var(--orange); border-bottom-color: var(--orange); }

/* fields */
.nda-field { margin-bottom: 13px; }
.nda-field label { display: block; font-size: 12px; font-weight: 700; color: #374151; margin-bottom: 5px; letter-spacing: .04em; text-transform: uppercase; }
.nda-field label em { font-weight: 400; text-transform: none; opacity: .65; }
.nda-field input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font: 14px var(--font); color: #111;
  background: #f9fafb; box-sizing: border-box; outline: none; transition: border-color .18s, background .18s;
}
.nda-field input:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 3px rgba(234,88,12,.1); }
.nda-pw { position: relative; }
.nda-pw input { padding-right: 42px; }
.nda-eye { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 15px; padding: 0; line-height: 1; }
.nda-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* map */
.nda-section-title { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6b7280; margin: 18px 0 6px; }
.nda-map-hint { font-size: 12px; color: #9ca3af; margin: 0 0 8px; }
#nda-map, #nda-map-edit { height: 200px; border-radius: 12px; border: 1.5px solid var(--line); margin-bottom: 14px; overflow: hidden; }

/* buttons */
.nda-btn {
  width: 100%; border: none; border-radius: 12px; padding: 13px;
  font: 700 15px var(--font); cursor: pointer; margin-top: 4px; transition: background .18s, color .18s;
  background: var(--orange); color: #fff;
}
.nda-btn:hover { background: var(--orange-deep); }
.nda-btn:disabled { opacity: .55; cursor: not-allowed; }
.nda-btn--outline { background: transparent !important; border: 2px solid var(--orange) !important; color: var(--orange) !important; margin-top: 10px; }
.nda-btn--outline:hover { background: var(--orange) !important; color: #fff !important; }
.nda-btn--ghost { background: transparent !important; color: #6b7280 !important; border: 1.5px solid #e5e7eb !important; margin-top: 8px; }
.nda-btn--ghost:hover { background: #f3f4f6 !important; }
.nda-btn-logout {
  width: 100%; border: 1.5px solid #ef4444; background: none; border-radius: 12px;
  padding: 11px; font: 600 14px var(--font); color: #ef4444; cursor: pointer;
  margin-top: 10px; transition: background .18s, color .18s;
}
.nda-btn-logout:hover { background: #ef4444; color: #fff; }
.nda-err { color: #dc2626; font-size: 13px; margin: 8px 0 0; min-height: 18px; }

/* user panel */
.nda-user-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.nda-avatar {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--orange); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font: 700 19px var(--font);
}
.nda-user-name { font-size: 17px; font-weight: 700; color: #111; }
.nda-user-email { font-size: 13px; color: #9ca3af; margin-top: 2px; }
.nda-addr-box {
  background: #f8fafc; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 4px;
}
.nda-addr-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #9ca3af; margin-bottom: 5px; }
.nda-addr-val { font-size: 14px; color: #374151; }

/* header button */
.nda-header-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green); color: #fff; border: none;
  border-radius: 20px; padding: 6px 14px 6px 8px;
  font: 600 12px var(--font); cursor: pointer; white-space: nowrap;
  transition: background .18s; flex-shrink: 0;
}
.nda-header-btn:hover { background: var(--orange); }
.nda-header-btn svg { flex-shrink: 0; }
.nda-hdr-avatar {
  width: 24px; height: 24px; background: var(--orange); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font: 700 9px var(--font); flex-shrink: 0;
}
.nda-hdr-label { line-height: 1; }

@media (max-width: 480px) {
  .nda-modal { padding: 22px 18px 20px; border-radius: 18px; }
  .nda-field-row { grid-template-columns: 1fr; }
  .nda-hdr-label { display: none; }
  .nda-header-btn { padding: 5px; border-radius: 50%; border: none; }
}
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success { display: none; background: #e9f7f0; border: 1.5px solid #aee0c9; color: #1d6b4c; border-radius: 14px; padding: 16px 18px; font-weight: 600; font-size: 14.5px; margin-top: 18px; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deep); color: #a9c5bc; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo small { color: #7ea197; }
.footer-about p { font-size: 14.5px; color: #9fbdb3; max-width: 300px; }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .03em; margin-bottom: 18px; }
.footer-col a,
.footer-col li { display: block; font-size: 14.5px; color: #9fbdb3; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--orange); }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(255,255,255,.08); }
.footer-hours .day { color: #cfe3dc; }
.footer-hours .hrs { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13.5px; color: #82a298; flex-wrap: wrap; }
.footer-bottom .made b { color: #cfe3dc; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  display: flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff;
  padding: 14px 20px 14px 16px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  box-shadow: 0 16px 34px -10px rgba(37,211,102,.6);
  transition: transform .18s, box-shadow .18s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -10px rgba(37,211,102,.7); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .ping { position: absolute; top: -3px; left: 30px; width: 16px; height: 16px; background: var(--orange); border-radius: 50%; border: 3px solid #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 20px; }
  .hero .hero-request { order: -2; }
  .hero-visual { min-height: 460px; order: -1; }
  .hero-disc  { width: 400px; height: 400px; }
  .hero-visual .hero-cta { display: none; }
  .hero-cta-mobile { display: flex; margin-top: 28px; }
  .hero-figure { width: 400px; height: 400px; }
  .vip .wrap, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .menus-section { padding: 68px 0; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 14px; gap: 4px; box-shadow: var(--shadow-md); margin: 0; z-index: 59; }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: grid; }
  .statusbar .wrap { flex-direction: column; align-items: flex-start; gap: 4px; min-height: 0; }
  .status-right { gap: 14px; }
  .status-left { width: 100%; }
  .status-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .status-detail, .status-time { display: none; }
  .stats .wrap { grid-template-columns: 1fr 1fr; gap: 14px 12px; padding: 16px 20px; }
  .stat b { font-size: 20px; }
  .stat span { font-size: 10.5px; line-height: 1.25; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-about, .footer-hours { grid-column: 1 / -1; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .menus-header { flex-direction: column; align-items: flex-start; }
  .menus-request-box { flex-direction: column; align-items: stretch; padding: 18px 20px; }
  .btn-send-request { justify-content: center; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .hero-disc  { width: 320px; height: 320px; }
  .hero-figure { width: 320px; height: 320px; }
  .b1,.b2,.b3,.b4 { transform: scale(.82); }
}
