﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: #1a0500; color: #fff; overflow-x: hidden; }

/* ===== VARIABLES ===== */
:root {
  --bg: #1a0500;
  --bg-alt: #2a0a00;
  --red: #C0392B;
  --gold: #E8A020;
  --green: #2E7D32;
  --pink: #E91E8C;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-gold, .btn-green-solid, .btn-red-solid {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-gold { background: var(--gold); color: #1a0500; }
.btn-gold:hover { background: #f5b030; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.45); }
.btn-green-solid { background: var(--green); color: var(--white); }
.btn-green-solid:hover { background: #1b5e20; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }
.btn-red-solid { background: var(--red); color: var(--white); }
.btn-red-solid:hover { background: #96281b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.4); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); margin-bottom: 0.6rem; }
.section-subtitle { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 680px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.65rem 0;
  background: rgba(26,5,0,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,160,32,0.18);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo img { height: 50px; object-fit: contain; }
.nav-menu { display: flex; list-style: none; gap: 0.2rem; align-items: center; }
.nav-link {
  padding: 0.45rem 0.85rem; color: rgba(255,255,255,0.82);
  font-size: 0.88rem; font-weight: 500; border-radius: 8px; transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(232,160,32,0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-nav-order {
  background: var(--red); color: var(--white);
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap; font-family: 'Poppins', sans-serif;
}
.btn-nav-order:hover { background: #96281b; }
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white); width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--gold); background: rgba(232,160,32,0.12); }
.cart-btn.bounce { animation: cartBounce 0.4s ease; }
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  30% { transform: scale(1.3) rotate(-10deg); }
  60% { transform: scale(0.9) rotate(5deg); }
}
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: var(--white);
  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; border: 2px solid var(--bg);
}
.cart-count.hidden { display: none; }
.lang-toggle {
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
  padding: 0.38rem 0.8rem; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { background: var(--gold); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: url('img/hero_final.png') center center / cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-content { position: relative; z-index: 1; padding: 6rem 1.5rem 3rem; max-width: 820px; margin: 0 auto; }

/* Heartbeat animation */
@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); }
}
.hero-logo { animation: heartbeat 1.8s ease-in-out infinite !important; }
@media(max-width:768px) {
  .hero-logo { width:100px!important; max-width:100px!important; height:100px!important; }
}

.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.15); border: 1px solid var(--gold);
  color: var(--gold); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem;
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,160,32,0.35); }
  50% { box-shadow: 0 0 0 10px rgba(232,160,32,0); }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--gold); line-height: 1.1; margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-weight: 300; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; }
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat.animated { opacity: 1; transform: translateY(0); }
.stat span:first-child { font-size: 1.5rem; }

/* ===== INFO BAR ===== */
.info-bar {
  background: #7a0000; padding: 0.85rem 0;
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
}
.info-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,255,255,0.92); white-space: nowrap; }
.info-item a { color: var(--gold); font-weight: 700; }
.info-item a:hover { text-decoration: underline; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 5rem 0; background: var(--bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .menu-grid { grid-template-columns: 1fr; } }

/* ===== MENU CARDS ===== */
.menu-card {
  background: var(--bg-alt); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(232,160,32,0.25); transition: var(--transition);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(232,160,32,0.18); border-color: rgba(232,160,32,0.55); }
.menu-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover img { transform: scale(1.05); }
.card-info { padding: 0.85rem 1rem 0.3rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.card-info h3 { font-size: 1rem; color: var(--white); flex: 1; line-height: 1.3; }
.price { color: var(--gold); font-weight: 700; font-size: 0.95rem; white-space: nowrap; flex-shrink: 0; }
.card-desc { padding: 0 1rem 0.6rem; font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.card-actions { padding: 0 1rem 1rem; }
.btn-add-cart {
  width: 100%; background: var(--gold); color: #1a0500; border: none;
  padding: 0.55rem 1rem; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-add-cart:hover { background: #f5b030; transform: translateY(-1px); }
.btn-add-cart:active { transform: scale(0.97); }

/* ===== MENU LIST ===== */
.menu-list { list-style: none; border: 1px solid rgba(232,160,32,0.12); border-radius: 12px; overflow: hidden; }
.menu-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: rgba(255,255,255,0.85); gap: 1rem; transition: background 0.2s;
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li:hover { background: rgba(232,160,32,0.05); }
.list-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.btn-add-list {
  background: var(--gold); color: #1a0500; border: none;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 1.1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); line-height: 1;
}
.btn-add-list:hover { background: #f5b030; transform: scale(1.1); }
.btn-add-list:active { transform: scale(0.95); }

/* ===== CATERING ===== */
.catering-banner {
  position: relative; padding: 6rem 0; text-align: center;
  background: url('img/catering.png') center center / cover no-repeat;
}
.catering-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.catering-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; padding: 0 1.5rem; }
.catering-badge {
  display: inline-block;
  background: rgba(232,160,32,0.15); border: 1px solid var(--gold);
  color: var(--gold); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem;
}
.catering-content h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--gold); margin-bottom: 0.75rem; }
.catering-content p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }
.catering-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; margin-bottom: 2.5rem; max-width: 500px;
  margin-left: auto; margin-right: auto; text-align: left;
}
.catering-list li { color: rgba(255,255,255,0.9); font-size: 0.92rem; display: flex; align-items: center; gap: 0.5rem; }
.catering-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.catering-form-section { background: var(--bg-alt); padding: 5rem 0; }
.catering-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  max-width: 700px; margin: 0 auto;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: rgba(232,160,32,0.06);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-alt); color: var(--white); }
.form-group textarea { resize: vertical; }
.form-submit { grid-column: 1 / -1; width: 100%; font-size: 1rem; padding: 1rem; border-radius: 12px; margin-top: 0.5rem; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 5rem 0; background: var(--bg); }
.google-logo { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.rating { display: flex; align-items: center; gap: 0.75rem; }
.rating-score { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); font-weight: 700; }
.stars { font-size: 1.3rem; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.review-card {
  background: var(--bg-alt); border: 1px solid rgba(232,160,32,0.15);
  border-radius: 16px; padding: 1.5rem; transition: var(--transition);
}
.review-card:hover { border-color: rgba(232,160,32,0.4); transform: translateY(-4px); }
.reviewer-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 0.75rem; }
.reviewer-info { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.reviewer-info strong { color: var(--gold); font-size: 0.95rem; }
.review-card p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.7; font-style: italic; }

/* ===== FOOTER ===== */
.footer { background: #0f0300; padding: 3rem 0 1.5rem; border-top: 2px solid rgba(232,160,32,0.25); }
.footer-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; align-items: start; }
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand img { height: 55px; object-fit: contain; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); }
.footer-brand-slogan { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-style: italic; }
.footer-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-info p, .footer-info a { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; }
.footer-info a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.75rem; align-items: flex-start; justify-content: flex-end; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; background: rgba(255,255,255,0.07);
  border-radius: 50%; color: rgba(255,255,255,0.7); transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--bg); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.designer { color: var(--gold); font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: #25D366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse 2s infinite; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== CART ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px;
  background: #1e0500; border-left: 2px solid var(--gold);
  z-index: 1200; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(232,160,32,0.2); flex-shrink: 0;
}
.cart-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.cart-close {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.cart-close:hover { background: var(--red); border-color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(232,160,32,0.3); border-radius: 4px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 200px; gap: 0.75rem; color: rgba(255,255,255,0.35);
}
.cart-empty span { font-size: 2.5rem; }
.cart-empty p { font-size: 0.88rem; }
.cart-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  animation: slideInRight 0.25s ease;
}
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.cart-item-name { flex: 1; font-size: 0.85rem; color: var(--white); line-height: 1.4; }
.cart-item-qty { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.cart-item-qty button {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 26px; height: 26px; border-radius: 6px;
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.cart-item-qty button:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cart-item-qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: 0.9rem; color: var(--gold); }
.cart-item-price { font-weight: 700; color: var(--gold); font-size: 0.88rem; min-width: 48px; text-align: right; flex-shrink: 0; }
.cart-item-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 1rem; padding: 2px 4px; border-radius: 4px; transition: var(--transition); flex-shrink: 0; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(232,160,32,0.2); flex-shrink: 0; background: rgba(0,0,0,0.2); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.cart-total-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.btn-order-wa {
  width: 100%; background: #25D366; color: var(--white); border: none;
  padding: 1rem; border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-order-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,5,0,0.97); flex-direction: column;
    justify-content: center; align-items: center; gap: 1.5rem;
    transform: translateX(-100%); transition: transform 0.35s ease; z-index: 900;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; padding: 0.6rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .menu-grid { gap: 1rem; }
  .menu-card img { height: 170px; }
  .catering-list { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .catering-form { grid-template-columns: 1fr; }
  .cart-panel { width: 95vw; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .info-container { gap: 0.75rem; }
  .info-item { font-size: 0.78rem; }
  .cart-panel { width: 100vw; border-left: none; border-top: 2px solid var(--gold); }
}

/* ===== MAP ===== */
.map-section { padding: 5rem 0; background: var(--bg-alt); }
.map-wrapper {
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(232,160,32,0.3);
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.map-info {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 14px; padding: 1.5rem 2rem;
}
.map-info-item { display: flex; align-items: flex-start; gap: 0.75rem; min-width: 180px; }
.map-info-item span { font-size: 1.5rem; flex-shrink: 0; }
.map-info-item strong { display: block; color: var(--gold); font-size: 0.82rem; margin-bottom: 0.2rem; }
.map-info-item p, .map-info-item a { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.map-info-item a:hover { color: var(--gold); }
.btn-directions {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #1a0500; font-weight: 700;
  padding: 0.65rem 1.5rem; border-radius: 50px; font-size: 0.88rem;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-directions:hover { background: #f0b030; transform: translateY(-2px); }
@media(max-width:768px) {
  .map-info { flex-direction: column; }
  .map-wrapper iframe { height: 280px; }
}
/* ===== PRICE INDIVIDUAL =====*/
.price-individual {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
}

/* ===== NAV CALL BUTTON ===== */
.btn-nav-call {
  background: var(--green);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: none;
}
@media(min-width: 769px) {
  .btn-nav-call { display: inline-block; }
}
.btn-nav-call:hover { opacity: 0.85; }
