/* ============================================================
   ROOT & RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* EDIT: change --teal to your brand color */
  --teal:        #0abfbc;
  --teal-dark:   #089a98;
  --teal-glow:   rgba(10,191,188,.35);
  --teal-soft:   rgba(10,191,188,.08);
  /* Light theme: these vars keep their original "background/card" roles,
     only the values changed from dark to light. */
  --dark:        #ffffff;
  --dark-2:      #f1f7f7;
  --dark-card:   #ffffff;
  --border:      rgba(10,191,188,.25);
  --border-soft: rgba(13,42,46,.10);
  --text:        #122a2e;
  --text-muted:  rgba(18,42,46,.55);
  --text-dim:    rgba(18,42,46,.78);
  --white:       #ffffff;
  --gold:        #e8a93c;
  --wa:          #25d366;
  --r:           24px;
  --r-lg:        32px;
  --font:        'Inter', system-ui, sans-serif;
  --max:         1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   UTILS
============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 70%, #2ad4d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 99px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--teal-dark); }
.eyebrow.light::before { background: var(--teal); }

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.section { padding: 8rem 0; }
.section-dark { background: var(--dark-2); }
.section-header { margin-bottom: 4rem; }
.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--teal);
  color: #ffffff;
  font-weight: 700;
  font-size: .97rem;
  padding: .9rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 28px var(--teal-glow);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 48px var(--teal-glow), 0 0 0 1px rgba(10,191,188,.4);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: scale(.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .97rem;
  padding: .9rem 2rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s, box-shadow .2s, background .2s;
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--teal-glow);
  background: var(--teal-soft);
}

.btn-full { width: 100%; justify-content: center; }

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  color: var(--text-dim);
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .25s, color .25s, transform .2s, box-shadow .2s;
}
.btn-google:hover {
  border-color: #4285F4;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(66,133,244,.2);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 var(--border-soft), 0 8px 40px rgba(13,42,46,.10);
  padding: .85rem 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -.3px;
}
.nav-logo strong { font-weight: 800; color: var(--teal); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--teal-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal-dark);
  transition: background .2s, border-color .2s;
}
.logo-icon:hover, .nav-logo:hover .logo-icon { background: rgba(10,191,188,.15); border-color: var(--teal); }
.logo-icon.small { width: 30px; height: 30px; font-size: .9rem; border-radius: 8px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--teal);
  border-radius: 99px;
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--teal-dark); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--teal-soft) !important;
  color: var(--teal) !important;
  padding: .55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border) !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(10,191,188,.18) !important;
  border-color: var(--teal) !important;
  color: var(--teal-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px var(--teal-glow) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  /* EDIT: swap url() for your real hero photo */
  background: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?w=1600&q=80') center/cover no-repeat;
  transform-origin: center;
  transition: transform 20s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.88) 45%,
    rgba(255,255,255,.62) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Animated teal beam */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,191,188,.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  border-radius: 50%;
  z-index: 1;
  animation: pulse-bg 8s ease-in-out infinite alternate;
}
@keyframes pulse-bg {
  from { transform: scale(1) translate(0,0); opacity: .8; }
  to   { transform: scale(1.3) translate(80px,60px); opacity: .4; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 5rem;
  width: 100%;
}

.hero-copy { flex: 1; max-width: 620px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(10,191,188,.08);
  border: 1px solid rgba(10,191,188,.2);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.75rem;
  letter-spacing: .3px;
}
.label-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 1.5rem;
}

.hero-accent {
  display: block;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo badge */
.hero-logo-wrap { flex-shrink: 0; }
.logo-badge {
  position: relative;
  width: 240px; height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(10,191,188,.2);
  animation: spin-ring 20s linear infinite;
}
.logo-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  top: -5px; left: calc(50% - 5px);
  box-shadow: 0 0 14px var(--teal);
}
.logo-ring-2 {
  inset: 20px;
  animation-duration: 30s;
  animation-direction: reverse;
  border-color: rgba(10,191,188,.1);
}
.logo-ring-2::before { width: 7px; height: 7px; top: -3.5px; left: calc(50% - 3.5px); background: rgba(10,191,188,.5); box-shadow: none; }

.logo-inner {
  position: relative;
  z-index: 2;
  width: 160px; height: 160px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  box-shadow: 0 0 60px rgba(10,191,188,.15), inset 0 0 40px rgba(10,191,188,.05);
}
.logo-tooth { font-size: 2.8rem; display: flex; color: var(--teal); }
.logo-inner strong { font-size: .85rem; font-weight: 800; color: var(--teal); letter-spacing: 1px; }

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Pills */
.hero-pills { position: absolute; z-index: 3; bottom: 8rem; right: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.pill {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .65rem 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(13,42,46,.12);
  white-space: nowrap;
}
.pill-1 { border-color: rgba(10,191,188,.3); color: var(--teal-dark); }

.float-anim { animation: float-up 5s ease-in-out infinite; }
.float-anim-slow { animation: float-up 7s ease-in-out infinite; animation-delay: -2s; }
@keyframes float-up {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  animation: fade-bob 3s ease-in-out infinite;
}
.scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  border-radius: 99px;
}
@keyframes fade-bob {
  0%,100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1; transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 2;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(10,191,188,.04), transparent);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2.5rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  position: relative;
}
.stat-item > span:first-child,
.stat-n {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.stat-item > span:nth-child(2) { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; vertical-align: super; }
.stat-l { font-size: .78rem; font-weight: 500; color: var(--text-muted); letter-spacing: .5px; }
.stat-divider { width: 1px; height: 48px; background: var(--border-soft); }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 760px;
}

.about-img-frame { position: relative; }

.img-placeholder {
  height: 520px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #e8f2f2 0%, #f0f7f7 50%, #e8f2f2 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 40%, rgba(10,191,188,.07) 0%, transparent 60%);
}
.img-placeholder small {
  font-size: .72rem;
  font-family: monospace;
  opacity: .5;
  font-weight: 400;
}

.img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--teal);
  color: #ffffff;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 40px var(--teal-glow);
  border: 3px solid #ffffff;
}
.ib-num { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.ib-txt { font-size: .7rem; font-weight: 700; opacity: .8; line-height: 1.4; }

.about-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 2rem 0 2.5rem;
}
.af-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
}
.af-check {
  width: 22px; height: 22px;
  background: rgba(10,191,188,.12);
  border: 1px solid rgba(10,191,188,.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.svc {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.svc-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(10,191,188,.12) 0%, transparent 70%);
  top: -80px; right: -80px;
  border-radius: 50%;
  transition: opacity .3s, transform .4s;
  pointer-events: none;
}
.svc:hover { border-color: rgba(10,191,188,.3); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,42,46,.12), 0 0 0 1px rgba(10,191,188,.1); }
.svc:hover .svc-glow { opacity: 1.5; transform: scale(1.4); }

/* Top shimmer line */
.svc::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transition: left .5s ease;
}
.svc:hover::before { left: 100%; }

.svc-featured {
  background: linear-gradient(135deg, rgba(10,191,188,.08) 0%, rgba(10,191,188,.03) 100%);
  border-color: rgba(10,191,188,.25);
}
.svc-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--teal);
  color: #ffffff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 999px;
}
.svc-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.svc h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .65rem;
  letter-spacing: -.3px;
}
.svc p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.svc-line {
  height: 2px;
  width: 32px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 99px;
  transition: width .3s;
}
.svc:hover .svc-line { width: 80px; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.rev {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.rev::after {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(10,191,188,.06);
  line-height: 1;
  font-family: Georgia, serif;
}
.rev:hover { transform: translateY(-5px); border-color: rgba(10,191,188,.2); box-shadow: 0 20px 50px rgba(0,0,0,.3); }

.rev-highlight {
  background: linear-gradient(145deg, rgba(10,191,188,.07) 0%, transparent 100%);
  border-color: rgba(10,191,188,.2);
}

.rev-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }

.rev p {
  color: var(--text-dim);
  font-size: .97rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
}

.rev-footer {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
}
.rev-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.rev-footer strong { display: block; font-size: .9rem; }
.rev-footer span { font-size: .78rem; color: var(--text-muted); }
.rev-g-logo { margin-left: auto; opacity: .65; }

.reviews-cta { text-align: center; }

/* ============================================================
   CONTACT
============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.contact-intro { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.7; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  margin-bottom: .85rem;
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal);
  border-radius: 99px;
  transform: scaleY(0);
  transition: transform .25s;
}
.contact-card:hover { border-color: rgba(10,191,188,.3); transform: translateX(6px); box-shadow: 0 8px 32px rgba(13,42,46,.10); background: rgba(10,191,188,.04); }
.contact-card:hover::before { transform: scaleY(1); }

.contact-card-wa:hover { border-color: rgba(37,211,102,.3); box-shadow: 0 8px 32px rgba(37,211,102,.1); }
.contact-card-wa:hover::before { background: var(--wa); }

.cc-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card strong { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .15rem; }
.contact-card span { font-size: .9rem; color: var(--text-muted); }
.cc-arrow { margin-left: auto; color: var(--teal); font-size: 1.1rem; opacity: 0; transform: translateX(-8px); transition: opacity .2s, transform .2s; }
.contact-card:hover .cc-arrow { opacity: 1; transform: translateX(0); }

.hours-box {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 1.5rem;
  margin-top: .5rem;
}
.hours-title { font-weight: 700; font-size: .85rem; margin-bottom: 1rem; color: var(--text-dim); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: var(--text-muted);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { color: var(--text); font-weight: 500; }

/* Form card */
.form-card {
  background: var(--dark-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: -.3px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.fg:last-of-type { margin-bottom: 0; }
.fg label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .3px; }

.fg input,
.fg textarea {
  background: rgba(13,42,46,.03);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
  resize: vertical;
  cursor: pointer;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(18,42,46,.35); }
.fg input:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,191,188,.12);
  background: rgba(10,191,188,.03);
}

.form-status {
  text-align: center;
  font-size: .88rem;
  color: var(--teal);
  min-height: 1.4rem;
  margin-top: .75rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #eef5f5;
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.25rem;
  font-weight: 400;
}
.footer-brand strong { font-weight: 800; color: var(--teal); }
.footer-tag { color: var(--text-muted); font-size: .9rem; margin-bottom: .75rem; }
.footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: .5rem; }
.footer-nav a { font-size: .85rem; color: var(--text-muted); transition: color .2s; cursor: pointer; }
.footer-nav a:hover { color: var(--teal); }
.footer-copy { font-size: .78rem; color: rgba(18,42,46,.35); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-delay { transition-delay: .2s; }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; padding-top: 7rem; padding-bottom: 6rem; }
  .hero-sub { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-pills { right: 1rem; bottom: 5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-media { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: .85rem 1.5rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    font-size: 1.3rem;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  /* While the menu is open: stop the page scrolling underneath, and disable the
     navbar's backdrop-filter — it turns the fixed full-screen menu into a child
     clipped to the navbar, which breaks the overlay. */
  body.menu-open { overflow: hidden; }
  .navbar.menu-open,
  .navbar.menu-open.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    box-shadow: none;
  }
  .hamburger { display: flex; }
  .logo-badge { width: 180px; height: 180px; }
  .logo-inner { width: 120px; height: 120px; }
  .hero-pills { display: none; }
  .section { padding: 5rem 0; }
  .stats-inner { gap: 2rem; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
  .about-features { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  * { cursor: auto !important; }
  .btn-primary, .btn-outline, .btn-google, .nav-cta, input, textarea, a, button { cursor: pointer !important; }
}
