/* ═══════════════════════════════════════════════════════════════
   PINGALA STUDIO — Dental Demo v3
   Palette:  Deep Navy #0C2340  ·  Teal #0EA8B6  ·  Off-White #F7F9FC
   Font:     Poppins 300–800
   Dials:    DESIGN_VARIANCE 6 · MOTION_INTENSITY 4 · VISUAL_DENSITY 4
   ═══════════════════════════════════════════════════════════════ */

:root {
  --teal:      #0EA8B6;
  --teal-dk:   #0890A0;
  --teal-lt:   #E6F8FA;
  --teal-mid:  #9DE8EF;

  --navy:      #0C2340;
  --navy-2:    #152D50;
  --navy-glass: rgba(12, 35, 64, 0.06);

  --ink:       #0C1829;
  --ink-2:     #2D3748;
  --muted:     #64748B;

  --bg:        #F7F9FC;
  --white:     #FFFFFF;
  --border:    rgba(12, 35, 64, 0.08);
  --border-md: rgba(12, 35, 64, 0.14);

  --wa:        #25D366;
  --wa-dk:     #1DA851;

  /* Timing functions */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --expo:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--expo),
    transform 0.7s var(--expo);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.6s var(--expo),
    transform 0.6s var(--expo);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal-up.in-view,
.reveal-left.in-view { opacity: 1; transform: none; }

/* ── HERO ENTRANCE (stagger cascade) ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: fadeUp 0.75s var(--expo) forwards;
  animation-delay: calc(var(--d, 0) * 120ms + 100ms);
}

/* ── FLOAT (hero badges) ────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── PULSE RING (WA button) ─────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ── SHIMMER (CTA button) ───────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── BREATHE (pill dot) ─────────────────────────────────────────── */
@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
  transition:
    background 0.2s,
    transform 0.2s var(--expo),
    box-shadow 0.2s;
}
.btn-wa:hover { background: var(--wa-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42); }
.btn-wa:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-2);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-md);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dk); background: var(--teal-lt); }
.btn-outline:active { transform: scale(0.97); }

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(12, 35, 64, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--expo);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(12, 35, 64, 0.22);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--expo);
}
.header-cta:hover { background: var(--navy-2); transform: translateY(-1px); }
.header-cta:active { transform: scale(0.97); }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--teal-lt) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.7;
}
.hero-bg-blob {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(14, 168, 182, 0.12) 0%,
    rgba(14, 168, 182, 0.04) 50%,
    transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-left { display: flex; flex-direction: column; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-lt);
  color: var(--teal-dk);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
  border: 1px solid rgba(14, 168, 182, 0.22);
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: breathe 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero-hl {
  color: var(--teal);
  position: relative;
  display: inline;
}
/* Underline accent on highlight */
.hero-hl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background: rgba(14, 168, 182, 0.18);
  border-radius: 3px;
  z-index: -1;
}

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 18px;
  margin-bottom: 36px;
  width: fit-content;
}
.star-row { display: flex; gap: 2px; }
.star { width: 15px; height: 15px; color: #F59E0B; }
.rating-label { font-size: 0.8rem; color: var(--ink-2); font-weight: 500; }
.rating-label strong { color: var(--ink); font-weight: 700; }

.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── HERO IMAGE ─────────────────────────────────────────────────── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img-wrap {
  position: relative;
  width: min(460px, 100%);
}
.hero-img-card {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-lt) 0%, var(--teal-mid) 100%);
  box-shadow:
    0 4px 6px rgba(12, 35, 64, 0.04),
    0 24px 60px rgba(12, 35, 64, 0.16);
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.hero-img-card:hover img { transform: scale(1.04); }
.hero-img-card.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 16px 22px;
  text-align: center;
  min-width: 118px;
  box-shadow: 0 12px 40px rgba(12, 35, 64, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: float 4.5s ease-in-out infinite;
}
.badge-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.badge-stars {
  display: block;
  color: #F59E0B;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin: 5px 0 3px;
}
.badge-lbl {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Floating chip */
.hero-chip {
  position: absolute;
  top: 28px;
  right: -18px;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(12, 35, 64, 0.1);
  border: 1px solid var(--border);
  animation: float 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.chip-text {
  display: flex;
  flex-direction: column;
}
.chip-text strong { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.chip-text span   { font-size: 0.62rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── STATS BAND ─────────────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  padding: 52px 0;
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
/* Separators via pseudo-elements to avoid extra HTML */
.stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin: 8px 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 6px;
}
.stat-val {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── SECTION STYLES ─────────────────────────────────────────────── */
.section-light { background: var(--bg); padding: 108px 0; }

.section-hd   { margin-bottom: 56px; }
.why-header   { margin-bottom: 56px; }

.eyebrow {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(14, 168, 182, 0.7); }
.eyebrow-teal  { color: var(--teal); }

.section-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: var(--ink);
}
.section-h2.light { color: var(--white); }

/* ── SERVICES GRID (2-col, numbered) ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.s-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--expo),
    box-shadow 0.3s var(--expo),
    border-color 0.3s;
}
/* Animated top-border reveal */
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--expo);
}
.s-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(12, 35, 64, 0.1);
  border-color: transparent;
}
.s-card:hover::before { transform: scaleX(1); }
.s-card:active { transform: translateY(-3px) scale(0.99); }

.s-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy-glass);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}
.s-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.2s var(--spring);
}
.s-card:hover .s-icon {
  background: rgba(14, 168, 182, 0.2);
  transform: scale(1.08);
}
.s-icon svg { width: 24px; height: 24px; stroke: var(--teal-dk); }
.s-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.s-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 42ch;
}

/* ── GALLERY ───────────────────────────────────────────────────── */
.section.gallery { background: var(--white); padding: 108px 0; }
.section-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: var(--ink);
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg);
  position: relative;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:first-child img { min-height: 400px; }
/* Overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 35, 64, 0.18);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ── WHY US (numbered editorial list) ───────────────────────────── */
.why-section {
  background: var(--navy);
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center,
    rgba(14, 168, 182, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr 56px;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.why-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.why-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(14, 168, 182, 0.25);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: rgba(14, 168, 182, 0.6); }
.why-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.why-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 52ch;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 168, 182, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s var(--spring);
}
.why-item:hover .why-icon {
  background: rgba(14, 168, 182, 0.24);
  transform: scale(1.1);
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--teal-mid); }

/* ── LOCATION ──────────────────────────────────────────────────── */
.location-section { background: var(--white); padding: 108px 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  height: 440px;
  box-shadow: 0 8px 40px rgba(12, 35, 64, 0.1);
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-info { display: flex; flex-direction: column; gap: 28px; }
.loc-item { display: flex; align-items: flex-start; gap: 16px; }
.loc-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-icon svg { width: 18px; height: 18px; stroke: var(--teal-dk); }
.loc-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.loc-value { font-size: 0.9rem; color: var(--ink-2); line-height: 1.75; }
.loc-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
  display: inline-block;
}
.loc-phone:hover { color: var(--teal-dk); }
.loc-wa { margin-top: 8px; width: 100%; justify-content: center; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 0; color: var(--ink-2); }
.hours-table td:last-child { text-align: right; color: var(--muted); }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(14, 168, 182, 0.2) 0%,
    rgba(14, 168, 182, 0.05) 50%,
    transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1.1;
  margin: 18px 0;
}
.cta-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 44px;
}

/* CTA button with shimmer sweep on hover */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s,
    transform 0.2s var(--expo),
    box-shadow 0.2s;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  background-position: 200% center;
  transition: background-position 0s;
}
.btn-cta:hover {
  background: var(--wa-dk);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.5);
}
.btn-cta:hover::after {
  animation: shimmer 0.6s forwards;
}
.btn-cta:active { transform: scale(0.97); }

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: #06101C;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.footer-addr {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: 320px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
  display: inline-block;
}
.footer-phone:hover { color: var(--teal); }
.footer-meta {
  text-align: right;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.footer-meta a { color: rgba(255, 255, 255, 0.38); transition: color 0.2s; }
.footer-meta a:hover { color: var(--teal); }

/* ── FLOATING WA ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(37, 211, 102, 0.44);
  transition: background 0.2s, transform 0.25s var(--spring);
}
.wa-float:hover { background: var(--wa-dk); transform: scale(1.12); }
.wa-float:active { transform: scale(0.95); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  z-index: -1;
  animation: pulse-ring 2.8s ease-out infinite;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .hero-inner  { grid-template-columns: 1fr; gap: 48px; }
  .hero-right  { order: -1; }
  .hero-img-wrap { max-width: 380px; margin: 0 auto; }
  .hero-img-card { aspect-ratio: 16/9; }
  .hero-badge  { left: 0; bottom: 16px; }
  .hero-chip   { top: 16px; right: 0; }
  .hero-h1     { font-size: clamp(2.4rem, 8vw, 4rem); }
  .stats-inner { grid-template-columns: 1fr 1px 1fr; grid-template-rows: auto 1px auto; }
  .stat-sep:nth-child(4) { grid-column: 1 / -1; width: 100%; height: 1px; }
  .services-grid   { grid-template-columns: 1fr; }
  .why-item { grid-template-columns: 56px 1fr 44px; gap: 20px; padding: 32px 0; }
  .why-num  { font-size: 2.2rem; }
  .location-grid   { grid-template-columns: 1fr; }
  .map-wrap        { height: 320px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 80px 0 64px; }
  .hero-h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-img-card { aspect-ratio: 4/3; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-wa, .btn-outline { width: 100%; justify-content: center; }
  .stats-band { padding: 40px 0; }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 28px 0;
    text-align: center;
  }
  .stat-sep { display: none; }
  .section-light { padding: 80px 0; }
  .why-section, .location-section { padding: 80px 0; }
  .services-grid { gap: 14px; }
  .s-card { padding: 28px 24px; }
  .why-item { grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 0; }
  .why-icon { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .gallery-item img { min-height: 180px; }
  .gallery-item:first-child img { min-height: 220px; }
  .cta-section { padding: 96px 0; }
  .btn-cta { padding: 16px 32px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .hero-chip { display: none; }
}
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .hero-h1  { font-size: 2.1rem; }
  .hero-badge { left: 0; padding: 12px 16px; }
  .badge-num { font-size: 1.9rem; }
}
