/* ============================================================
   DALEEL — MAIN STYLESHEET
   daleelus.com
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: #F7F6F0; color: #1a1a1a; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --green:      #1B4332;
  --green-dark: #144226;
  --green-mid:  #2D6A4F;
  --gold:       #D4A017;
  --gold-dark:  #b8870f;
  --cream:      #F7F6F0;
  --white:      #ffffff;
  --border:     #e8e8e0;
  --muted:      #888888;
  --radius:     8px;
  --radius-lg:  12px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27,67,50,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,160,23,0.25);
  height: 62px; display: flex; align-items: center; padding: 0 24px; gap: 14px;
  overflow: visible;
}
.nav-logo {
  color: var(--gold); font-weight: 900; font-size: 22px;
  font-style: italic; letter-spacing: -1px; flex-shrink: 0; display: flex; align-items: baseline; gap: 2px;
}
.logo-ar  { font-family: 'Noto Naskh Arabic',serif; font-style:normal; font-size:14px; color:rgba(255,255,255,0.4); margin-right:5px; }
.logo-tld { font-style:normal; font-weight:400; font-size:13px; color:rgba(255,255,255,0.35); }

.nav-search {
  flex:1; max-width:500px; display:flex; background:white;
  border-radius:6px; overflow:visible; height:37px; border:2px solid rgba(255,255,255,0.18);
  position: relative;
}
.ns-seg { flex:1; display:flex; align-items:center; padding:0 10px; gap:6px; position: relative; overflow: visible; }
.ns-seg:first-child { border-right:1px solid #eee; flex:1.5; }
.ns-seg i { font-size:14px; color:#aaa; flex-shrink:0; }
.ns-seg input { flex:1; border:none; outline:none; font-size:13px; color:#333; background:transparent; }
.ns-seg input::placeholder { color:#bbb; }
.ns-go { background:var(--gold); border:none; color:var(--green); padding:0 15px; font-size:13px; font-weight:800; cursor:pointer; flex-shrink:0; transition:background .15s; }
.ns-go:hover { background:var(--gold-dark); }

.nav-links { display:flex; gap:5px; align-items:center; margin-left:auto; flex-shrink:0; }
.nav-link { color:rgba(255,255,255,0.75); font-size:12px; font-weight:500; padding:6px 11px; border-radius:5px; transition:background .15s; white-space:nowrap; }
.nav-link:hover { background:rgba(255,255,255,0.1); color:white; }
.nav-link.cta { background:var(--gold); color:var(--green); font-weight:800; }
.nav-link.cta:hover { background:var(--gold-dark); }
.nav-hamburger { display:none; background:none; border:none; color:white; font-size:22px; padding:4px; cursor:pointer; }

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  display:none; position:fixed; top:62px; left:0; right:0; z-index:999;
  background:var(--green); border-bottom:2px solid var(--gold);
  flex-direction:column; padding:10px 16px 14px; gap:2px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { color:rgba(255,255,255,0.82); font-size:14px; font-weight:500; padding:10px 12px; border-radius:6px; }
.mobile-menu a:hover { background:rgba(255,255,255,0.1); }
.mobile-menu .mob-cta { background:var(--gold); color:var(--green); font-weight:800; text-align:center; margin-top:6px; border-radius:6px; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height:100vh; background:linear-gradient(160deg,var(--green) 0%,var(--green-mid) 50%,#1a3d2b 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:100px 24px 72px; text-align:center; position:relative; overflow:hidden;
}
#hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 20% 50%, rgba(212,160,23,.07) 0%,transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(212,160,23,.05) 0%,transparent 40%);
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(212,160,23,.15); border:1px solid rgba(212,160,23,.35);
  color:var(--gold); font-size:11px; font-weight:800;
  padding:5px 14px; border-radius:99px; letter-spacing:.8px; text-transform:uppercase; margin-bottom:22px;
}
#hero h1 { color:white; font-size:clamp(34px,6vw,64px); font-weight:900; line-height:1.08; letter-spacing:-2px; margin-bottom:12px; max-width:760px; }
#hero h1 em { color:var(--gold); font-style:normal; }
.hero-ar { font-family:'Noto Naskh Arabic',serif; color:rgba(255,255,255,.4); font-size:17px; margin-bottom:12px; direction:rtl; }
.hero-sub { color:rgba(255,255,255,.62); font-size:16px; line-height:1.65; max-width:480px; margin-bottom:36px; }

/* Hero search */
.hero-search {
  width:100%; max-width:640px; background:white; border-radius:10px;
  display:flex; overflow:visible; box-shadow:0 8px 40px rgba(0,0,0,.3); margin-bottom:18px;
  position: relative;
}
.hs-seg { flex:1; display:flex; align-items:center; padding:0 16px; gap:9px; height:56px; position:relative; overflow:visible; }
.hs-seg:first-child { border-right:1px solid #eee; flex:1.5; }
.hs-seg i { font-size:17px; color:#aaa; flex-shrink:0; }
.hs-seg input { flex:1; border:none; outline:none; font-size:15px; color:#333; background:transparent; }
.hs-seg input::placeholder { color:#bbb; }
.hs-btn { background:var(--gold); color:var(--green); border:none; padding:0 26px; font-size:15px; font-weight:800; flex-shrink:0; cursor:pointer; transition:background .15s; border-radius:0 10px 10px 0; }
.hs-btn:hover { background:var(--gold-dark); }

.city-label { color:rgba(255,255,255,.45); font-size:12px; margin-bottom:7px; }
.quick-cities { display:flex; gap:7px; flex-wrap:wrap; justify-content:center; }
.qc { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); color:rgba(255,255,255,.8); font-size:12px; font-weight:500; padding:5px 13px; border-radius:99px; cursor:pointer; transition:all .15s; }
.qc:hover { background:rgba(255,255,255,.2); color:white; }

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip { background:var(--green); border-top:1px solid rgba(212,160,23,.2); border-bottom:1px solid rgba(212,160,23,.2); padding:24px; display:flex; justify-content:center; gap:0; }
.stat { flex:1; max-width:180px; text-align:center; padding:0 20px; border-right:1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right:none; }
.stat-num { color:var(--gold); font-size:28px; font-weight:900; letter-spacing:-1px; line-height:1; }
.stat-lbl { color:rgba(255,255,255,.5); font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; margin-top:4px; }

/* ── SECTION STYLES ───────────────────────────────────────── */
.section { padding:60px 24px; max-width:1100px; margin:0 auto; }
.section-white { background:white; padding:60px 24px; }
.section-white .inner, .section-green .inner { max-width:1100px; margin:0 auto; }
.section-green { background:var(--green); padding:60px 24px; }
.sec-label { color:var(--gold); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:1px; margin-bottom:7px; }
.sec-title { font-size:28px; font-weight:800; color:var(--green); letter-spacing:-1px; margin-bottom:5px; }
.sec-sub { font-size:14px; color:var(--muted); margin-bottom:28px; }

/* ── CITY GRID ────────────────────────────────────────────── */
.city-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(155px,1fr)); gap:11px; }
.city-card { background:white; border:1px solid var(--border); border-radius:var(--radius-lg); padding:18px 14px; text-align:center; cursor:pointer; transition:all .2s; display:block; }
.city-card:hover { border-color:var(--green); background:#f0fdf4; transform:translateY(-3px); box-shadow:0 8px 24px rgba(27,67,50,.1); }
.city-icon { font-size:26px; margin-bottom:7px; }
.city-name { font-size:13px; font-weight:700; color:var(--green); margin-bottom:2px; }
.city-count { font-size:11px; color:var(--muted); }

/* ── CATEGORY GRID ────────────────────────────────────────── */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:10px; }
.cat-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px 12px; text-align:center; cursor:pointer; transition:all .2s; display:block; }
.cat-card:hover { border-color:var(--green); background:#f0fdf4; transform:translateY(-2px); box-shadow:0 5px 18px rgba(27,67,50,.08); }
.cat-icon-wrap { font-size:26px; margin-bottom:9px; }
.cat-name { font-size:12px; font-weight:700; color:var(--green); margin-bottom:2px; }
.cat-name-ar { font-family:'Noto Naskh Arabic',serif; font-size:11px; color:var(--muted); direction:rtl; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:36px; }
.how-card { text-align:center; }
.how-num { width:46px; height:46px; border-radius:50%; background:rgba(212,160,23,.15); border:2px solid var(--gold); color:var(--gold); font-size:17px; font-weight:900; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.how-card h3 { color:white; font-size:15px; font-weight:700; margin-bottom:7px; }
.how-card p { color:rgba(255,255,255,.52); font-size:13px; line-height:1.65; }

/* ── FEATURED GRID ────────────────────────────────────────── */
.feat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:14px; }
.feat-card { background:white; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; cursor:pointer; transition:all .2s; display:flex; flex-direction:column; }
.feat-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.1); transform:translateY(-2px); border-color:#ccc; }
.feat-img { height:130px; background:var(--cream); display:flex; align-items:center; justify-content:center; font-size:44px; }
.feat-body { padding:13px 15px; flex:1; display:flex; flex-direction:column; gap:4px; }
.feat-badge { display:inline-block; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; background:#f0fdf4; color:#166534; align-self:flex-start; }
.feat-name { font-size:14px; font-weight:700; color:var(--green); }
.feat-name-ar { font-family:'Noto Naskh Arabic',serif; font-size:12px; color:var(--muted); direction:rtl; }
.feat-addr { font-size:11px; color:var(--muted); display:flex; align-items:center; gap:3px; margin-top:auto; padding-top:6px; }
.feat-meta { display:flex; gap:5px; flex-wrap:wrap; }

/* ── BADGES ───────────────────────────────────────────────── */
.badge-halal  { background:#f0fdf4; color:#166534; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; }
.badge-arabic { background:#eff6ff; color:#1e40af; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; }
.badge-zabiha { background:#fefce8; color:#854d0e; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; }
.badge-feat   { background:#fffbeb; color:#92400e; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; }
.badge-open   { background:#f0fdf4; color:#166534; font-size:10px; font-weight:700; padding:2px 8px; border-radius:99px; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%); padding:60px 24px; text-align:center; }
.cta-banner h2 { font-size:30px; font-weight:900; color:var(--green); letter-spacing:-1px; margin-bottom:9px; }
.cta-banner p { font-size:15px; color:rgba(27,67,50,.7); margin-bottom:26px; max-width:460px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:11px; justify-content:center; flex-wrap:wrap; }
.cta-primary { background:var(--green); color:white; font-size:14px; font-weight:800; padding:12px 26px; border-radius:7px; border:none; cursor:pointer; transition:background .15s; display:inline-flex; align-items:center; gap:6px; }
.cta-primary:hover { background:var(--green-dark); }
.cta-secondary { background:rgba(27,67,50,.12); color:var(--green); font-size:14px; font-weight:700; padding:12px 26px; border-radius:7px; border:2px solid rgba(27,67,50,.25); cursor:pointer; transition:all .15s; display:inline-block; }
.cta-secondary:hover { background:rgba(27,67,50,.2); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background:var(--green); padding:44px 24px 28px; border-top:2px solid rgba(212,160,23,.3); }
.foot-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; }
.foot-logo { color:var(--gold); font-weight:900; font-size:24px; font-style:italic; letter-spacing:-1px; margin-bottom:9px; }
.foot-logo span { font-style:normal; font-weight:400; font-size:13px; color:rgba(255,255,255,.3); }
.foot-brand p { color:rgba(255,255,255,.48); font-size:13px; line-height:1.6; margin-bottom:5px; }
.foot-ar { font-family:'Noto Naskh Arabic',serif; color:rgba(255,255,255,.35); font-size:13px; direction:rtl; }
.foot-col h4 { color:white; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.6px; margin-bottom:12px; }
.foot-col a { display:block; color:rgba(255,255,255,.52); font-size:13px; margin-bottom:7px; transition:color .15s; }
.foot-col a:hover { color:var(--gold); }
.foot-bottom { max-width:1100px; margin:28px auto 0; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:7px; }
.foot-bottom p { color:rgba(255,255,255,.22); font-size:11px; }

/* ── SHARED BUTTON ────────────────────────────────────────── */
.btn-green { display:inline-flex; align-items:center; gap:7px; background:var(--green); color:white; font-size:14px; font-weight:700; padding:12px 26px; border-radius:7px; transition:background .15s; }
.btn-green:hover { background:var(--green-dark); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { background:white; border-bottom:1px solid var(--border); padding:10px 24px; font-size:12px; color:var(--muted); display:flex; align-items:center; gap:5px; flex-wrap:wrap; margin-top:62px; }
.breadcrumb a { color:var(--green); font-weight:500; }
.breadcrumb a:hover { text-decoration:underline; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:12px; font-weight:600; color:#555; margin-bottom:5px; }
.form-input, .form-select, .form-textarea {
  width:100%; border:1.5px solid var(--border); border-radius:6px;
  padding:9px 11px; font-size:13px; outline:none; background:white;
  transition:border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--green); }
.form-textarea { resize:vertical; }
.form-2col { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-3col { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; }
.btn-submit { background:var(--green); color:white; border:none; border-radius:7px; padding:13px; font-size:15px; font-weight:700; cursor:pointer; width:100%; transition:background .15s; }
.btn-submit:hover { background:var(--green-dark); }

/* ── ALERTS ───────────────────────────────────────────────── */
.alert { padding:12px 16px; border-radius:7px; margin-bottom:16px; font-size:13px; }
.alert-success { background:#f0fdf4; border:1px solid #86efac; color:#166534; }
.alert-error   { background:#fef2f2; border:1px solid #fca5a5; color:#991b1b; }

/* ── LOADING SPINNER ──────────────────────────────────────── */
.spinner { display:flex; justify-content:center; padding:32px; }
.spin { width:32px; height:32px; border:3px solid var(--border); border-top-color:var(--green); border-radius:50%; animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-search, .nav-links { display:none; }
  .nav-hamburger { display:block; }
  #hero { padding: 80px 16px 60px; }
  #hero h1 { font-size:30px; letter-spacing:-1px; }
  .hero-ar { font-size:14px; }
  .hero-sub { font-size:14px; margin-bottom:24px; }
  .hero-eyebrow { font-size:10px; padding:4px 12px; margin-bottom:16px; }
  .how-grid { grid-template-columns:1fr; gap:22px; }
  .foot-inner { grid-template-columns:1fr 1fr; gap:24px; }
  .form-2col, .form-3col { grid-template-columns:1fr; }
  .stats-strip { flex-wrap:wrap; }
  .stat { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); padding:10px 0; min-width:45%; }
  .feat-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:repeat(3,1fr); }
  .cta-banner h2 { font-size:22px; }
  .cta-btns { flex-direction:column; align-items:center; }
  .cta-primary, .cta-secondary { width:100%; text-align:center; justify-content:center; }
  /* City dropdown on mobile */
  .city-drop { min-width:200px !important; left:0 !important; right:0 !important; }
  /* Bottom nav */
  .mob-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99999;
    background: white;
    border-top: 2px solid #e8e8e0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    height: 60px;
  }
  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #aaa;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 2px;
  }
  .mob-nav-item.active { color: #1B4332; }
  .mob-nav-item i { font-size: 20px; }
  .mob-nav-add {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: #1B4332;
  }
  .mob-nav-add-icon {
    width: 38px; height: 38px;
    background: #1B4332;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px;
  }
  body { padding-bottom: 68px; }
}
@media (max-width: 480px) {
  .foot-inner { grid-template-columns:1fr; }
  .city-grid, .cat-grid { grid-template-columns:repeat(2,1fr); }
  #hero h1 { font-size:26px; }
  .hero-sub { font-size:13px; }
  .stat-num { font-size:22px; }
}

/* ── LANGUAGE TOGGLE BUTTON ───────────────────────────────── */
.lang-btn {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white; font-size: 13px; font-weight: 700;
  padding: 5px 13px; border-radius: 99px; cursor: pointer;
  transition: all 0.2s; font-family: 'Noto Naskh Arabic','Inter',sans-serif;
  white-space: nowrap; letter-spacing: 0;
}
.lang-btn:hover { background: rgba(255,255,255,0.22); border-color: var(--gold); color: var(--gold); }
.mob-lang {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85); width: 100%; padding: 10px 12px;
  border-radius: 6px; font-size: 14px; text-align: center; margin-top: 4px;
}

/* ── CITY SEARCH DROPDOWN ─────────────────────────────────── */
.city-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: white;
  border: 2px solid #1B4332;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 999999;
  overflow-y: auto;
  max-height: 300px;
}
.city-drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; cursor: pointer; transition: background .12s;
  border-bottom: 0.5px solid #f5f5f5; font-size: 13px; color: #333;
  white-space: nowrap;
}
.city-drop-item:last-child { border-bottom: none; }
.city-drop-item:hover, .city-drop-item.hover { background: #f0fdf4; }
.city-drop-item i { font-size: 14px; color: #1B4332; flex-shrink: 0; }
.city-drop-name { flex: 1; font-weight: 600; color: #1B4332; }
.city-drop-count { font-size: 11px; color: #aaa; flex-shrink: 0; }

.nav-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 240px; background: white; border: 2px solid #1B4332;
  border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  z-index: 999999; display: none; overflow: hidden;
}

/* ── RTL SUPPORT ──────────────────────────────────────────── */
body.rtl {
  font-family: 'Noto Naskh Arabic','Inter',sans-serif;
  direction: rtl;
  text-align: right;
}
/* Keep search bars LTR always */
body.rtl .hero-search,
body.rtl .nav-search { direction: ltr !important; }
body.rtl .hs-seg input,
body.rtl .ns-seg input { direction: ltr !important; text-align: left !important; }

/* Navbar */
body.rtl #navbar { flex-direction: row-reverse; }
body.rtl .nav-links { flex-direction: row-reverse; margin-left: 0; margin-right: auto; }

/* Hero */
body.rtl .hero-eyebrow,
body.rtl #hero h1,
body.rtl .hero-sub,
body.rtl .hero-ar,
body.rtl .city-label,
body.rtl .quick-cities { text-align: center; }

/* Stats */
body.rtl .stat { border-right: none; border-left: 1px solid rgba(255,255,255,0.1); }
body.rtl .stat:last-child { border-left: none; }

/* Grids & cards */
body.rtl .city-grid,
body.rtl .cat-grid,
body.rtl .feat-grid,
body.rtl .how-grid { direction: rtl; }
body.rtl .city-card,
body.rtl .cat-card,
body.rtl .how-card { text-align: center; }
body.rtl .feat-body { text-align: right; direction: rtl; }
body.rtl .feat-addr { flex-direction: row-reverse; }

/* CTA */
body.rtl .cta-banner h2,
body.rtl .cta-banner p { text-align: center; }
body.rtl .cta-btns { flex-direction: row-reverse; }

/* Footer */
body.rtl footer,
body.rtl .foot-inner { direction: rtl; }
body.rtl .foot-col a { text-align: right; }
body.rtl .foot-bottom { flex-direction: row-reverse; }

/* Misc */
body.rtl .breadcrumb { flex-direction: row-reverse; }
body.rtl .mobile-menu { text-align: right; }
body.rtl .form-label { text-align: right; }
body.rtl h1, body.rtl h2, body.rtl h3,
body.rtl .sec-title { letter-spacing: 0; }

/* ── HERO SLIDESHOW ───────────────────────────────────────── */
#hero {
  position: relative;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(27,67,50,0.88) 0%,
    rgba(27,67,50,0.82) 50%,
    rgba(26,61,43,0.90) 100%);
  z-index: 1;
}
#hero > *:not(.hero-slideshow):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}


/* Hide bottom nav on desktop, show on mobile */
.mob-bottom-nav { display: none; }
@media (max-width: 768px) {
  .mob-bottom-nav { display: flex !important; }
}