:root {
  --primary: #333333;
  --primary-dark: #1a1a1a;
  --dark: #121212;
  --darker: #000000;
  --white: #ffffff;
  --light: #f8f9fa;
  --muted: #6c757d;
  --border: #e9ecef;
  --green: #25D366;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --transition: all .3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- NAVEGACIÓN --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 82px;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.logo-img { height: 44px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #302b26;
}
.nav-cta {
  padding: .85rem 1.15rem;
  border: 1px solid var(--dark);
  border-radius: 999px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); }

/* --- HERO --- */
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: 4rem;
  align-items: center;
  padding: 6rem 5% 5rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(51,51,51,.05), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(37,211,102,.05), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}
.hero-eyebrow, .section-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.2rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-weight: 700;
  font-size: .78rem;
}
.eyebrow-line, .section-eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--primary-dark);
}
.hero h1, .section-h2 {
  font-family: 'Cormorant', serif;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(3.5rem, 7vw, 7rem); margin-bottom: 1.6rem; }
.hero h1 em, .section-h2 em { color: var(--primary-dark); font-style: italic; }
.hero-sub {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary, .btn-ghost, .btn-light, .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .7px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--dark); color: var(--white); box-shadow: 0 14px 32px rgba(0,0,0,.13); }
.btn-primary.green { background: var(--green); color: #fff; }
.btn-primary:hover, .btn-ghost:hover, .btn-light:hover, .submit-btn:hover { transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.8); border-color: var(--border); color: var(--dark); }
.btn-light { background: #fff; border-color: var(--border); color: var(--dark); }
.disabled { opacity: .55; pointer-events: none; }
.hero-badges { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.7rem; }
.hero-badges span {
  background: rgba(255,255,255,.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .62rem .9rem;
  color: #4f4942;
  font-size: .88rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

/* --- HERO: IMAGEN LIMPIA Y FLOTANTE --- */
.clean-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-stats {
  position: absolute;
  bottom: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.stat-pill {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-pill 4s ease-in-out infinite;
}

.stat-pill strong {
  color: #1a1a1a;
  font-size: 1rem;
}

@keyframes float-pill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- NUEVA TARJETA DE COTIZACIÓN RÁPIDA --- */
.quick-quote-section {
  padding: 60px 5%;
  background-color: var(--light);
}

.quick-quote-card {
  background: var(--white);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.quote-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.quote-content h2 {
  font-family: 'Cormorant', serif;
  font-size: 2.8rem;
  margin: 15px 0;
  line-height: 1.1;
  color: var(--dark);
}

.quote-content p {
  color: var(--muted);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.quote-content .badge {
  background: rgba(37,211,102,.16);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-whatsapp-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
  background: #20bd5a;
}

/* Espacio y sombra para el mockup del celular */
.quote-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px; 
  background: #f8f9fa; 
}

.quote-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px; 
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12)); 
}

/* --- TICKER Y TRUST STRIP --- */
.ticker-bar { background: var(--darker); color: var(--white); padding: 1.2rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 28s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); }
.ticker-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; opacity: 0.5;}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.trust-strip {
  padding: 4rem 5%;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.trust-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
}
.trust-item strong { display: block; font-size: 1.1rem; margin-bottom: .45rem; }
.trust-item p { color: var(--muted); line-height: 1.6; }

/* --- CATÁLOGO --- */
.catalog-section { padding: 6rem 5%; background: #ffffff; }
.catalog-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.section-h2 { font-size: clamp(3.2rem, 7vw, 6rem); color: var(--dark); }
.catalog-header p, .section-center p, .appointment-copy p, .estimate-left p, .final-cta p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}
.filter-bar { display: flex; gap: .7rem; flex-wrap: wrap; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: .75rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.7rem; max-width: 1100px; margin: 0 auto; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,.045);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-img { height: 260px; position: relative; overflow: hidden; background: #eee; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .card-img img { transform: scale(1.06); }
.card-badge { position: absolute; top: 15px; right: 15px; background: var(--primary); color: var(--white); font-size: .72rem; font-weight: 700; padding: 7px 12px; border-radius: 999px; }
.card-body { padding: 1.65rem; }
.card-name { font-family: 'Cormorant', serif; font-size: 1.65rem; margin-bottom: .7rem; }
.card-desc { color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.card-benefits { list-style: none; display: grid; gap: .35rem; color: #4d463f; font-size: .9rem; margin-bottom: 1.25rem; }
.card-cta { font-weight: 700; color: var(--primary-dark); }

/* --- AGENDA Y CALENDARIO MODERNO --- */
.appointment-section {
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 3rem;
  align-items: center;
  background: var(--dark);
  color: #fff;
}
.appointment-section .section-h2 { color: #fff; }
.appointment-list { margin-top: 1.5rem; list-style: none; display: grid; gap: .65rem; color: rgba(255,255,255,.78); }
.scheduler-card {
  background: #fff;
  color: var(--dark);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.scheduler-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.scheduler-header span { color: var(--primary-dark); text-transform: uppercase; letter-spacing: 2px; font-size: .75rem; font-weight: 700; }
.scheduler-header strong { font-size: 1.35rem; }
.field-label { display: block; margin: 1rem 0 .45rem; font-weight: 700; }
.scheduler-input, .form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light);
  font: inherit;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 10px;
  margin: 15px 0 25px 0;
}
.modern-grid button {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
}
.modern-grid button:hover {
  background: var(--border);
}
.modern-grid button.active, .modern-grid button.selected { 
  background: var(--dark); 
  color: var(--white); 
  border-color: var(--dark);
}
.appointment-summary { margin: 1.2rem 0; padding: 1rem; border-radius: 14px; background: var(--light); color: var(--muted); line-height: 1.6; }
.scheduler-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* --- TRANSFORMACIONES ANTES Y DESPUÉS --- */
.transformations-section { padding: 6rem 5%; background: var(--light); }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-eyebrow.center { justify-content: center; }
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem; max-width: 1180px; margin: 0 auto; }
.ba-container { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); display: flex; min-height: 360px; background: #fff; }
.ba-left, .ba-right { flex: 1; position: relative; overflow: hidden; }
.ba-left { border-right: 2px solid #fff; }
.ba-container img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; left: 12px; bottom: 12px; background: rgba(0,0,0,.72); color: #fff; padding: 6px 11px; font-size: .68rem; font-weight: 700; border-radius: 999px; z-index: 2; letter-spacing: 1px; }
.ba-label-after { background: var(--dark); left: auto; right: 12px; }

/* --- ESTIMADO Y CONTACTO --- */
.estimate-section { padding: 6rem 5%; background: var(--darker); color: #fff; }
.estimate-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.estimate-section .section-h2 { color: #fff; }
.contact-list { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-row { display: flex; gap: .9rem; align-items: center; }
.contact-icon-box { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.08); }
.wa-icon { background: rgba(37,211,102,.16); }
.c-label { color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; }
.c-val { color: #fff; }
.quote-form { background: #fff; color: var(--dark); padding: 2.2rem; border-radius: 24px; box-shadow: var(--shadow); }
.form-title { font-family: 'Cormorant', serif; font-size: 2.2rem; margin-bottom: 1.3rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .45rem; }
.submit-btn { width: 100%; background: var(--primary-dark); color: #fff; border: none; border-radius: 14px; }
.form-message { margin-bottom: 1rem; font-weight: 700; }
.honeypot { position: absolute; left: -9999px; }

/* --- FOOTER & CTA FINAL --- */
.final-cta { padding: 6rem 5%; text-align: center; background: linear-gradient(135deg, #fff, var(--light)); }
.final-cta h2 { font-family: 'Cormorant', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.03em; }
.final-cta p { margin: .8rem auto 1.8rem; }
.footer { background: #000; color: #fff; padding: 4rem 5%; text-align: center; }
.footer-logo-img { height: 80px; margin: 0 auto 1rem; opacity: .45; }
.footer-copyright { color: rgba(255,255,255,.62); }
.footer-links { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; color: rgba(255,255,255,.82); }

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 40px rgba(37,211,102,.35);
  font-weight: 700;
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 24px; height: 24px; fill: #fff; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .hero, .appointment-section, .estimate-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .catalog-header { align-items: flex-start; flex-direction: column; }
  .trust-strip { grid-template-columns: 1fr; }
  
  .quick-quote-card { grid-template-columns: 1fr; }
  .quote-image { 
    order: -1; 
    padding: 30px; 
  }
  .quote-image img { 
    max-height: 350px; 
  }
  .quote-content { padding: 40px 30px; }
}

@media (max-width: 720px) {
  .navbar { height: 72px; }
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem 5%;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hero h1 { font-size: 3.55rem; }
  .hero-btns, .btn-primary, .btn-ghost, .btn-light, .submit-btn { width: 100%; }
  
  .floating-stats { right: 10px; bottom: -15px; }
  .stat-pill { padding: 8px 12px; font-size: 0.8rem; }
  .stat-pill strong { font-size: 0.9rem; }
  
  .modern-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
  .form-row-2 { grid-template-columns: 1fr; }
  
  .ba-container { flex-direction: column; }
  .ba-left, .ba-right { min-height: 260px; }
  .ba-left { border-right: none; border-bottom: 2px solid #fff; }
  
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 58px; height: 58px; padding: 0; justify-content: center; }
}
/* ── Product Modal ─────────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.active {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: row;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #fff;
  color: #151210;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.15s;
}
.modal-close:hover { background: #f0ebe3; transform: scale(1.1); }
.modal-img-wrap {
  position: relative;
  flex: 0 0 50%;
  background: #f5f1eb;
}
.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #151210;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.modal-info {
  flex: 1;
  padding: 2rem 1.75rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-info h2 {
  font-size: 1.4rem;
  color: #151210;
  margin: 0;
  line-height: 1.3;
}
.modal-info p {
  font-size: 0.95rem;
  color: #5a5550;
  line-height: 1.65;
  margin: 0;
}
.modal-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modal-benefits li {
  font-size: 0.9rem;
  color: #3a3530;
}
.modal-cta {
  display: inline-block;
  margin-top: auto;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.modal-cta:hover { background: #1ebe5d; }

/* Hover overlay on card image */
.card-img { position: relative; overflow: hidden; }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,18,16,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.25s;
}
.card-img:hover .card-img-overlay { opacity: 1; }

/* Mobile modal */
@media (max-width: 640px) {
  .modal-box { flex-direction: column; max-height: 95vh; }
  .modal-img-wrap { flex: 0 0 240px; }
}

/* ── Google Reviews ─────────────────────────────────────────────── */
.reviews-section {
  padding: 5rem 1.5rem;
  background: #faf8f5;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: #4a4540; line-height: 1.7; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #9a6f3a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: #151210; }
.review-location { font-size: 0.78rem; color: #9a9590; }
.reviews-cta { text-align: center; margin-top: 2rem; }

/* ── Instagram / Gallery ─────────────────────────────────────────── */
.instagram-section {
  padding: 5rem 1.5rem;
  background: #fff;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 900px;
  margin: 2.5rem auto 1.5rem;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.insta-item:hover img { transform: scale(1.06); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(21,18,16,0.5);
  display: flex; align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span {
  color: #fff; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.5px;
}
.insta-follow { text-align: center; }
.insta-follow p { color: #777; margin-bottom: 1rem; font-size: 0.9rem; }
.btn-ghost-dark {
  display: inline-block;
  border: 1.5px solid #151210;
  color: #151210;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { background: #151210; color: #fff; }
@media (max-width: 600px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Floating Call Button (mobile only) ─────────────────────────── */
.float-call {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 18px;
  background: #151210;
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.1rem;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  z-index: 900;
  transition: background 0.2s;
}
.float-call svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.float-call:hover { background: #2a2520; }
@media (max-width: 768px) {
  .float-call { display: flex; }
}

/* ── WhatsApp Greeting Bubble ────────────────────────────────────── */
.wa-bubble {
  position: fixed;
  bottom: 90px;
  right: 18px;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 950;
  overflow: hidden;
  animation: bubbleIn 0.35s ease;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  color: #999; font-size: 16px; line-height: 1;
}
.wa-bubble-close:hover { color: #333; }
.wa-bubble-avatar {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-bubble-content { padding: 1rem 1rem 1rem 0; flex: 1; }
.wa-bubble { display: none; flex-direction: row; gap: 0; padding: 1rem; align-items: flex-start; gap: 0.75rem; }
.wa-bubble.active { display: flex !important; }
.wa-bubble-name { font-weight: 700; font-size: 0.85rem; color: #151210; margin-bottom: 0.35rem; }
.wa-bubble-msg { font-size: 0.82rem; color: #4a4540; line-height: 1.55; margin-bottom: 0.75rem; }
.wa-bubble-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.wa-bubble-btn:hover { background: #1ebe5d; }

/* ── Gallery Modal ───────────────────────────────────────────────── */
.insta-item { cursor: pointer; }
.gallery-modal-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalIn 0.25s ease;
}
.gallery-modal-box img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.gallery-modal-caption {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 1rem;
  text-align: center;
  background: #111;
  width: 100%;
}