/* ============================================================
   HEGO HVACR — styles.css
   www.hego-hvac.com
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg:      #dce8f5;
  --bg2:     #c8dbed;
  --bg3:     #eaf2fb;
  --card:    #f0f7ff;
  --navy:    #0d2340;
  --blue:    #1565c0;
  --accent:  #0085cc;
  --accent2: #00b0ff;
  --white:   #ffffff;
  --text:    #0d2340;
  --muted:   #4a6580;
  --border:  rgba(13, 35, 64, 0.1);
  --shadow:  0 4px 24px rgba(13, 35, 64, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 58px); line-height: 1;
  color: var(--navy); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px; color: var(--muted);
  max-width: 560px; line-height: 1.8; margin-bottom: 56px;
}

/* ---------- Scroll-reveal utility (JS adds .revealed) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition); }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.stagger > *:nth-child(5) { transition-delay: 0.45s; }
.stagger > *:nth-child(6) { transition-delay: 0.55s; }
.stagger > *:nth-child(7) { transition-delay: 0.65s; }
.stagger > *:nth-child(8) { transition-delay: 0.75s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 48px;
  background: rgba(220, 232, 245, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(220, 232, 245, 0.98);
  box-shadow: 0 2px 20px rgba(13, 35, 64, 0.12);
}
.navbar-brand img { height: 133px; width: auto; }

/* Desktop nav — always horizontal, overrides Bootstrap's flex-column default */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  gap: 36px;
  align-items: center;
  margin-bottom: 0 !important;   /* undo Bootstrap margin */
  padding-left: 0 !important;
}
.navbar-nav .nav-link {
  color: var(--muted); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative;
  padding: 0 !important;         /* reset Bootstrap padding */
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--navy); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 10px 24px !important; border-radius: 6px; font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.navbar-toggler {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar-toggler span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.navbar-toggler.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.open span:nth-child(2) { opacity: 0; }
.navbar-toggler.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #c5daf0 0%, #dce8f5 40%, #cfe0f0 100%);
  display: flex; align-items: center;
  padding: 130px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(13,35,64,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-bg-image {
  position: absolute; right: 0; top: 0; width: 54%; height: 100%;
  object-fit: cover; opacity: 0.99;
  mask-image: linear-gradient(to left, rgba(0,0,0,.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.5) 0%, transparent 80%);
}
.hero-glow {
  position: absolute; right: 10%; top: 20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,133,204,.15) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.7; }
}

.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,35,64,.08); border: 1px solid rgba(13,35,64,.15);
  color: var(--blue); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(62px, 8vw, 100px); line-height: 0.92;
  color: var(--navy); letter-spacing: 0.01em;
  animation: fadeUp 0.7s 0.12s ease both;
}
.hero h1 .accent { color: var(--accent); }
.hero-desc {
  margin-top: 28px; font-size: 17px; line-height: 1.8;
  color: var(--muted); max-width: 480px;
  animation: fadeUp 0.7s 0.24s ease both;
}
.hero-actions {
  margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.36s ease both;
}
.btn-primary {
  background: var(--navy); color: #fff; padding: 16px 36px;
  border-radius: 6px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 24px rgba(13,35,64,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(13,35,64,.35); background: var(--blue); }
.btn-outline {
  border: 2px solid rgba(13,35,64,.25); color: var(--navy);
  padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,133,204,.05); }

.hero-stats {
  margin-top: 64px; display: flex; gap: 52px;
  padding-top: 36px; border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.48s ease both;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--accent); line-height: 1;
  animation: count-up 1.5s ease both;
}
.stat-label {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes count-up {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 96px 48px; background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(13,35,64,.05);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,35,64,.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px; background: rgba(0,133,204,.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; border: 1px solid rgba(0,133,204,.15);
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   GALLERY — SLIDER
   ============================================================ */
.gallery-section { padding: 96px 48px; background: var(--navy); }
.gallery-section .section-label { color: var(--accent2); }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-subtitle { color: rgba(255,255,255,.55); }

/* Slider wrapper */
.slider-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}

/* Track that slides */
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide */
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 540px;
  position: relative;
  cursor: zoom-in;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.4s ease;
}
.slide:hover img { filter: brightness(1); }

/* Slide overlay gradient */
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,35,64,.7) 0%,
    rgba(13,35,64,.1) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Slide counter badge */
.slide-counter {
  position: absolute; bottom: 24px; right: 24px; z-index: 10;
  background: rgba(13,35,64,.7);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}

/* Arrow buttons */
.slider-btn {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(13,35,64,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.slider-btn:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 28px rgba(0,133,204,.45);
}
.slider-btn:active { transform: translateY(-50%) scale(0.96); }
.slider-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

/* Dot indicators */
.slider-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 20px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.slider-dot.active {
  background: var(--accent2);
  width: 24px; border-radius: 4px;
}
.slider-dot:hover:not(.active) { background: rgba(255,255,255,.6); }

/* Progress bar */
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--accent2);
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  z-index: 10;
  pointer-events: none;
}

/* Pause on hover label */
.slider-pause-hint {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(13,35,64,.6); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 100px;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none; z-index: 10; white-space: nowrap;
}
.slider-wrapper:hover .slider-pause-hint { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 8px 48px rgba(0,0,0,.6); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: #fff; font-size: 36px; cursor: pointer; line-height: 1;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 0.5; }

/* Responsive slider */
@media (max-width: 768px) {
  .slide { height: 280px; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn svg { width: 18px; height: 18px; }
  .slider-btn-prev { left: 10px; }
  .slider-btn-next { right: 10px; }
}

/* ============================================================
   MISIÓN & VISIÓN
   ============================================================ */
.mv-section { background: var(--navy); padding: 96px 48px; }
.mv-section .section-label { color: var(--accent2); }
.mv-section .section-title { color: var(--white); margin-bottom: 48px; }

.mv-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mv-card {
  border-radius: 18px; padding: 52px 44px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,176,255,.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.mv-card-mision { background: linear-gradient(135deg, #0d2d52 0%, #0d2340 100%); }
.mv-card-vision  { background: linear-gradient(135deg, #07354a 0%, #0a2a3a 100%); }
.mv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.mv-card-mision::before { background: linear-gradient(90deg, var(--accent), var(--accent2)); }
.mv-card-vision::before  { background: linear-gradient(90deg, var(--accent2), #a0d8ff); }

.mv-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin-bottom: 28px;
  transition: transform var(--transition);
}
.mv-card:hover .mv-icon { transform: scale(1.08) rotate(-5deg); }
.mv-card-mision .mv-icon { background: rgba(0,133,204,.15); border: 1px solid rgba(0,133,204,.25); }
.mv-card-vision  .mv-icon { background: rgba(0,176,255,.12); border: 1px solid rgba(0,176,255,.22); }

.mv-card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 12px;
}
.mv-card-mision .mv-card-tag { color: var(--accent2); }
.mv-card-vision  .mv-card-tag { color: #7dd4fc; }
.mv-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--white); line-height: 1; margin-bottom: 20px;
}
.mv-card p { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.85; }
.mv-card p em { font-style: normal; color: var(--white); font-weight: 600; }

.mv-quote {
  max-width: 1200px; margin: 32px auto 0;
  text-align: center; padding: 36px 48px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.mv-quote p   { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.8; font-style: italic; }
.mv-quote span {
  display: block; margin-top: 16px; font-size: 13px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent2);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section { display: grid; grid-template-columns: 1fr 1fr; }
.why-image { position: relative; overflow: hidden; min-height: 560px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg));
}
.why-content {
  background: var(--bg); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 32px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 38px;
  color: var(--accent); line-height: 1; min-width: 44px; opacity: 0.4;
}
.why-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-text p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   WHATSAPP CTA
   ============================================================ */
.whatsapp-section { background: var(--bg2); padding: 96px 48px; text-align: center; }

.whatsapp-card {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 64px 48px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,35,64,.1);
}
.whatsapp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #25d366, #128c7e);
}
.wa-icon {
  width: 80px; height: 80px; margin: 0 auto 28px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.25);
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 40px;
  animation: wa-bounce 2.5s ease-in-out infinite;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.whatsapp-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px); color: var(--navy); margin-bottom: 16px;
}
.whatsapp-card > p {
  font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 40px;
  max-width: 460px; margin-left: auto; margin-right: auto;
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25d366; color: #fff; padding: 18px 48px; border-radius: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 32px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,211,102,.5); }
.wa-hours { margin-top: 28px; font-size: 13px; color: var(--muted); letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-copy { color: rgba(255,255,255,.45); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 13px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent2); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.fab-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fab-appear 1s 1.5s ease both;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
@keyframes fab-appear {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .navbar { padding: 12px 24px; }

  /* Mobile: collapse into vertical dropdown */
  .navbar-nav {
    display: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(220,232,245,.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(13,35,64,.1);
  }
  .navbar-nav.open { display: flex !important; }
  .navbar-nav .nav-link { padding: 12px 24px !important; font-size: 14px; width: 100%; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-nav-cta { margin: 8px 24px !important; text-align: center; display: block; }
  .navbar-toggler { display: flex; }
  .navbar-brand img { height: 56px; }

  .hero { padding: 110px 24px 60px; }
  .hero-bg-image { opacity: 0.12; width: 70%; }

  .services-section { padding: 64px 24px; }
  .gallery-section  { padding: 64px 24px; }
  .mv-section       { padding: 64px 24px; }
  .whatsapp-section { padding: 64px 24px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; }
  .gallery-item { height: 180px; }

  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 40px 28px; }
  .mv-quote { padding: 28px 24px; }

  .why-section { grid-template-columns: 1fr; }
  .why-image { min-height: 280px; }
  .why-image::after { display: none; }
  .why-content { padding: 56px 24px; }

  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .whatsapp-card { padding: 48px 28px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 56px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
