/* =============================================
   HOME.CSS — Pearlhaus Dental
   Soft mint & teal spa-luxury aesthetic
   Clean whites, organic blobs, warm trust feel
   ============================================= */

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

:root {
  --teal: #2a9d8f;
  --teal-light: #52b5a9;
  --teal-pale: #e8f7f5;
  --teal-ultra: #f0fbfa;
  --mint: #a8e6cf;
  --dark: #1a2e2b;
  --dark2: #243b37;
  --white: #ffffff;
  --off: #f8fffe;
  --text: #1d3430;
  --muted: #6b8f8a;
  --border: #d4ecea;
  --gold: #e9c46a;
  --warm: #f4a261;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(42,157,143,0.1);
  padding: 14px 52px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo em { font-style: italic; color: var(--teal); font-weight: 400; }
.logo-icon { color: var(--teal); font-size: 1.1rem; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--teal); color: var(--white);
  padding: 11px 26px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(42,157,143,0.3);
}
.nav-cta:hover {
  background: var(--dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,157,143,0.2);
}
.hamburger {
  display: none; background: none; border: none;
  color: var(--dark); font-size: 1.4rem; cursor: pointer;
}
.mobile-menu {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 2000; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 18px 0; }
.mobile-menu ul li a {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--white); text-decoration: none; transition: color 0.3s;
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.mob-cta { color: var(--teal); }
.close-menu {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--teal-ultra) 0%, #f0fbfa 40%, #e8f4ff 100%);
  display: flex; align-items: center; justify-content: space-between;
  padding: 120px 80px 80px;
  gap: 60px; overflow: hidden;
  position: relative;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2a9d8f, transparent);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #a8e6cf, transparent);
  bottom: -80px; left: 20%;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #e9c46a, transparent);
  top: 40%; left: -60px;
  animation: blobFloat 7s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.05); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 600px;
  animation: heroIn 1s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--teal);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 2px 16px rgba(42,157,143,0.15);
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 700; line-height: 1.05;
  color: var(--dark); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--teal); font-weight: 400; }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted); margin-bottom: 40px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--white);
  padding: 15px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(42,157,143,0.35);
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(42,157,143,0.25); }
.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--dark);
  padding: 15px 32px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.ht-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: var(--muted);
}
.ht-item i { color: var(--teal); }
.ht-sep { color: var(--border); }

/* Hero Visual */
.hero-visual {
  position: relative; flex-shrink: 0;
  width: 400px; height: 440px;
}
.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(42,157,143,0.12);
  transition: transform 0.3s;
}
.main-card {
  position: absolute; top: 40px; left: 20px;
  width: 260px; padding: 32px;
  text-align: center;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hc-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.6rem;
  margin: 0 auto 16px;
}
.main-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--dark); margin-bottom: 6px;
}
.main-card p { font-size: 0.8rem; color: var(--muted); }
.hc-stars { margin-top: 12px; }
.hc-stars i { color: var(--gold); font-size: 0.85rem; }
.float-card {
  position: absolute;
  padding: 14px 18px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; color: var(--dark);
  white-space: nowrap;
}
.float-card i { color: var(--teal); font-size: 1rem; }
.fc1 { top: 0; right: 0; animation: cardFloat 6s ease-in-out infinite 1s; }
.fc2 { bottom: 80px; right: 20px; animation: cardFloat 7s ease-in-out infinite 0.5s; }
.fc3 { bottom: 20px; left: 0; animation: cardFloat 5.5s ease-in-out infinite 1.5s; }

/* ---- MARQUEE ---- */
.marquee-bar {
  background: var(--teal); padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track span {
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.marquee-track .sep { color: rgba(255,255,255,0.4); font-size: 0.5rem; }

/* ---- STATS ---- */
.stats-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  padding: 48px 80px;
  background: var(--dark);
  gap: 8px;
}
.stat-item { text-align: center; padding: 0 40px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; color: var(--teal-light);
}
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 0.06em; }
.stat-div { width: 1px; height: 52px; background: rgba(255,255,255,0.1); }

/* ---- SERVICES ---- */
.services { padding: 120px 80px; background: var(--off); }
.services-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); font-weight: 600; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2; color: var(--dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--teal); font-weight: 400; }
.section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  text-decoration: none; color: var(--text);
  transition: all 0.35s ease;
  display: block;
}
.sc-featured { grid-row: span 2; background: var(--dark); color: var(--white); border-color: var(--dark); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(42,157,143,0.15);
  border-color: var(--teal);
}
.sc-featured:hover { box-shadow: 0 16px 48px rgba(26,46,43,0.3); border-color: var(--teal); }
.sc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.3rem; margin-bottom: 20px;
}
.sc-featured .sc-icon { background: rgba(42,157,143,0.2); color: var(--mint); }
.service-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; margin-bottom: 10px; color: var(--dark);
}
.sc-featured h3 { color: var(--white); }
.service-card p { font-size: 0.87rem; line-height: 1.7; color: var(--muted); }
.sc-featured p { color: rgba(255,255,255,0.6); }
.sc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 0.82rem; font-weight: 600;
  color: var(--teal);
}
.sc-featured .sc-link { color: var(--mint); }
.services-footer { text-align: center; }
.btn-outline-teal {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--teal); color: var(--teal);
  padding: 14px 32px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
}
.btn-outline-teal:hover { background: var(--teal); color: white; }

/* ---- WHY ---- */
.why {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; padding: 120px 80px;
  background: var(--white);
}
.why-left {
  display: flex; align-items: center; justify-content: center;
}
.why-visual {
  position: relative; width: 100%; max-width: 440px; aspect-ratio: 1;
}
.why-blob {
  position: absolute; inset: 0; border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--teal-pale), #e0f7f4);
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%; }
}
.why-icon-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; padding: 40px; align-content: center;
}
.wig-item {
  background: var(--white);
  border-radius: 16px;
  padding: 20px; text-align: center;
  box-shadow: 0 4px 20px rgba(42,157,143,0.1);
  transition: transform 0.3s;
}
.wig-item:hover { transform: scale(1.05); }
.wig-item i { font-size: 1.6rem; color: var(--teal); display: block; margin-bottom: 8px; }
.wig-item span { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.why-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--dark); border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 10;
}
.wbf-inner {
  display: flex; align-items: center; gap: 12px;
}
.wbf-inner i { color: var(--mint); font-size: 1.2rem; }
.wbf-inner strong { display: block; font-size: 0.85rem; color: var(--white); }
.wbf-inner span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.why-right { display: flex; flex-direction: column; justify-content: center; }
.why-intro {
  font-size: 1rem; line-height: 1.8; color: var(--muted);
  margin: 20px 0 36px;
}
.why-points { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.wp-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.wp-item:last-child { border-bottom: none; }
.wp-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--teal); opacity: 0.3; flex-shrink: 0;
  width: 40px;
}
.wp-content h4 {
  font-size: 0.97rem; font-weight: 600; color: var(--dark); margin-bottom: 6px;
}
.wp-content p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: white;
  padding: 14px 30px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; width: fit-content;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(42,157,143,0.25);
}
.btn-teal:hover { background: var(--dark); transform: translateY(-2px); }

/* ---- HOME TESTI ---- */
.home-testi {
  background: var(--teal-pale);
  padding: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ht-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.ht-quote-icon { font-size: 2rem; color: var(--teal); opacity: 0.3; margin-bottom: 20px; }
.ht-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic; line-height: 1.7;
  color: var(--dark); margin-bottom: 28px;
}
.ht-author {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px;
}
.ht-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: white;
}
.ht-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.ht-author span { font-size: 0.75rem; color: var(--muted); }
.ht-stars-row { margin-top: 4px; }
.ht-stars-row i { color: var(--gold); font-size: 0.75rem; }
.ht-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  transition: gap 0.3s;
}
.ht-more:hover { gap: 14px; }

/* ---- EMERGENCY BAND ---- */
.emergency-band {
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  padding: 28px 80px;
}
.eb-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.eb-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; flex-shrink: 0;
}
.eb-text { flex: 1; }
.eb-text h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 2px; }
.eb-text p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.eb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: #c1121f;
  padding: 12px 26px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
  white-space: nowrap;
}
.eb-btn:hover { background: var(--dark); color: white; }
.eb-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5); color: white;
  padding: 12px 26px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  white-space: nowrap;
}
.eb-btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ---- TRANSFORMATIONS ---- */
.transformations { padding: 120px 80px; background: var(--off); }
.transform-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 56px;
}
.tf-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tf-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(42,157,143,0.12); }
.tf-images { display: flex; align-items: center; }
.tf-img {
  flex: 1; height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.tf-label {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; background: rgba(255,255,255,0.8);
  color: var(--text); padding: 3px 8px; border-radius: 4px;
}
.tf-smile-icon { font-size: 3rem; }
.tf-smile-icon.before { color: rgba(100,80,60,0.3); }
.tf-smile-icon.after { color: var(--teal); }
.tf-arrow {
  width: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem; background: var(--white);
}
.tf-info { padding: 20px 24px; }
.tf-info h4 { font-family: var(--font-display); font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.tf-info p { font-size: 0.78rem; color: var(--muted); }

/* ---- HOME CTA ---- */
.home-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 100px 80px;
}
.hcta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.hcta-left { color: white; }
.eyebrow.light { color: var(--mint); }
.hcta-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.2;
  margin: 16px 0 16px;
}
.hcta-left p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }
.hcta-list { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.hcta-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
.hcta-list i { color: var(--mint); font-size: 0.85rem; }
.hcta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  background: white; color: var(--dark);
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; transition: all 0.3s;
}
.btn-white:hover { background: var(--teal); color: white; }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all 0.3s;
}
.btn-ghost-white:hover { border-color: var(--mint); color: var(--mint); }

/* BOOKING PREVIEW CARD */
.hcta-right { display: flex; justify-content: center; }
.hcta-card {
  background: white; border-radius: 20px; padding: 32px;
  width: 100%; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.hcta-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  font-weight: 700; color: var(--dark);
}
.hcta-card-header i { color: var(--teal); font-size: 1.2rem; }
.hcta-times {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 24px;
}
.time-slot {
  padding: 10px; border-radius: 10px; text-align: center;
  font-size: 0.82rem; font-weight: 600; transition: all 0.2s;
}
.time-slot.available {
  background: var(--teal-pale); color: var(--teal);
  border: 1px solid var(--border); cursor: pointer;
}
.time-slot.available:hover { background: var(--teal); color: white; }
.time-slot.taken { background: #f5f5f5; color: #ccc; text-decoration: line-through; cursor: not-allowed; }
.hcta-book-btn {
  display: block; width: 100%;
  background: var(--teal); color: white;
  padding: 14px; border-radius: 12px; text-align: center;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; margin-bottom: 12px;
  transition: background 0.3s;
}
.hcta-book-btn:hover { background: var(--dark); }
.hcta-note { font-size: 0.72rem; color: var(--muted); text-align: center; }
.hcta-note i { margin-right: 4px; }

/* ---- FOOTER ---- */
.footer { background: #0f1e1c; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding: 72px 80px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--white);
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.footer-logo i { color: var(--teal-light); }
.footer-logo em { font-style: italic; color: var(--teal-light); font-weight: 400; }
.footer-brand p {
  font-size: 0.85rem; line-height: 1.8;
  color: rgba(255,255,255,0.4); margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  text-decoration: none; transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--teal-light); color: var(--teal-light); }
.footer-col h5 {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
}
.footer-col ul li a:hover { color: white; }
.footer-contact-items p {
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
  margin-bottom: 10px; display: flex; gap: 10px; line-height: 1.5;
}
.footer-contact-items i { color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 80px; text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ---- ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .nav { padding: 18px 32px; }
  .nav.scrolled { padding: 14px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { flex-direction: column; align-items: flex-start; padding: 120px 40px 60px; }
  .hero-visual { display: none; }
  .stats-strip { padding: 40px 32px; gap: 0; }
  .stat-item { padding: 0 24px; }
  .services { padding: 80px 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sc-featured { grid-column: span 2; grid-row: span 1; }
  .why { grid-template-columns: 1fr; padding: 80px 40px; }
  .why-left { display: none; }
  .home-testi { padding: 60px 40px; }
  .emergency-band { padding: 24px 32px; }
  .transformations { padding: 80px 40px; }
  .home-cta { padding: 80px 40px; }
  .hcta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding: 60px 40px 40px; }
  .footer-bottom { padding: 20px 40px; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 24px 48px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .sc-featured { grid-column: span 1; }
  .why { padding: 60px 24px; }
  .home-testi { padding: 48px 24px; }
  .emergency-band { padding: 20px 24px; }
  .eb-inner { flex-direction: column; text-align: center; }
  .transformations { padding: 60px 24px; }
  .transform-grid { grid-template-columns: 1fr; }
  .home-cta { padding: 60px 24px; }
  .stats-strip { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .stat-div { display: none; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 24px 32px; }
  .footer-bottom { padding: 16px 24px; }
}
