/* ==========================================================================
   DOB BURGER AGENCY — COMING SOON & VIP LAUNCH LUXURY STYLESHEET
   Design System: Deep Obsidian, Ember Glow, Crimson & Liquid Gold Accents
   Brand Context: 7+ Established Operational Branches, Digital Platform Coming Soon
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;600;700;800;900&family=Cairo:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-deep: #060608;
  --bg-card: rgba(18, 16, 22, 0.72);
  --bg-card-hover: rgba(28, 24, 34, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(225, 29, 72, 0.35);
  --gold-border-glow: rgba(245, 158, 11, 0.35);
  
  --primary: #e11d48;
  --primary-glow: rgba(225, 29, 72, 0.45);
  --primary-dark: #9f1239;
  
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --amber-glow: rgba(245, 158, 11, 0.4);

  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.35);
  
  --text-pure: #ffffff;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-sub: #6b7280;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 50px rgba(225, 29, 72, 0.25);
  --shadow-gold: 0 0 40px rgba(245, 158, 11, 0.25);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Cairo', 'Alexandria', sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Clean Premium Restaurant Backdrop */
.noise-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(225, 29, 72, 0.09) 0%, rgba(6, 6, 8, 0.98) 75%);
  pointer-events: none;
  z-index: 1;
}

/* Layout Containers */
.page-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER / NAVBAR (FLOATING LUXURY CAPSULE - NON-STICKY)
   ========================================================================== */
.site-header {
  position: relative; /* Not stuck / not sticky to the page */
  top: auto;
  margin: 18px auto 28px; /* Generous breathing space from top and bottom */
  max-width: 1220px;
  width: calc(100% - 32px);
  padding: 12px 20px;
  border-radius: 20px;
  background: rgba(14, 10, 20, 0.85);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.18);
  z-index: 100;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(20, 16, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-group:hover .brand-logo-emblem {
  transform: scale(1.06);
}

.brand-logo-img {
  height: 28px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-name-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-pure);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.brand-verified-tick {
  display: inline-flex;
  align-items: center;
}

.brand-sub-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
}

.status-badge-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: #34d399;
}

.pulse-dot-green {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 2s infinite ease-in-out;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.btn-nav-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-nav-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

.btn-nav-insta-pill {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fb7185;
}

.btn-nav-insta-pill:hover {
  background: rgba(225, 29, 72, 0.25);
  border-color: #f43f5e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-nav-phone-mobile {
  display: none;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.btn-nav-phone-mobile:hover, .btn-nav-phone-mobile:active {
  background: rgba(16, 185, 129, 0.28);
  color: #fff;
}

.btn-nav-secret {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-sub);
  padding: 8px 10px;
}

.btn-nav-secret:hover {
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

/* Hamburger Drawer Button */
.btn-menu-trigger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-menu-trigger:active {
  transform: scale(0.92);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-menu-trigger.active .line-top {
  transform: translateY(7px) rotate(45deg);
}

.btn-menu-trigger.active .line-mid {
  opacity: 0;
}

.btn-menu-trigger.active .line-bot {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay & Sheet */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  right: auto;
  width: 84%;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(20, 16, 28, 0.98) 0%, rgba(10, 8, 16, 0.99) 100%);
  backdrop-filter: blur(35px) saturate(220%);
  -webkit-backdrop-filter: blur(35px) saturate(220%);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  box-shadow: 15px 0 45px rgba(0, 0, 0, 0.88), inset -1px 0 1px rgba(255, 255, 255, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: calc(20px + env(safe-area-inset-top, 0px)) 18px calc(24px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.drawer-logo-img {
  height: 24px;
  width: auto;
}

.drawer-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.drawer-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.btn-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-drawer-close:active {
  transform: scale(0.9);
}

.drawer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  padding-right: 4px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #f3f4f6;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.drawer-nav-link:hover, .drawer-nav-link:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateX(-4px);
}

.nav-link-icon {
  font-size: 1.15rem;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-link-text {
  flex: 1;
}

.drawer-badge-pill {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
}

.drawer-call-box {
  margin-top: 24px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.drawer-call-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.btn-drawer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #000;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.92rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s ease;
}

.btn-drawer-call:active {
  transform: scale(0.96);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 50px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.24;
  color: var(--text-pure);
  letter-spacing: -0.8px;
}

.gradient-text-fire {
  background: linear-gradient(135deg, #ffffff 0%, #fecdd3 30%, #f43f5e 65%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* Direct Action Buttons in Hero */
.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: var(--radius-md);
  color: #34d399;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-hero-call:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: #10b981;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.btn-hero-branches {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-hero-branches:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   COUNTDOWN TIMER (For Web & App Launch)
   ========================================================================== */
.countdown-box {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--amber), transparent);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.countdown-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-pure);
}

.countdown-units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.count-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.count-card:hover {
  border-color: rgba(225, 29, 72, 0.4);
  transform: translateY(-2px);
}

.count-val {
  font-family: 'Alexandria', 'Inter', monospace;
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.count-val.accent-gold {
  color: var(--amber-light);
}

.count-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: 0.3px;
}

/* ==========================================================================
   VIP WAITLIST FORM (Web Launch Priority)
   ========================================================================== */
.waitlist-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  position: relative;
}

.waitlist-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #fff;
  background: rgba(18, 16, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.25s ease;
}

.waitlist-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
  background: rgba(28, 24, 34, 0.95);
}

.waitlist-input::placeholder {
  color: var(--text-sub);
}

.btn-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 60%, #9f1239 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-vip:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(225, 29, 72, 0.55);
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 60%, #be123c 100%);
}

.btn-vip:active {
  transform: translateY(0) scale(0.98);
}

/* ==========================================================================
   LAUNCH NOTIFICATION SUCCESS CONFIRMATION (NO DISCOUNTS)
   ========================================================================== */
.notify-success-box {
  animation: notifyFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 10px;
}

@keyframes notifyFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.notify-success-content {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(18, 14, 24, 0.85);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.15);
}

.notify-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}




/* ==========================================================================
   HERO SHOWCASE VISUAL
   ========================================================================== */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.burger-showcase-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.burger-glow-backdrop {
  position: absolute;
  inset: -10px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 50%, rgba(225, 29, 72, 0.35) 0%, rgba(245, 158, 11, 0.15) 50%, transparent 80%);
  filter: blur(40px);
  z-index: 0;
  animation: pulseBurgerGlow 6s infinite ease-in-out alternate;
}

@keyframes pulseBurgerGlow {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.08); opacity: 0.85; }
}

.burger-img-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease;
}

.burger-img-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(225, 29, 72, 0.4);
}

.burger-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.burger-img-card:hover .burger-photo {
  transform: scale(1.04);
}

/* ==========================================================================
   7+ ACTIVE BRANCHES SHOWCASE (فروعنا العاملة حالياً)
   ========================================================================== */
.section-branches {
  padding: 80px 0;
  position: relative;
}

/* Mobile Branch Picker (Hidden by default on Desktop) */
.mobile-branch-picker-card {
  display: none;
}

/* City Filter Horizontal Pill Bar */
.city-filter-container {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.city-filter-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}

.city-filter-scroll::-webkit-scrollbar {
  display: none;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 4px 15px rgba(0, 0, 0, 0.3);
  -webkit-tap-highlight-color: transparent;
}

.city-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.city-pill:active {
  transform: scale(0.96);
}

.city-pill.active {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.9) 0%, rgba(190, 18, 60, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.city-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--amber-light);
}

.city-pill.active .city-count-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

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

/* Liquid Glass Branch Card */
.branch-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(18, 14, 24, 0.75);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 2px 0 rgba(0, 0, 0, 0.5), 0 14px 35px rgba(0, 0, 0, 0.55);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.branch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%), rgba(26, 20, 34, 0.85);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.branch-card.filtered-out {
  display: none !important;
}

.branch-card.filter-anim-in {
  animation: filterFadeIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.branch-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch-badge-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.32);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.15);
}

.branch-badge-prep {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.32);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.branch-city-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.branch-name {
  font-family: 'Alexandria', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}

.branch-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.branch-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  color: var(--amber-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.branch-phone-link:hover, .branch-phone-link:active {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--amber-light);
  color: #fff;
  transform: translateY(-1px);
}

.branch-phone-link.highlight-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.branch-phone-link.highlight-emerald:hover, .branch-phone-link.highlight-emerald:active {
  background: rgba(16, 185, 129, 0.25);
  border-color: #34d399;
  color: #fff;
}

.branch-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.branch-service-chip {
  font-size: 0.72rem;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-sub);
}

/* ==========================================================================
   WHAT'S COMING TO THE WEBSITE (مميزات الموقع الجديد)
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-pretitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--text-pure);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SNEAK PEEK / MENU TEASER
   ========================================================================== */
.section-teaser {
  padding: 60px 0 80px;
}

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

.teaser-card {
  background: linear-gradient(145deg, rgba(20, 17, 26, 0.8), rgba(10, 8, 14, 0.9));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.teaser-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.teaser-badge {
  align-self: flex-start;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.teaser-name {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.teaser-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.teaser-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.ingredient-chip {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-sub);
}

/* ==========================================================================
   LOCATIONS & CONTACT BANNER
   ========================================================================== */
.section-location {
  padding: 50px 0 70px;
}

.location-banner {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.12) 0%, rgba(18, 16, 24, 0.9) 50%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.loc-title {
  font-family: 'Alexandria', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.loc-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-quick-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.35);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--amber-light);
}

.contact-icon-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  padding: 40px 0 28px;
  border-top: 1px solid var(--glass-border);
  background: rgba(6, 6, 8, 0.85);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-link-admin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-sub);
}

.footer-link-admin:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-sub);
}

/* ==========================================================================
   MOBILE APP FLOATING DOCK (LIQUID GLASS BAR)
   ========================================================================== */
.mobile-app-dock {
  display: none;
}

@media (max-width: 900px) {
  .mobile-app-dock {
    display: block;
    position: fixed;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 14px;
    right: 14px;
    z-index: 9999;
    pointer-events: none;
  }

  .dock-container {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 10px;
    background: linear-gradient(135deg, rgba(28, 22, 38, 0.86) 0%, rgba(14, 10, 20, 0.94) 100%);
    backdrop-filter: blur(32px) saturate(220%);
    -webkit-backdrop-filter: blur(32px) saturate(220%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85),
                0 0 25px rgba(225, 29, 72, 0.2),
                inset 0 1px 1.5px rgba(255, 255, 255, 0.35),
                inset 0 -1px 2px rgba(0, 0, 0, 0.6);
    max-width: 480px;
    margin: 0 auto;
  }

  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-sub);
    padding: 6px 12px;
    border-radius: 18px;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .dock-item:active {
    transform: scale(0.92);
  }

  .dock-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    transition: transform 0.25s ease;
  }

  .dock-label {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.25s ease;
  }

  .dock-item.active {
    color: #fff;
  }

  .dock-item.active .dock-icon-wrap {
    color: #fb7185;
    transform: translateY(-2px);
  }

  .dock-item.active .dock-label {
    color: #fff;
  }

  .dock-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #10b981;
    color: #000;
    font-size: 0.58rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0 0 8px #10b981;
  }

  .dock-item-insta {
    color: #fb7185;
  }

  .dock-item-insta.active .dock-icon-wrap {
    color: #f43f5e;
  }

  .dock-item-call {
    color: #34d399;
  }

  .dock-item-call:hover, .dock-item-call:active {
    color: #10b981;
  }

  /* Extra bottom padding on mobile wrapper so floating dock never obstructs content */
  .page-wrapper {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (PRO MOBILE APP ADAPTATION)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-col {
    order: -1;
  }

  .burger-showcase-wrapper {
    max-width: 420px;
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Native App-Like Sticky Top Bar */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 8, 14, 0.85);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
    padding: 12px 0;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-tag {
    font-size: 0.65rem;
  }

  /* ==========================================================================
     MOBILE NATIVE APP TOP HEADER BAR (<= 768px)
     ========================================================================== */
  body {
    padding-bottom: 0;
  }

  .site-header {
    position: relative; /* Not stuck / not sticky to the page */
    top: auto;
    margin: 12px auto 18px; /* Space from top and bottom */
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 16px;
    background: rgba(14, 10, 20, 0.90);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    z-index: 1000;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 14px;
  }

  /* Compact Brand Lockup (Right Side in RTL) */
  .brand-group {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    min-width: 0;
  }

  .brand-logo-emblem {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(26, 20, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .brand-logo-img {
    height: 24px;
    width: auto;
  }

  .brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
  }

  .brand-sub-status {
    font-size: 0.67rem;
    font-weight: 700;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 4.5px;
    white-space: nowrap;
  }

  /* Completely eliminate the long desktop status pill on mobile to prevent overflow */
  .desktop-status-pill,
  .status-badge-open {
    display: none !important;
  }

  /* Hide desktop links and instagram pill on mobile header to keep it uncluttered */
  .desktop-only-link,
  .btn-nav-insta-pill {
    display: none !important;
  }

  /* Actions Area (Left Side in RTL) */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  /* Quick Call Emerald Capsule Button */
  .btn-nav-phone-mobile {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    height: 36px;
    padding: 0 12px;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.38);
    border-radius: 9999px;
    color: #34d399;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.15);
    transition: all 0.2s ease;
  }

  .btn-nav-phone-mobile:active {
    transform: scale(0.95);
    background: rgba(16, 185, 129, 0.28);
    color: #fff;
  }

  .btn-nav-phone-mobile svg {
    color: #10b981;
    flex-shrink: 0;
  }

  /* Animated Hamburger Menu Button */
  .btn-menu-trigger {
    display: flex !important;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    padding: 0;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }

  .btn-menu-trigger:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.16);
  }

  .hamburger-line {
    width: 17px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .btn-menu-trigger.active .line-top {
    transform: translateY(6.5px) rotate(45deg);
  }

  .btn-menu-trigger.active .line-mid {
    opacity: 0;
  }

  .btn-menu-trigger.active .line-bot {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* ==========================================================================
     HERO SECTION ON MOBILE
     ========================================================================== */
  .hero-section {
    padding: 18px 0 35px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.28;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .hero-action-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .btn-hero-call, .btn-hero-branches {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.92rem;
  }

  /* Countdown Widget Mobile */
  .countdown-box {
    padding: 16px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(18, 14, 24, 0.85);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .countdown-units-grid {
    gap: 6px;
  }

  .count-card {
    padding: 10px 4px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .count-val {
    font-size: 1.5rem;
    margin-bottom: 2px;
  }

  .count-label {
    font-size: 0.65rem;
  }

  /* Launch Notification Signup Mobile */
  .waitlist-card {
    gap: 10px;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 9px;
  }

  .waitlist-input {
    padding: 14px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(22, 18, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .btn-vip {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.94rem;
    border-radius: var(--radius-md);
  }

  .notify-perks {
    flex-direction: column;
    gap: 7px;
  }

  /* 3D Burger Showcase on Mobile */
  .burger-showcase-wrapper {
    max-width: 280px;
    margin: 15px auto 0;
  }

  /* Branches Section Mobile */
  .section-branches {
    padding: 40px 0;
  }

  /* Mobile Interactive Branch Selector Card */
  .mobile-branch-picker-card {
    display: block;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(20, 16, 28, 0.90);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }

  .picker-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
  }

  .picker-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 1px solid rgba(225, 29, 72, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .picker-text-wrap {
    display: flex;
    flex-direction: column;
  }

  .picker-title {
    font-family: 'Alexandria', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: #fff;
    line-height: 1.2;
  }

  .picker-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-sub);
    margin-top: 2px;
  }

  .picker-select-wrapper {
    position: relative;
    width: 100%;
  }

  .mobile-branch-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 14px 16px 14px 44px;
    background: rgba(10, 8, 16, 0.88);
    border: 1.5px solid rgba(225, 29, 72, 0.45);
    border-radius: 14px;
    color: #fff;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
  }

  .mobile-branch-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
    background: rgba(18, 14, 26, 0.95);
  }

  .mobile-branch-select option {
    background: #14101c;
    color: #fff;
    padding: 10px;
    font-size: 0.9rem;
  }

  .select-chevron {
    position: absolute;
    left: 14px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide the horizontal city filter bar on mobile */
  .city-filter-container {
    display: none !important;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hide all branch cards on mobile by default */
  .branch-card {
    display: none !important;
    padding: 22px 18px;
    border-radius: 20px;
    margin-bottom: 0;
  }

  /* Only display the currently selected branch card with smooth animation */
  .branch-card.mobile-active-branch {
    display: block !important;
    animation: fadeInScale 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: translateY(8px) scale(0.98);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .branch-phone-link {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
  }

  /* Teasers & Locations Mobile */
  .section-teaser, .section-location {
    padding: 40px 0;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .teaser-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .location-banner {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==========================================================================
   MOBILE BOTTOM DOCK (DISABLED PER REQUEST: NOT STUCK TO SCREEN)
   ========================================================================== */
.mobile-app-dock {
  display: none !important;
}

.dock-container {
  pointer-events: auto;
  max-width: 440px;
  margin: 0 auto;
  background: rgba(16, 12, 24, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px 8px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-sub);
  font-size: 0.67rem;
  font-weight: 700;
  transition: all 0.2s ease;
  position: relative;
  flex: 1;
}

.dock-item:active {
  transform: scale(0.92);
}

.dock-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
}

.dock-item svg {
  transition: transform 0.2s ease, stroke 0.2s ease;
}

.dock-item.active {
  color: #fff;
}

.dock-item.active .dock-icon-wrap svg {
  stroke: var(--primary);
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(225, 29, 72, 0.6));
}

.dock-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #10b981;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 6px;
  line-height: 1;
}

.dock-item-call {
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399 !important;
  border-radius: 14px;
}

.dock-item-call svg {
  stroke: #34d399 !important;
}

.dock-item-call:active {
  background: rgba(16, 185, 129, 0.3);
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.62rem;
  }

  .count-val {
    font-size: 1.35rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .btn-nav-phone-mobile {
    padding: 0 10px;
    font-size: 0.74rem;
  }
}
