/* ============================================================
   THE MEAL HOUSE — style.css
   Single-page website styles
   To change colors: edit the :root section below only
   ============================================================ */

/* ---------- BRAND VARIABLES ---------- */
*{
    box-sizing:border-box;
}

:root {
  --navy:        #0D1B3E;
  --navy-mid:    #162250;
  --gold:        #E8820C;
  --gold-light:  #F5A340;
  --gold-pale:   #FDF3E7;
  --green:       #4CAF50;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --text-dark:   #1A1A2E;
  --text-muted:  #6B6B7B;
  --border:      rgba(232,130,12,0.2);
  --shadow:      0 4px 24px rgba(13,27,62,0.10);
  --shadow-gold: 0 4px 20px rgba(232,130,12,0.22);
  --radius:      12px;
  --radius-sm:   8px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img  { max-width:100%; height:auto; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
address { font-style:normal; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height:1.15; color: var(--navy); }
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); }
em { font-style:italic; color: var(--gold); }
p  { color: var(--text-muted); line-height:1.8; }

/* ---------- UTILITIES ---------- */
.container   { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
.section-pad { padding:5rem 0; }
.bg-off-white{ background: var(--off-white); }
.text-center { text-align:center; }

.section-tag {
  display:inline-block;
  font-size:0.72rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
  color: var(--gold); background: var(--gold-pale);
  border:1px solid var(--border); padding:0.35rem 1rem; border-radius:50px;
  margin-bottom:1rem;
}
.section-heading { margin-bottom:1rem; }
.section-sub { font-size:1rem; color:var(--text-muted); max-width:55ch; margin:0 auto 3rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display:inline-flex; align-items:center; gap:0.45rem;
  padding:0.82rem 1.9rem; border-radius:50px;
  font-family:var(--font-body); font-size:0.88rem; font-weight:600;
  border:none; cursor:pointer; transition:all 0.22s ease; white-space:nowrap;
}
.btn-primary  { background:var(--gold); color:#fff; box-shadow:var(--shadow-gold); }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); }
.btn-outline  { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-navy     { background:var(--navy); color:#fff; }
.btn-navy:hover { background:var(--navy-mid); transform:translateY(-2px); }
.btn-whatsapp { background:#25D366; color:#fff; }
.btn-whatsapp:hover { background:#1ebe5a; transform:translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 2rem;
  background:rgba(13,27,62,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(232,130,12,0.15);
  transition:padding 0.3s;
}
.navbar.scrolled { padding:0.6rem 2rem; }

.nav-logo { display:flex; align-items:center; gap:0.75rem; }
.nav-logo img { height:46px; width:46px; object-fit:contain; border-radius:8px; }
.nav-logo-text .name    { display:block; font-family:var(--font-head); font-size:1.05rem; color:#fff; line-height:1; }
.nav-logo-text .tagline { display:block; font-size:0.6rem; color:var(--green); letter-spacing:0.08em; text-transform:uppercase; }

.nav-menu { display:flex; align-items:center; gap:2rem; }
.nav-links { display:flex; align-items:center; gap:0.15rem; }
.nav-links a { font-size:0.83rem; font-weight:500; color:rgba(255,255,255,0.8); padding:0.45rem 0.85rem; border-radius:6px; transition:all 0.2s; }
.nav-links a:hover { color:var(--gold); background:rgba(232,130,12,0.1); }

.nav-actions { display:flex; align-items:center; gap:0.75rem; }
.nav-call { font-size:0.8rem; font-weight:600; color:var(--gold); border:1px solid rgba(232,130,12,0.4); padding:0.42rem 1rem; border-radius:50px; transition:all 0.2s; }
.nav-call:hover { background:var(--gold); color:#fff; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:all 0.3s; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height:100vh; background:var(--navy);
  display:flex; align-items:center; padding-top:80px;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,130,12,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(76,175,80,0.06) 0%, transparent 40%);
}
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center; position:relative; z-index:1;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:rgba(76,175,80,0.15); border:1px solid rgba(76,175,80,0.3);
  color:var(--green); font-size:0.78rem; font-weight:600; letter-spacing:0.08em;
  padding:0.4rem 1rem; border-radius:50px; margin-bottom:1.4rem;
}
.hero-title { color:#fff; margin-bottom:1.1rem; }
.hero-title .accent { display:block; color:var(--gold); font-style:italic; }
.hero-desc  { color:rgba(255,255,255,0.7); font-size:1rem; margin-bottom:2rem; max-width:44ch; }
.hero-btns  { display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:3rem; }

.hero-stats { display:flex; gap:2.5rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,0.1); }
.hero-stat .num   { font-family:var(--font-head); font-size:1.8rem; color:var(--gold); line-height:1; }
.hero-stat .label { font-size:0.72rem; color:rgba(255,255,255,0.55); margin-top:0.2rem; }

.hero-image-wrap { position:relative; }
.hero-image-wrap img { width:100%; height:480px; object-fit:cover; border-radius:var(--radius); border:2px solid rgba(232,130,12,0.25); }

.hero-badge-float {
  position:absolute; bottom:1.5rem; left:-1.5rem;
  background:#fff; border-radius:var(--radius-sm); padding:0.8rem 1.1rem;
  box-shadow:var(--shadow); display:flex; align-items:center; gap:0.75rem;
}
.hbf-icon { font-size:1.5rem; }
.hbf-top  { font-size:0.68rem; color:var(--text-muted); }
.hbf-bot  { font-size:0.88rem; font-weight:600; color:var(--navy); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.services-strip { background:var(--gold); padding:1.1rem 0; overflow:hidden; }
.strip-inner { display:flex; gap:2.5rem; align-items:center; white-space:nowrap; animation:marquee 22s linear infinite; }
.strip-item { font-size:0.82rem; font-weight:600; color:#fff; letter-spacing:0.05em; text-transform:uppercase; }
.strip-dot  { width:5px; height:5px; background:rgba(255,255,255,0.45); border-radius:50%; flex-shrink:0; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-img img { width:100%; height:440px; object-fit:cover; border-radius:var(--radius); }

.about-text h2 { margin-bottom:1rem; }
.about-text p   { font-size:0.95rem; }

.about-highlights { display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; margin:1.5rem 0; }
.highlight { font-size:0.85rem; font-weight:500; color:var(--navy); background:var(--gold-pale); border:1px solid var(--border); border-radius:var(--radius-sm); padding:0.5rem 0.85rem; }

.founder-card { display:flex; align-items:center; gap:1rem; padding:1rem 1.25rem; background:var(--gold-pale); border:1px solid var(--border); border-radius:var(--radius-sm); margin-top:1.5rem; }
.founder-avatar { width:52px; height:52px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:1.3rem; color:#fff; font-weight:700; flex-shrink:0; }
.founder-name { font-weight:600; font-size:0.95rem; color:var(--navy); }
.founder-role { font-size:0.78rem; color:var(--text-muted); }

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:1.25rem; margin-top:2.5rem; }
.feature-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:1.75rem 1.4rem; text-align:center; transition:all 0.3s; }
.feature-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-gold); border-color:var(--gold); }
.feature-icon { font-size:2rem; margin-bottom:0.85rem; }
.feature-card h4 { font-family:var(--font-body); font-size:0.95rem; font-weight:600; color:var(--navy); margin-bottom:0.4rem; }
.feature-card p  { font-size:0.83rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; margin-top:2.5rem; }
.service-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:all 0.3s; }
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.service-card-img { width:100%; height:210px; object-fit:cover; }
.service-card-body { padding:1.5rem; text-align:left; }
.service-card-tag { font-size:0.68rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:0.45rem; }
.service-card h3  { color:var(--navy); margin-bottom:0.5rem; }
.service-card p   { font-size:0.86rem; margin-bottom:1rem; }
.service-list { margin:0.75rem 0 1.2rem; display:flex; flex-direction:column; gap:0.35rem; }
.service-list li { font-size:0.82rem; color:var(--text-muted); padding-left:1rem; position:relative; }
.service-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }

/* ============================================================
   MENU
   ============================================================ */
.menu-tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:0.5rem; margin-bottom:2rem; }
.tab-btn {
  padding:0.55rem 1.3rem; border-radius:50px;
  border:2px solid var(--border); background:#fff;
  color:var(--navy); font-family:var(--font-body); font-size:0.82rem; font-weight:600;
  cursor:pointer; transition:all 0.2s;
}
.tab-btn:hover, .tab-btn.active { background:var(--gold); color:#fff; border-color:var(--gold); }

/* Each tab panel is a grid — hidden by default, shown when .active */
.menu-grid { display:none; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:1px; background:rgba(232,130,12,0.1); border-radius:var(--radius); overflow:hidden; }
.menu-grid.active { display:grid; }

.menu-item { background:#fff; padding:1.1rem 1.25rem; display:flex; align-items:flex-start; gap:0.85rem; transition:background 0.2s; }
.menu-item:hover { background:var(--gold-pale); }
.veg-dot { width:14px; height:14px; border:2px solid var(--green); border-radius:3px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:4px; }
.veg-dot::after { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; }
.mname { font-size:0.92rem; font-weight:600; color:var(--navy); margin-bottom:0.2rem; }
.mdesc { font-size:0.78rem; color:var(--text-muted); line-height:1.5; }

.menu-cta-note { margin-top:2rem; background:var(--gold-pale); border:1px solid var(--border); border-radius:var(--radius-sm); padding:1rem 1.5rem; font-size:0.9rem; color:var(--text-muted); }
.menu-cta-note a { color:var(--gold); font-weight:600; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1rem; margin-top:2rem; }
.gallery-item { border-radius:var(--radius-sm); overflow:hidden; aspect-ratio:4/3; cursor:pointer; position:relative; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-overlay { position:absolute; inset:0; background:rgba(13,27,62,0.45); opacity:0; transition:opacity 0.3s; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.8rem; font-weight:600; }
.gallery-item:hover .gallery-overlay { opacity:1; }

/* Lightbox */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:9999; align-items:center; justify-content:center; padding:2rem; }
.lightbox.open { display:flex; }
.lightbox img { max-height:90vh; max-width:90vw; border-radius:var(--radius-sm); object-fit:contain; }
.lightbox-close { position:absolute; top:1.5rem; right:1.5rem; background:rgba(255,255,255,0.15); border:none; color:#fff; font-size:1.5rem; width:44px; height:44px; border-radius:50%; cursor:pointer; transition:background 0.2s; display:flex; align-items:center; justify-content:center; }
.lightbox-close:hover { background:rgba(255,255,255,0.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; margin-top:2.5rem; }
.testimonial-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:2rem; text-align:left; transition:box-shadow 0.3s; }
.testimonial-card:hover { box-shadow:var(--shadow-gold); }
.stars  { color:var(--gold); font-size:1rem; letter-spacing:2px; margin-bottom:0.9rem; }
.testimonial-card p { font-size:0.88rem; font-style:italic; margin-bottom:1.1rem; }
.t-author { font-size:0.85rem; font-weight:600; color:var(--navy); }
.t-event  { font-size:0.75rem; color:var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info h2 { margin-bottom:0.75rem; }
.contact-info > p { margin-bottom:1.5rem; font-size:0.92rem; }

.contact-methods { display:flex; flex-direction:column; gap:0.85rem; margin-bottom:1.5rem; }
.contact-method { display:flex; align-items:center; gap:1rem; padding:0.9rem 1.1rem; background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius-sm); transition:border-color 0.2s; text-decoration:none; }
.contact-method:hover { border-color:var(--gold); }
.contact-method.no-link { cursor:default; }
.contact-method{ width:100%;}
.cm-icon  { font-size:1.3rem; width:40px; text-align:center; flex-shrink:0; }
.cm-label { font-size:0.68rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.08em; }
.cm-value { font-size:0.9rem; font-weight:600; color:var(--navy); }



/* Form */
.contact-form-wrap { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:2.5rem; box-shadow:var(--shadow); }
.contact-form-wrap h3 { color:var(--navy); margin-bottom:0.5rem; }
.form-desc { font-size:0.84rem; color:var(--text-muted); margin-bottom:1.5rem; }
.form-row   { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-group label { display:block; font-size:0.8rem; font-weight:600; color:var(--navy); margin-bottom:0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:0.7rem 0.95rem;
  border:1.5px solid #E0DDD8; border-radius:var(--radius-sm);
  font-family:var(--font-body); font-size:0.86rem; color:var(--text-dark);
  background:var(--off-white); outline:none; transition:border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); background:#fff; }
.form-group textarea { resize:vertical; min-height:100px; }
.submit-btn { width:100%; justify-content:center; font-size:0.95rem; border-radius:var(--radius-sm); }
.form-note  { font-size:0.74rem; color:var(--text-muted); text-align:center; margin-top:0.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background:var(--navy); color:rgba(255,255,255,0.65); padding:4rem 0 0; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }

.footer-logo-wrap { display:flex; align-items:center; gap:0.75rem; margin-bottom:1rem; }
.footer-logo-wrap img { height:46px; width:46px; object-fit:contain; border-radius:8px; }
.footer-brand-name { font-family:var(--font-head); font-size:1.1rem; color:#fff; line-height:1.1; }
.footer-brand-tag  { font-size:0.62rem; color:var(--green); letter-spacing:0.1em; text-transform:uppercase; }
.footer-brand p    { font-size:0.85rem; margin-top:0.75rem; margin-bottom:1.25rem; }

.social-links { display:flex; gap:0.65rem; }
.social-link  { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; font-size:1rem; transition:background 0.2s; color:#fff; }
.social-link:hover { background:var(--gold); }

.footer-col h4  { font-family:var(--font-body); font-size:0.8rem; font-weight:700; color:#fff; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:1.1rem; }
.footer-col ul  { display:flex; flex-direction:column; gap:0.55rem; }
.footer-col a   { font-size:0.84rem; color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-col a:hover { color:var(--gold); }
.footer-col address { font-size:0.84rem; line-height:1.9; }
.footer-col address a { color:rgba(255,255,255,0.55); }
.footer-col address a:hover { color:var(--gold); }

.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); padding:1.1rem 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:0.5rem; }
.footer-bottom p { font-size:0.78rem; margin:0; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-buttons { position:fixed; bottom:1.75rem; right:1.5rem; z-index:999; display:flex; flex-direction:column; gap:0.7rem; }
.float-btn { width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; box-shadow:0 4px 16px rgba(0,0,0,0.2); transition:transform 0.2s, box-shadow 0.2s; border:none; cursor:pointer; }
.float-btn:hover { transform:scale(1.1); box-shadow:0 8px 24px rgba(0,0,0,0.25); }
.float-wa   { background:#25D366; }
.float-call { background:var(--navy); }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:768px) {
  .hero-grid    { grid-template-columns:1fr; }
  .hero-image-wrap { display:none; }
  .about-grid   { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid  { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  /* Hamburger menu */
  .hamburger { display:flex; }
  .nav-menu  {
    display:none; position:fixed; top:68px; left:0; right:0;
    background:var(--navy); flex-direction:column; align-items:stretch;
    padding:1.5rem; gap:0; border-top:1px solid rgba(232,130,12,0.2);
  }
  .nav-menu.open { display:flex; }
  .nav-links { flex-direction:column; gap:0; }
  .nav-links a { padding:0.85rem 0; border-bottom:1px solid rgba(255,255,255,0.06); border-radius:0; }
  .nav-actions { flex-direction:column; margin-top:1rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,0.1); }

  .section-pad { padding:3.5rem 0; }
  .about-highlights { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .hero-stats { gap:1.5rem; }
  .menu-tabs { gap:0.35rem; }
  .tab-btn { padding:0.45rem 0.9rem; font-size:0.76rem; }
}

/* ============================================================
   MENU MODAL
   ============================================================ */
.menu-modal {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,0.75); z-index:9999;
  align-items:center; justify-content:center; padding:1.5rem;
}
.menu-modal.open { display:flex; }
.menu-modal-inner {
  background:#fff; border-radius:var(--radius);
  width:100%; max-width:560px; max-height:90vh;
  overflow-y:auto; box-shadow:0 20px 60px rgba(0,0,0,0.3);
}
.menu-modal-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.25rem 1.5rem; border-bottom:1px solid var(--border);
  position:sticky; top:0; background:#fff; z-index:1;
}
.menu-modal-header h3 { color:var(--navy); font-size:1.2rem; }
.menu-modal-actions { display:flex; align-items:center; gap:0.75rem; }
.menu-modal-close {
  width:36px; height:36px; border-radius:50%; background:var(--off-white);
  border:none; font-size:1rem; cursor:pointer; display:flex;
  align-items:center; justify-content:center; color:var(--text-muted);
  transition:background 0.2s;
}
.menu-modal-close:hover { background:#eee; }
.menu-modal-body { padding:1.5rem; }

/* ============================================================
   GOOGLE RATING BANNER
   ============================================================ */
.google-rating-banner {
  display:flex; align-items:center; gap:2rem; flex-wrap:wrap; justify-content:center;
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:2rem 2.5rem; margin-bottom:3rem; box-shadow:var(--shadow);
}
.google-g { flex-shrink:0; }
.google-rating-info { text-align:center; }
.google-stars { color:#FBBC05; font-size:1.6rem; letter-spacing:3px; }
.google-rating-num { font-family:var(--font-head); font-size:2.5rem; color:var(--navy); font-weight:700; line-height:1; }
.google-rating-label { font-size:0.8rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.1em; margin-top:0.3rem; }
.google-divider { width:1px; height:60px; background:var(--border); flex-shrink:0; }
.google-badges { display:flex; flex-direction:column; gap:0.6rem; }
.g-badge {
  font-size:0.85rem; font-weight:600; color:var(--navy);
  background:var(--gold-pale); border:1px solid var(--border);
  border-radius:50px; padding:0.4rem 1rem;
}

/* ============================================================
   CONTACT WHATSAPP-ONLY BOX
   ============================================================ */
.wa-contact-box {
  background:linear-gradient(135deg, #dcfce7, #f0fdf4);
  border:1.5px solid #86efac; border-radius:var(--radius);
  padding:2rem; text-align:center; margin-bottom:1.5rem;
}
.wa-title { font-size:1.1rem; font-weight:600; color:#166534; margin-bottom:0.5rem; }
.wa-num { font-family:var(--font-head); font-size:1.8rem; color:#15803d; font-weight:700; margin-bottom:0.4rem; }
.wa-hint { font-size:0.82rem; color:#166534; margin-bottom:1.25rem; }
.wa-big-btn { width:100%; justify-content:center; font-size:1.05rem; border-radius:var(--radius-sm); padding:1rem; }

.or-divider { text-align:center; position:relative; margin:1.25rem 0; }
.or-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:var(--border); }
.or-divider span { position:relative; background:#fff; padding:0 1rem; font-size:0.8rem; color:var(--text-muted); }

.call-big-btn {
  display:flex; align-items:center; justify-content:center;
  width:100%; padding:0.9rem; border-radius:var(--radius-sm);
  background:var(--navy); color:#fff; font-size:1rem; font-weight:600;
  margin-bottom:1.5rem; transition:background 0.2s;
}
.call-big-btn:hover { background:var(--navy-mid); }

.contact-note {
  background:var(--off-white); border-radius:var(--radius-sm);
  padding:1rem 1.25rem; font-size:0.85rem; color:var(--text-muted);
  line-height:1.8;
}

/* ============================================================
   FOOTER UPDATED (3-col)
   ============================================================ */
.footer-grid-new {
  display:grid; grid-template-columns:1.6fr 1fr 1fr;
  gap:3rem; margin-bottom:3rem;
}
.insta-link { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color:#fff; }
.insta-link:hover { opacity:0.85; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.gmail-link { background:#EA4335; color:#fff; }
.gmail-link:hover { background:#c5392b; }
.social-link svg { display:block; }

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width:768px) {
  .footer-grid-new { grid-template-columns:1fr; gap:2rem; }
  .google-rating-banner { flex-direction:column; gap:1rem; padding:1.5rem; }
  .google-divider { width:60px; height:1px; }
  .menu-modal-header { flex-direction:column; align-items:flex-start; gap:0.75rem; }
}
