/* ============================================================
   SUSHIL MEDICALS - STYLESHEET
   This file controls the look of the website (colors, sizes).
   To change store information, edit js/site-data.js instead.
   ============================================================ */

:root {
  /* Brand colors - change these to re-color the whole site */
  --primary: #0f766e;        /* main teal green */
  --primary-dark: #0b5d56;
  --primary-darker: #0b3d38;
  --accent: #14b8a6;
  --whatsapp: #22c05a;
  --whatsapp-dark: #1ba14b;

  --ink: #10312d;            /* headings */
  --body: #4b635f;           /* paragraph text */
  --tint: #f0faf7;           /* light green section background */
  --tint-2: #e2f5ef;
  --line: #dcefe9;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15, 118, 110, 0.07);
  --shadow-md: 0 10px 30px rgba(15, 118, 110, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 61, 56, 0.16);

  --font-head: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ---------- icons ---------- */
[data-icon] { display: inline-flex; }
[data-icon] svg { width: 100%; height: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-icon { width: 20px; height: 20px; flex: 0 0 auto; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 192, 90, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(34, 192, 90, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--tint);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--primary-darker);
  color: #cdeae4;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
a.topbar-item:hover { color: #fff; }
.topbar-icon { width: 14px; height: 14px; color: var(--accent); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; color: var(--primary); flex: 0 0 auto; }
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
/* wide logo picture (banner shape) - let it keep its natural width */
.brand-mark.has-img { width: auto; }
.brand-mark.has-img img {
  height: 46px;
  width: auto;
  max-width: 150px;
  border-radius: 9px;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag { color: #7fd6c8; }
.brand-light .brand-mark { color: #fff; }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% -10%, var(--tint-2) 0%, transparent 60%),
    radial-gradient(700px 380px at -10% 60%, var(--tint) 0%, transparent 55%),
    linear-gradient(180deg, #f7fdfb 0%, #eef9f5 100%);
  padding: 64px 0 110px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(34, 192, 90, 0.18);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 192, 90, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 192, 90, 0.08); }
}

.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.text-gradient {
  background: linear-gradient(100deg, var(--primary) 20%, var(--accent) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.06rem;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.stat span { font-size: 0.85rem; }

/* hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 22px 12px;
  border: 1px solid var(--line);
}
.hero-illustration { width: 100%; height: auto; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  animation: float 5s ease-in-out infinite;
}
.float-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.83rem;
  color: var(--ink);
  line-height: 1.2;
}
.float-chip small { font-size: 0.72rem; color: var(--body); }
.chip-icon {
  width: 34px; height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--tint-2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.chip-1 { top: 8%; left: -26px; animation-delay: 0s; }
.chip-2 { bottom: 16%; left: -34px; animation-delay: 1.4s; }
.chip-3 { top: 34%; right: -26px; animation-delay: 2.6s; }
.chip-3 .chip-icon { background: #e5f8ec; color: var(--whatsapp); }

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

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 84px 0; }
.section-tint {
  background: linear-gradient(180deg, var(--tint) 0%, #f8fdfb 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--tint-2);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub { font-size: 1rem; }
.section-sub.left { margin-bottom: 30px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tint-2), #d3f1e9);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.service-card p { font-size: 0.93rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.why-list { display: grid; gap: 22px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--tint-2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.why-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; }

.trust-card {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-darker) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  text-align: center;
  color: #d7f0eb;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -80px; right: -80px;
}
.trust-badge {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.trust-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 12px; }
.trust-card p { font-size: 0.95rem; margin-bottom: 24px; }

/* ============================================================
   STEPS (HOW TO ORDER)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
  margin-bottom: 44px;
}
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(15, 118, 110, 0.3);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.step-card p { font-size: 0.92rem; }
.steps-cta { text-align: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about-year-badge {
  position: absolute;
  right: -14px; bottom: -18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-year-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}
.about-year-badge span { font-size: 0.8rem; opacity: 0.9; }

.about-para { margin-bottom: 16px; font-size: 0.98rem; }
.about-points {
  list-style: none;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.point-check {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--tint-2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 30px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.g-logo { width: 42px; height: 42px; flex: 0 0 auto; }
.rating-score { display: flex; align-items: center; gap: 14px; }
.rating-score > strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rating-count { font-size: 0.85rem; color: var(--body); }
.star-empty { color: #d8e2df !important; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  position: absolute;
  top: 22px; right: 24px;
  width: 26px; height: 26px;
  color: var(--tint-2);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars [data-icon] { width: 16px; height: 16px; color: #f5b301; }
.testimonial-card > p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--body);
}
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.person-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-person strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.2;
}
.testimonial-person small { font-size: 0.8rem; }

/* ============================================================
   RATE US ON GOOGLE
   ============================================================ */
.rate-section { padding-top: 0; }
.rate-band {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-darker) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  color: #d7f0eb;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.rate-band::before,
.rate-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.rate-band::before { width: 260px; height: 260px; top: -110px; left: -90px; }
.rate-band::after { width: 320px; height: 320px; bottom: -160px; right: -110px; }
.rate-band > * { position: relative; z-index: 1; }
.rate-band-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 18px;
}
.rate-band-stars [data-icon] { width: 30px; height: 30px; color: #f5b301; }
.rate-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.rate-band p {
  max-width: 520px;
  margin: 0 auto 26px;
  font-size: 0.98rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-cards { display: grid; gap: 16px; align-content: start; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--tint-2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 3px; }
.contact-card p { font-size: 0.92rem; }
.contact-card a { color: var(--primary); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary-darker);
  color: #a8cfc8;
  margin-top: 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer-about {
  margin-top: 18px;
  font-size: 0.9rem;
  max-width: 300px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-contact-line [data-icon] {
  width: 16px; height: 16px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.83rem;
  text-align: center;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(34, 192, 90, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fab-pulse 2.4s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(34, 192, 90, 0.5);
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(34, 192, 90, 0.45), 0 0 0 0 rgba(34, 192, 90, 0.35); }
  50% { box-shadow: 0 10px 26px rgba(34, 192, 90, 0.45), 0 0 0 14px rgba(34, 192, 90, 0); }
}

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

/* ============================================================
   RESPONSIVE (tablet & mobile)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .chip-1 { left: -8px; }
  .chip-2 { left: -10px; }
  .chip-3 { right: -8px; }

  .why-inner, .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .services-grid, .steps-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; }
  .topbar .topbar-right { gap: 14px; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 6%; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 44px 0 90px; }
  .hero-stats { gap: 24px; }
  .float-chip { padding: 8px 11px; }
  .float-chip strong { font-size: 0.76rem; }
  .float-chip small { font-size: 0.66rem; }
  .chip-icon { width: 28px; height: 28px; padding: 6px; }

  .section { padding: 64px 0; }
  .services-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .about-year-badge { right: 8px; bottom: -14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .whatsapp-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
