/* ============================================================
   Shawarma2Go1 — styles.css
============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F5F2;
  --carbon: #1A1A1A;
  --gold: #C9A227;
  --gold-bright: #FFD700;
  --red: #C0272D;
  --red-dark: #94151A;
  --text-secondary: #6B6B6B;
  --font-title: 'Cairo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  background: var(--bg); color: var(--carbon); font-family: var(--font-body);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.section-title {
  font-family: var(--font-title); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  text-align: center; position: relative; padding-bottom: 1rem; margin-bottom: 1rem; color: var(--carbon);
}
.section-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--red)); border-radius: 4px;
}
.section-sub { text-align: center; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; }

.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.9rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  position: relative; overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap; min-height: 48px;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), #a5811c); color: #fff; box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn:hover { transform: translateY(-3px); }
.btn-gold:hover { box-shadow: 0 12px 30px rgba(201,162,39,0.5); }
.btn::before {
  content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

/* ============================================================
   Top bar
============================================================ */
.top-bar {
  background: var(--carbon); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.45rem 0; white-space: nowrap; overflow-x: auto; scrollbar-width: none; text-align: center;
}
.top-bar::-webkit-scrollbar { display: none; }
.top-bar .container { display: inline-block; padding: 0 1.25rem; }

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: sticky; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--carbon); border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--red)) 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; padding: 0.5rem 1.25rem; max-width: 1350px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-title); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.3px;
  color: #fff; white-space: nowrap;
}
@media (max-width: 600px) {
  .nav-logo-text { display: none; }
  .btn-phone-nav { padding: 0; width: 40px; height: 40px; justify-content: center; border-radius: 50%; }
  .btn-phone-nav .phone-text { display: none; }
  .nav-actions { gap: 0.35rem; }
  .lang-pill { padding: 0.42rem 0.5rem; font-size: 0.68rem; min-height: 36px; }
  .nav-inner { padding: 0.5rem 0.85rem; }
}

.nav-menu { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-link { font-weight: 600; font-size: 0.9rem; position: relative; padding: 0.3rem 0; color: #fff; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.55rem; }

.btn-phone-nav {
  display: flex; align-items: center; gap: 0.35rem; background: linear-gradient(135deg, var(--gold), var(--red)); color: #fff; font-weight: 700;
  padding: 0.6rem 1rem; border-radius: 999px; font-size: 0.82rem; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(201,162,39,0.35); min-height: 44px;
}

.lang-toggle { display: flex; border: 1.5px solid var(--gold); border-radius: 999px; overflow: hidden; }
.lang-pill { padding: 0.5rem 0.75rem; font-size: 0.76rem; font-weight: 700; color: #fff; min-height: 40px; transition: background 0.25s ease, color 0.25s ease; }
.lang-pill.active { background: linear-gradient(135deg, var(--gold), var(--red)); color: #fff; }

.cart-icon-btn { position: relative; font-size: 1.3rem; padding: 0.3rem 0.35rem; color: #fff; min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
.cart-count {
  position: absolute; top: -2px; right: -2px; background: var(--red); color: #fff; font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-icon-btn.bounce { animation: cartBounce 0.5s ease; }
@keyframes cartBounce { 0%,100% { transform: scale(1); } 30% { transform: scale(1.35); } 60% { transform: scale(0.9); } }

.hamburger { display: none; flex-direction: column; padding: 0.4rem; position: relative; z-index: 1051; min-height: 44px; min-width: 44px; justify-content: center; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition: transform 0.3s ease, opacity 0.3s ease; margin: 5px 0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-7px); }

@media (max-width: 480px) { .nav-logo img { height: 36px; } }

/* ============================================================
   Hero
============================================================ */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 4rem 1rem 4rem; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('img/hero.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(26,26,26,0.45) 55%, rgba(26,26,26,0.2) 100%);
}

.hero-fire {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 240px; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(255,106,0,0.7) 0%, rgba(255,60,0,0.38) 35%, rgba(255,190,80,0.16) 62%, transparent 100%);
  filter: blur(16px);
  animation: fireFlicker 2.2s ease-in-out infinite alternate;
}
@keyframes fireFlicker {
  0%   { opacity: 0.7; transform: scaleY(1) translateY(0); }
  50%  { opacity: 0.95; transform: scaleY(1.1) translateY(-8px); }
  100% { opacity: 0.8; transform: scaleY(0.95) translateY(3px); }
}

.hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-embers span {
  position: absolute; bottom: 40px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #FFE29A 0%, #FFD700 35%, #FF6A00 75%, transparent 100%);
  opacity: 0; animation: emberRise 4.2s ease-in infinite;
}
.hero-embers span:nth-child(1) { left: 8%;  animation-delay: 0s;   }
.hero-embers span:nth-child(2) { left: 18%; animation-delay: 0.6s; }
.hero-embers span:nth-child(3) { left: 30%; animation-delay: 1.3s; }
.hero-embers span:nth-child(4) { left: 45%; animation-delay: 0.2s; }
.hero-embers span:nth-child(5) { left: 58%; animation-delay: 1.9s; }
.hero-embers span:nth-child(6) { left: 70%; animation-delay: 1s; }
.hero-embers span:nth-child(7) { left: 82%; animation-delay: 1.6s; }
.hero-embers span:nth-child(8) { left: 92%; animation-delay: 2.3s; }
@keyframes emberRise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-460px) translateX(22px) scale(0.3); }
}
@media (max-width: 768px) { .hero-fire { height: 160px; } .hero-embers span { width: 4px; height: 4px; } }

.hero-shimmer {
  position: absolute; top: 0; left: -30%; width: 30%; height: 100%; z-index: 2; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14), transparent);
  animation: shimmerSweep 7s ease-in-out infinite;
}
@keyframes shimmerSweep { 0% { left: -30%; } 40% { left: 130%; } 100% { left: 130%; } }

.hero-content { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; }

.hero-logo {
  width: 260px; max-width: 260px; height: auto; margin: 0 auto 1.2rem; display: block;
  animation: heartbeat 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.55));
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  20% { transform: scale(1.08); }
  40% { transform: scale(1); }
  60% { transform: scale(1.06); }
  80% { transform: scale(1); }
}
@media (max-width: 768px) { .hero-logo { width: 170px; max-width: 170px; } }

.hero-title {
  font-family: var(--font-title); font-weight: 800; font-size: clamp(2.2rem, 7vw, 4rem); line-height: 1.1; color: #fff;
  -webkit-text-stroke: 1.5px #000; text-stroke: 1.5px #000; paint-order: stroke fill;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 0 6px 24px rgba(0,0,0,0.6);
}
.hero-sub { font-family: var(--font-title); font-weight: 600; font-size: clamp(1.05rem, 2.5vw, 1.35rem); margin: 1rem 0 1.6rem; color: #F0F0F0; text-shadow: 0 2px 10px rgba(0,0,0,0.4); letter-spacing: 0.5px; }

.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.3rem, 4vw, 1.8rem); color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--red));
  padding: 0.7rem 1.6rem; border-radius: 12px; margin: 0 0 1.6rem; box-shadow: 0 10px 28px rgba(201,162,39,0.4);
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1.2rem; }
.trust-row .trust-item {
  font-size: 0.82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 0.5rem 1rem; border-radius: 999px;
}

/* ============================================================
   Bestsellers — infinite auto-scroll strip
============================================================ */
.bestsellers-section { padding: 3.5rem 0 3rem; background: var(--carbon); overflow: hidden; }
.bestsellers-section .section-title { color: #fff; }
.bestsellers-eyebrow { display: block; text-align: center; color: var(--gold-bright); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; margin-bottom: 0.6rem; }
.bestsellers-track-wrap { overflow: hidden; margin-top: 2rem; }
.bestsellers-track { display: flex; gap: 1.2rem; width: max-content; animation: bsScroll 28s linear infinite; }
.bestsellers-track-wrap:hover .bestsellers-track { animation-play-state: paused; }
@keyframes bsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bs-card { flex: 0 0 200px; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.bs-img-wrap { position: relative; }
.bs-card img { width: 100%; height: 150px; object-fit: cover; }
.bs-info { padding: 0.8rem 1rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.bs-info h4 { font-size: 0.85rem; font-weight: 600; color: var(--carbon); }
.bs-info span { font-family: var(--font-title); font-weight: 700; color: var(--red); font-size: 1rem; white-space: nowrap; }

/* ============================================================
   Menu — 2 columns mobile, 4 columns desktop (fixed rule)
============================================================ */
.menu-section { padding: 5rem 0 4rem; background: var(--bg); }
.menu-note { text-align: center; color: var(--text-secondary); font-size: 0.85rem; font-style: italic; margin: -1.5rem 0 2rem; }
.category-tabs { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 1rem; margin-bottom: 2.5rem; scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.tab-pill {
  flex: 0 0 auto; padding: 0.55rem 1.2rem; border: 1.5px solid var(--gold); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--carbon); background: transparent;
  transition: background 0.25s ease, color 0.25s ease; white-space: nowrap; min-height: 44px; display: flex; align-items: center;
}
.tab-pill.active, .tab-pill:hover { background: linear-gradient(135deg, var(--gold), var(--red)); color: #fff; border-color: transparent; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }

.menu-card {
  background: var(--bg-alt); border-radius: var(--radius); overflow: hidden; border: 2px solid var(--bg-alt);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05); position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 18px 36px rgba(201,162,39,0.18); }
.menu-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #eee; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.img-ref-badge {
  position: absolute; bottom: 6px; right: 6px; z-index: 2; pointer-events: none;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 0.55rem; font-weight: 600;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.2px; white-space: nowrap;
}

.menu-card-body { padding: 0.85rem 0.9rem 1rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.menu-card-body h3 { font-family: var(--font-title); font-weight: 600; font-size: 0.92rem; color: var(--carbon); line-height: 1.3; }
.variant-label { font-size: 0.68rem; font-weight: 700; color: var(--red); display: flex; flex-direction: column; gap: 0.25rem; }
.variant-select {
  border: 1px solid var(--gold); border-radius: 8px; padding: 0.4rem 0.4rem; font-size: 0.7rem;
  font-family: inherit; color: var(--carbon); background: #fff; min-height: 38px;
}
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.4rem; padding-top: 0.3rem; flex-wrap: wrap; }
.card-price { font-family: var(--font-title); font-weight: 700; font-size: 1.05rem; color: var(--red); }

.btn-add {
  background: linear-gradient(135deg, var(--gold), var(--red)); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 0.55rem 0.7rem; border-radius: 10px;
  white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease; min-height: 40px;
}
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(201,162,39,0.4); }

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

/* ============================================================
   Cart Panel
============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1998; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw; height: 100vh;
  background: #fff; border-left: 3px solid var(--gold); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  z-index: 1999; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s ease;
}
.cart-panel.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.3rem; border-bottom: 1px solid #eee; }
.cart-header h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; color: var(--carbon); }
.cart-close { font-size: 1.5rem; color: var(--carbon); min-height: 44px; min-width: 44px; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart-empty { color: #999; text-align: center; margin-top: 2rem; }
.cart-item { display: grid; grid-template-columns: 55px 1fr auto; gap: 0.8rem; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; }
.cart-item img { width: 55px; height: 55px; object-fit: cover; border-radius: 10px; }
.cart-item-info h5 { font-size: 0.85rem; margin-bottom: 0.2rem; color: var(--carbon); }
.cart-item-info span { color: var(--red); font-weight: 700; font-size: 0.85rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--gold); color: var(--carbon); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.cart-footer { padding: 1.2rem 1.3rem 1.5rem; border-top: 1px solid #eee; }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-title); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem; color: var(--carbon); }
.cart-total-row span:last-child { color: var(--red); }
.btn-cart-confirm { width: 100%; background: linear-gradient(135deg, var(--gold), var(--red)); color: #fff; padding: 1rem; border-radius: 10px; font-weight: 700; min-height: 50px; }
@media (max-width: 480px) { .cart-panel { width: 100vw; } }

/* ============================================================
   Catering
============================================================ */
.catering-section { position: relative; padding: 5rem 0; overflow: hidden; }
.catering-bg { position: absolute; inset: 0; z-index: 0; background: url('img/catering.png') center/cover no-repeat; }
.catering-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(26,26,26,0.93) 0%, rgba(26,26,26,0.8) 55%, rgba(148,21,26,0.65) 100%); }
.catering-section .container { position: relative; z-index: 2; }
.catering-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .catering-grid { grid-template-columns: 1fr 1.1fr; } }
.catering-text-col h2 { text-align: left; color: #fff; }
.catering-text-col h2::after { left: 0; transform: none; }
.catering-text-col p { color: #E8E2D5; line-height: 1.7; margin-top: 1rem; font-size: 1rem; }

.catering-form {
  background: #fff; border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.form-grid label { display: block; font-size: 0.8rem; margin-bottom: 0.4rem; color: var(--text-secondary); font-weight: 600; }
.form-grid input, .form-grid textarea {
  width: 100%; background: var(--bg-alt); border: 1px solid #E6E0D5; border-radius: 10px;
  padding: 0.85rem 0.9rem; color: var(--carbon); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s ease; min-height: 48px;
}
.form-grid input:focus, .form-grid textarea:focus { outline: none; border-color: var(--gold); }
.form-grid textarea { resize: vertical; min-height: 110px; }
.form-submit-wrap { margin-top: 1.6rem; }
.form-submit-wrap .btn { width: 100%; }

/* ============================================================
   Why choose us
============================================================ */
.why-section { padding: 5rem 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--bg-alt); border: 1px solid rgba(26,26,26,0.06); border-radius: var(--radius);
  padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(201,162,39,0.14); }
.why-card p { font-size: 0.92rem; font-weight: 600; color: var(--carbon); }

/* ============================================================
   About
============================================================ */
.about-section { padding: 5rem 0; background: var(--bg-alt); text-align: center; }
.about-section p { max-width: 750px; margin: 0 auto; color: var(--text-secondary); line-height: 1.7; font-size: 1rem; }

/* ============================================================
   Videos (reels + wide)
============================================================ */
.videos-section { padding: 5rem 0; background: var(--bg-alt); }
.reels-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 780px; margin: 2.5rem auto 0; }
@media (min-width: 900px) { .reels-grid { grid-template-columns: repeat(4, 1fr); max-width: 900px; } }

.video-frame {
  position: relative; overflow: hidden; border-radius: 16px; background: #000;
  border: 3px solid var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame.reel { aspect-ratio: 9 / 16; max-width: 200px; margin: 0 auto; width: 100%; }
.video-frame.wide { aspect-ratio: 16 / 9; max-width: 460px; margin: 0 auto; }
.wide-video-wrap { margin-top: 2rem; }

.video-mute-btn {
  position: absolute; bottom: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  z-index: 2; border: 1px solid rgba(255,255,255,0.3); transition: background 0.2s ease;
}
.video-mute-btn:hover { background: rgba(0,0,0,0.8); }

/* ============================================================
   Reviews
============================================================ */
.reviews { padding: 5rem 0; background: var(--bg); }
.reviews-google { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.reviews-google .stars { color: var(--gold-bright); letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: var(--bg-alt); border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius); padding: 1.4rem; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.review-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.9rem; }
.review-head img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-head h5 { font-size: 0.9rem; color: var(--carbon); }
.review-head .stars { color: var(--gold-bright); font-size: 0.75rem; }
.review-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   Contact
============================================================ */
.contact-section { padding: 5rem 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info .row { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; color: var(--carbon); font-size: 1.05rem; }
.contact-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--carbon); padding: 3rem 0 1.5rem; color: #fff; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--red)); }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; margin-bottom: 2rem; }
.footer-top img { height: 60px; width: auto; }
.footer-top .tag { color: #ccc; font-weight: 600; font-size: 0.9rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin: 1.2rem 0 1.6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; cursor: default; }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-links-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; font-size: 0.85rem; margin-bottom: 1.6rem; font-weight: 600; }
.footer-links-row a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #999; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.4rem; }
.footer-bottom p { margin-bottom: 0.3rem; }

/* ============================================================
   Floating WhatsApp
============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1500;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5); animation: waPulse 2.2s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   Responsive nav
============================================================ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: 80%; max-width: 320px; z-index: 1050;
    background: #fff; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 2rem; padding: 2rem; transform: translateX(100%); transition: transform 0.4s ease;
    border-left: 2px solid var(--gold); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-link { color: var(--carbon); }
  .nav-link { font-size: 1.25rem; }
}