/* ============================================================
   It's Called Perú — styles.css
============================================================ */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;
  --red: #D91023;
  --red-dark: #A50D1A;
  --black: #111111;
  --text-secondary: #4A4A4A;
  --gold: #FFD700;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--black);
  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(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  color: var(--black);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  border-radius: 4px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217, 16, 35, 0.08);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.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;
}
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 8px 24px rgba(217,16,35,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--black); color: var(--black); }
.btn:hover { transform: translateY(-3px); }
.btn-red:hover { box-shadow: 0 12px 30px rgba(217,16,35,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.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

/* ============================================================
   Top banner
============================================================ */
.top-banner {
  background: var(--black);
  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-banner::-webkit-scrollbar { display: none; }
.top-banner .container { display: inline-block; padding: 0 1.25rem; }

/* ============================================================
   Navbar
============================================================ */
.navbar {
  position: sticky; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; }
.nav-logo span { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.3px; display: none; color: var(--black); }

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

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

.btn-phone-nav {
  display: flex; align-items: center; gap: 0.35rem;
  background: var(--red); color: #fff; font-weight: 700;
  padding: 0.55rem 0.9rem; border-radius: 999px; font-size: 0.85rem;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(217,16,35,0.35);
}
.btn-phone-nav .phone-full { display: inline; }
.btn-phone-nav .phone-short { display: none; }

.lang-toggle { display: flex; background: var(--bg-alt); border: 1px solid var(--red); border-radius: 999px; overflow: hidden; }
.lang-pill { padding: 0.4rem 0.7rem; font-size: 0.8rem; font-weight: 700; color: var(--black); transition: background 0.25s ease, color 0.25s ease; }
.lang-pill.active { background: var(--red); color: #fff; }

.btn-order-nav {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-weight: 700; padding: 0.55rem 1.1rem;
  border-radius: 999px; font-size: 0.85rem; white-space: nowrap;
}

.cart-icon-btn { position: relative; font-size: 1.35rem; padding: 0.2rem 0.3rem; color: var(--black); }
.cart-count {
  position: absolute; top: -4px; right: -6px; 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; }
.hamburger span { display:block; width:24px; height:2px; background:#111111; 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); }

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1rem 4rem;
  background: linear-gradient(180deg, #fff 0%, #FFF5F5 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('img/hero.png') center/cover no-repeat;
  opacity: 0;
  z-index: 0;
}
.hero-bg.has-image { opacity: 1; }

.hero-rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 220vmax; height: 220vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(
    from 0deg,
    rgba(217,16,35,0.10) 0deg 9deg,
    transparent 9deg 18deg
  );
  animation: raysRotate 140s linear infinite;
  z-index: 0;
}
@keyframes raysRotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  z-index: 1;
}

.hero-mountains {
  position: absolute;
  bottom: -2px; left: 0; width: 100%;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.hero-mountains svg { width: 100%; height: auto; display: block; }

#particleContainer { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF3C0 0%, var(--gold) 60%, transparent 100%);
  opacity: 0;
  animation-name: particleFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  box-shadow: 0 0 6px rgba(255,215,0,0.6);
}
@keyframes particleFloat {
  0% { opacity: 0; bottom: -10px; transform: translateX(0); }
  15% { opacity: 0.9; }
  80% { opacity: 0.7; }
  100% { opacity: 0; bottom: 100%; transform: translateX(var(--drift)); }
}

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

.hero-logo { animation: heartbeat 2s ease-in-out infinite !important; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.15)); }
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.08); }
  70% { transform: scale(1); }
}
@media(max-width:768px){ .hero-logo{ width:110px!important;max-width:110px!important;height:110px!important; } }

.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.05;
  color: var(--black);
}
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 500; margin: 1rem 0 1.6rem; color: var(--text-secondary); }

.hero-phones { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.7rem; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-title); font-weight: 700;
  font-size: clamp(1.1rem, 3.4vw, 1.6rem);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 0.7rem 1.4rem; border-radius: 12px;
  box-shadow: 0 10px 28px rgba(217,16,35,0.35);
}

.hero-zelle {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 1.6rem;
}
.hero-bg.has-image ~ .hero-content .hero-zelle {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}

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

.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.hero-stats .stat {
  font-size: 0.85rem; font-weight: 600; color: var(--black);
  background: rgba(217,16,35,0.06);
  border: 1px solid rgba(217,16,35,0.2);
  padding: 0.5rem 1rem; border-radius: 999px;
}

/* ---------- Legibility over the real hero photo ---------- */
.hero-bg.has-image ~ .hero-content .hero-logo {
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.95)) drop-shadow(0 0 32px rgba(255,255,255,0.6));
}
.hero-bg.has-image ~ .hero-content .badge {
  background: rgba(255,255,255,0.95);
  border-color: #fff;
  box-shadow: 0 4px 22px rgba(255,255,255,0.6);
}
.hero-bg.has-image ~ .hero-content .hero-title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 36px rgba(255,255,255,0.5);
}
.hero-bg.has-image ~ .hero-content .hero-sub {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 20px rgba(255,255,255,0.35);
  font-weight: 600;
}
.hero-bg.has-image ~ .hero-content .hero-phone {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.85), 0 10px 28px rgba(0,0,0,0.35);
}
.hero-bg.has-image ~ .hero-content .btn-red {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.85), 0 8px 24px rgba(0,0,0,0.3);
}
.hero-bg.has-image ~ .hero-content .btn-outline {
  border-color: #fff;
  color: #fff;
  background: rgba(0,0,0,0.3);
}
.hero-bg.has-image ~ .hero-content .hero-stats .stat {
  background: rgba(255,255,255,0.95);
  border-color: #fff;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ============================================================
   Bestsellers slider
============================================================ */
.bestsellers { background: var(--bg); padding: 3.5rem 0 3rem; }
.bs-header { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto 1.5rem; padding: 0 1.25rem; }
.bs-header h2 { font-family: var(--font-title); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--black); }
.bs-arrows { display: flex; gap: 0.6rem; }
.bs-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--red); color: var(--black);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.bs-arrow:hover { background: var(--red); color: #fff; }

.bs-track-wrap { overflow: hidden; padding: 0 1.25rem; }
.bs-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: 0.5rem; max-width: 1200px; margin: 0 auto;
}
.bs-track::-webkit-scrollbar { display: none; }
.bs-card {
  flex: 0 0 78%; scroll-snap-align: start;
  background: var(--bg-alt); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.bs-card:hover { transform: translateY(-6px); border-color: var(--red); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.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; }
.bs-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--black); }
.bs-info span { font-family: var(--font-title); font-weight: 700; color: var(--red); font-size: 1.1rem; }
@media (min-width: 640px) { .bs-card { flex: 0 0 45%; } }
@media (min-width: 992px) { .bs-card { flex: 0 0 23%; } }

/* ============================================================
   Info bar
============================================================ */
.info-bar { background: var(--black); padding: 1rem 0; }
.info-bar .container { display: flex; flex-wrap: wrap; gap: 0.8rem 1.8rem; justify-content: center; font-size: 0.82rem; font-weight: 600; text-align: center; color: #fff; }
.info-bar a { transition: color 0.2s ease; }
.info-bar a:hover { color: var(--gold); }

/* ============================================================
   Menu
============================================================ */
.menu-section { padding: 5rem 0 4rem; }
.price-note { text-align: center; color: var(--text-secondary); font-size: 0.8rem; margin: -1.5rem 0 2.5rem; font-style: italic; }

.category-tabs { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 1rem; margin-bottom: 2rem; scrollbar-width: none; justify-content: center; flex-wrap: wrap; }
.category-tabs::-webkit-scrollbar { display: none; }
.tab-pill {
  flex: 0 0 auto; padding: 0.55rem 1.2rem; border: 1.5px solid var(--red); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--black); background: transparent;
  transition: background 0.25s ease, color 0.25s ease; white-space: nowrap;
}
.tab-pill.active, .tab-pill:hover { background: var(--red); color: #fff; }

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

.menu-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 2px solid var(--bg-alt);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  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(--red); box-shadow: 0 16px 34px rgba(217,16,35,0.15); }
.menu-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); }
.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.08); }

.menu-card-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.menu-card-body h3 { font-family: var(--font-title); font-weight: 700; font-size: 1rem; color: var(--black); }
.card-desc {
  font-size: 0.75rem; color: var(--text-secondary); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ref-img { font-size: 0.65rem; color: #999; font-style: italic; }
.card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 0.6rem; flex-wrap: wrap; }
.card-price { font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; color: var(--red); }

.btn-add {
  background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 0.5rem 0.7rem; border-radius: 8px;
  white-space: nowrap; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-add:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(217,16,35,0.35); }

/* ============================================================
   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: 400px; max-width: 100vw; height: 100vh;
  background: #fff; border-left: 3px solid var(--red); 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(--black); }
.cart-close { font-size: 1.4rem; color: var(--black); }
.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(--black); }
.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: 26px; height: 26px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--red); color: var(--black); font-size: 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(--black); }
.cart-total-row span:last-child { color: var(--red); }
.btn-cart-confirm { width: 100%; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; padding: 0.9rem; border-radius: 10px; font-weight: 700; }
@media (max-width: 480px) { .cart-panel { width: 100vw; } }

/* ============================================================
   Catering
============================================================ */
.catering { position: relative; padding: 6rem 0; text-align: center; overflow: hidden; color: #fff; }
.catering-bg { position: absolute; inset: 0; background: url('img/catering.png') center/cover no-repeat; background-color: #111; z-index: 0; }
.catering-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)); z-index: 1; }
.catering-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.badge-light { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.catering-sub { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin: 0.5rem 0 1.8rem; }
.catering-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 1.5rem; margin-bottom: 2rem; text-align: left; }
.catering-list li { font-size: 0.95rem; font-weight: 500; }
@media (max-width: 560px) { .catering-list { grid-template-columns: 1fr; } }

.catering-form-section { padding: 5rem 0; background: var(--bg-alt); }
.section-sub { text-align: center; color: var(--text-secondary); margin: -1.5rem auto 2.5rem; max-width: 600px; font-size: 1rem; }
.catering-form { max-width: 800px; margin: 0 auto; background: #fff; border: 1px solid rgba(217,16,35,0.15); border-radius: var(--radius); padding: 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-bottom: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full-width { grid-column: 1 / -1; margin-bottom: 1.3rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--black); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid #ddd; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--black); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.catering-form .btn { width: 100%; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About
============================================================ */
.about { position: relative; padding: 5rem 0; background: var(--bg-alt); text-align: center; overflow: hidden; }
.about-deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 22rem; opacity: 0.04; z-index: 0; pointer-events: none; }
.about .container { position: relative; z-index: 1; }
.about h2 { color: var(--black); }
.about-text { max-width: 700px; margin: 0 auto 2rem; color: var(--text-secondary); line-height: 1.7; }
.about-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.about-icons span {
  background: #fff; border: 1px solid rgba(217,16,35,0.2); color: var(--black);
  font-weight: 600; font-size: 0.9rem; padding: 0.6rem 1.2rem; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* ============================================================
   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 svg { width: 24px; height: 24px; }
.reviews-google .stars { color: var(--gold); 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(3, 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(--red); box-shadow: 0 14px 30px rgba(0,0,0,0.06); }
.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(--black); }
.review-head .stars { color: var(--gold); font-size: 0.75rem; }
.review-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   Contact
============================================================ */
.contact { 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(--black); }
.contact-info h4 { font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--black); }
.contact-info .sub { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }
.social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.social-row a:hover { background: var(--red); }
.social-row a svg { width: 18px; height: 18px; fill: var(--black); transition: fill 0.25s ease; }
.social-row a:hover svg { fill: #fff; }

/* ============================================================
   Footer
============================================================ */
.footer { background: var(--black); border-top: 3px solid var(--red); padding: 3rem 0 1.5rem; color: #fff; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; margin-bottom: 2rem; }
.footer-top img { height: 55px; }
.footer-top h3 { font-family: var(--font-title); font-weight: 700; font-size: 1.5rem; }
.footer-top .tag { color: var(--red); font-weight: 700; font-size: 0.85rem; }
.footer-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-bottom: 1.8rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #999; border-top: 1px solid rgba(255,255,255,0.1); 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: 78%; max-width: 320px;
    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(--red); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; }
  .btn-phone-nav .phone-full { display: none; }
  .btn-phone-nav .phone-short { display: inline; }
  .nav-order-text { display: none; }
}
@media (min-width: 901px) { .nav-logo span { display: inline; } }
@media (max-width: 480px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
