@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --rose:      #c2185b;
  --rose2:     #e91e63;
  --roseglow:  #f06292;
  --blush:     #fce4ec;
  --blush2:    #f8bbd0;
  --pearl:     #fff8f9;
  --deep:      #1a0a0f;
  --deep2:     #2d1420;
  --text:      #2d2d2d;
  --grey:      #7a5a64;
  --white:     #ffffff;
  --wa:        #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  color: var(--text);
  background: #111111;
  min-height: 100vh;
  padding: 16px 5%;
}

.page-wrapper {
  border-radius: 20px;
  overflow: clip;
  background: var(--white);
  position: relative;
}

/* ── NAVBAR ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 248, 249, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(194, 24, 91, 0.08);
  padding: 0 4%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(194, 24, 91, 0.08); }

.nav-left, .nav-right {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.nav-left a:hover, .nav-right a:hover { background: var(--blush); color: var(--rose); }
.nav-left a.active, .nav-right a.active { color: var(--rose); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  justify-content: center;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.3);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.logo-text em { font-style: italic; color: var(--rose); }
.logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}
.logo-light .logo-text { color: #fff; }
.logo-light .logo-text em { color: var(--blush2); }
.logo-light .logo-sub { color: rgba(255,255,255,0.5); }

.btn-nav {
  background: var(--rose) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: all 0.2s !important;
  font-size: 0.88rem !important;
}
.btn-nav:hover {
  background: var(--rose2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(194, 24, 91, 0.3) !important;
  background-color: unset !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 998;
  background: var(--pearl);
  flex-direction: column;
  padding: 16px 5%;
  gap: 4px;
  border-bottom: 1px solid var(--blush2);
}
.mobile-nav.open { display: flex; animation: slideDown 0.25s ease; }
.mobile-nav a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-nav a:hover { background: var(--blush); color: var(--rose); }
.mobile-nav .btn-mobile {
  margin-top: 8px;
  background: var(--wa);
  color: #fff !important;
  text-align: center;
  border-radius: 50px;
  padding: 13px 16px !important;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
/* fallback gradient if images fail */
.slide:nth-child(1) { background-color: #2d1420; }
.slide:nth-child(2) { background-color: #1a0a0f; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 10, 15, 0.88) 0%,
    rgba(194, 24, 91, 0.35) 55%,
    rgba(26, 10, 15, 0.82) 100%
  );
  z-index: 1;
}
/* decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240, 98, 146, 0.18) 0%, transparent 65%);
  top: -100px; right: -80px;
  animation: drift 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.15) 0%, transparent 65%);
  bottom: -60px; left: 5%;
  animation: drift 10s 2s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blush2);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease both;
}
.hero-badge i { color: var(--roseglow); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.12s ease both;
}
.hero h1 em { font-style: italic; color: var(--roseglow); }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin: 0 auto 38px;
  animation: fadeUp 0.7s 0.22s ease both;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

.btn-primary {
  background: var(--wa);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.dot.active {
  background: var(--roseglow);
  width: 28px;
  border-radius: 4px;
}

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
}
.trust-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(194,24,91,0.1); }
.trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--roseglow);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ── SECTION COMMON ──────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 18px;
  background: var(--blush);
  border-radius: 50px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ── SERVICES ────────────────────────────────── */
.services { padding: 100px 6%; background: var(--pearl); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(194,24,91,0.08);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--roseglow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(194,24,91,0.12);
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--rose);
  color: #fff;
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 20px rgba(194,24,91,0.3);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 22px;
}
.service-link {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--rose);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 12px; }

/* ── ABOUT SNAPSHOT ──────────────────────────── */
.about-snap {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}
.about-content .section-tag { margin-bottom: 10px; }
.about-content .section-title { text-align: left; }
.about-content p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}
.about-feature { display: flex; align-items: flex-start; gap: 10px; }
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  font-weight: 900;
  margin-top: 2px;
}
.about-feature span:last-child {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(194,24,91,0.28);
}
.btn-rose:hover {
  background: var(--rose2);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(194,24,91,0.38);
}

.about-image { position: relative; }
.about-img-card {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-placeholder {
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.2;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--rose);
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(194,24,91,0.38);
}
.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge span { font-size: 0.78rem; font-weight: 700; opacity: 0.9; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { padding: 100px 6%; background: var(--pearl); }
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px;
  border: 1px solid rgba(194,24,91,0.08);
  flex: 0 0 calc(50% - 12px);
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(194,24,91,0.1);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-card p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; color: var(--deep); font-weight: 800; }
.reviewer-info span { font-size: 0.78rem; color: var(--grey); font-weight: 600; }

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.carousel-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--blush2);
  background: var(--white);
  color: var(--rose);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(194,24,91,0.25);
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  margin: 0 6% 100px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 55%, #3d0a1e 100%);
  border-radius: 28px;
  padding: 70px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.18) 0%, transparent 65%);
  right: -100px; top: -150px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,146,0.12) 0%, transparent 65%);
  left: 5%; bottom: -80px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.cta-banner h2 em { color: var(--roseglow); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 10px; font-weight: 500; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  align-items: flex-start;
}
.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.32); }
  50% { box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.cta-phone:hover { color: #fff; }
.cta-phone i {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--deep); padding: 64px 6% 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.6fr;
  gap: 44px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 250px;
  margin-top: 10px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.social-btn {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.social-btn:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--roseglow); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--roseglow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.footer-bottom a { color: var(--roseglow); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { color: var(--blush2); }

/* ── PAGE HERO STRIP ─────────────────────────── */
.page-hero-strip {
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep2) 60%, #3d0a1e 100%);
  padding: 70px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-strip::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.2) 0%, transparent 65%);
  right: -80px; top: -100px;
  pointer-events: none;
}
.page-hero-strip::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,146,0.14) 0%, transparent 65%);
  left: 5%; bottom: -60px;
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--roseglow); font-weight: 700; }
.page-hero-strip h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.page-hero-strip h1 em { font-style: italic; color: var(--roseglow); }
.page-hero-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* ── CONTACT PAGE ────────────────────────────── */
.contact-section { padding: 80px 6%; background: var(--pearl); }

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgba(194,24,91,0.08);
  transition: all 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(194,24,91,0.1);
}
.info-card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--rose);
  margin: 0 auto 16px;
  transition: all 0.3s;
}
.info-card:hover .info-card-icon {
  background: var(--rose);
  color: #fff;
  transform: scale(1.08);
}
.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
}
.info-card p, .info-card a {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.65;
  text-decoration: none;
  display: block;
}
.info-card a { color: var(--rose); font-weight: 700; transition: color 0.2s; }
.info-card a:hover { color: var(--rose2); }

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  border: 1px solid rgba(194,24,91,0.08);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form-wrap h3 em { font-style: italic; color: var(--rose); }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--grey); margin-bottom: 30px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--blush2);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  background: var(--pearl);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(194,24,91,0.09);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 128px; }
.btn-wa-submit {
  width: 100%;
  background: var(--wa);
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.btn-wa-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.5);
  animation: none;
}

.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(194,24,91,0.08);
  background: var(--blush);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: saturate(0.9);
}

/* ── COMING SOON CARD ────────────────────────── */
.coming-soon-wrap {
  padding: 80px 6% 100px;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.coming-soon-card {
  background: var(--white);
  border-radius: 28px;
  padding: 80px 64px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  border: 1px solid rgba(194,24,91,0.09);
  position: relative;
  overflow: hidden;
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,0.06) 0%, transparent 65%);
  right: -60px; top: -60px;
  animation: breathe 4s ease-in-out infinite;
}
.coming-soon-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,146,0.06) 0%, transparent 65%);
  left: -30px; bottom: -30px;
  animation: breathe 4s 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0.4; }
}
.coming-icon {
  width: 84px; height: 84px;
  border-radius: 24px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--rose);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.coming-soon-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.coming-soon-card h2 em { font-style: italic; color: var(--rose); }
.coming-soon-card p {
  font-size: 0.98rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.coming-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.coming-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose);
  animation: blink 1.5s ease-in-out infinite;
}
.coming-dots span:nth-child(2) { animation-delay: 0.25s; background: var(--roseglow); }
.coming-dots span:nth-child(3) { animation-delay: 0.5s; background: var(--blush2); }
@keyframes blink {
  0%, 100% { opacity: 0.3; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.25); }
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}
.btn-back:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194,24,91,0.25);
}

/* ── DOCTORS SECTION ─────────────────────────── */
.doctors-section {
  padding: 100px 6%;
  background: var(--pearl);
}
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.doctor-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(194,24,91,0.08);
  transition: all 0.3s;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(194,24,91,0.12);
}
.doctor-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blush);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-photo-wrap img { transform: scale(1.04); }
.doctor-photo-fallback {
  font-size: 5rem;
  color: var(--rose);
  opacity: 0.2;
}
.doctor-body { padding: 30px 28px; }
.doctor-name-wrap { margin-bottom: 18px; }
.doctor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.doctor-spec {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.doctor-quals { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.qual-label {
  flex-shrink: 0;
  background: var(--rose);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  margin-top: 1px;
}
.qual-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.55;
  font-weight: 500;
}
.doctor-divider {
  border: none;
  border-top: 1px solid var(--blush2);
  margin: 0 0 22px;
}
.doctor-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.doctor-point { display: flex; align-items: flex-start; gap: 14px; }
.point-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 0.8rem;
  margin-top: 2px;
  transition: all 0.25s;
}
.doctor-card:hover .point-icon { background: var(--rose); color: #fff; }
.doctor-point p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  margin: 0;
}
.doctor-point p strong { color: var(--deep); font-weight: 800; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dtag {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ── CLINIC GALLERY ──────────────────────────── */
.clinic-gallery {
  padding: 100px 6%;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--blush);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(194,24,91,0);
  transition: background 0.3s;
  border-radius: 14px;
}
.gallery-item:hover::after { background: rgba(194,24,91,0.12); }

/* ── SERVICES PAGE ───────────────────────────── */
.services-section {
  padding: 72px 6% 60px;
  background: var(--white);
}
.services-section-header {
  text-align: center;
  margin-bottom: 42px;
}
.svc-label {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.svc-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
}
.svc-heading em { font-style: italic; color: var(--rose); }
.svc-sub {
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.svc-card {
  background: var(--pearl);
  border: 1px solid rgba(194,24,91,0.08);
  border-radius: 20px;
  padding: 26px 20px;
  transition: all 0.25s;
}
.svc-card:hover {
  border-color: rgba(194,24,91,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(194,24,91,0.09);
}
.svc-icon {
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--rose);
  margin-bottom: 14px;
  transition: all 0.25s;
}
.svc-card:hover .svc-icon {
  background: var(--rose);
  color: #fff;
}
.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.35;
}
.svc-card p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── TINY TOOTH BUDS SECTION ─────────────────── */
.ttb-section {
  background: #f0fdf9;
  padding: 72px 6% 80px;
  position: relative;
  overflow: hidden;
}
.ttb-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 65%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.ttb-inner { position: relative; z-index: 1; }
.ttb-header { text-align: center; margin-bottom: 42px; }
.ttb-badge {
  display: inline-block;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.ttb-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 12px;
}
.ttb-heading em { font-style: italic; color: #0d9488; }
.ttb-sub {
  font-size: 0.95rem;
  color: #4a7c72;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}
.ttb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.ttb-card {
  background: #fff;
  border: 1px solid rgba(13,148,136,0.12);
  border-radius: 20px;
  padding: 26px 20px;
  transition: all 0.25s;
}
.ttb-card:hover {
  border-color: rgba(13,148,136,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,148,136,0.09);
}
.ttb-icon {
  width: 48px; height: 48px;
  background: #ccfbf1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0d9488;
  margin-bottom: 14px;
  transition: all 0.25s;
}
.ttb-card:hover .ttb-icon {
  background: #0d9488;
  color: #fff;
}
.ttb-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
  line-height: 1.35;
}
.ttb-card p {
  font-size: 0.82rem;
  color: #4a7c72;
  line-height: 1.7;
}

/* ── CONTACT ADDRESS CARDS ───────────────────── */
.ttb-map-icon { background: #ccfbf1 !important; color: #0d9488 !important; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .info-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ttb-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { padding: 0; }
  .page-wrapper { border-radius: 0; }
  nav { padding: 0 5%; grid-template-columns: auto 1fr; }
  .nav-left, .nav-right { display: none; }
  .logo { justify-content: flex-start; }
  .hamburger { display: flex; margin-left: auto; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.8rem; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 18px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child, .trust-item:nth-last-child(2) { border-bottom: none; }
  .services { padding: 70px 5%; }
  .services-section { padding: 50px 5%; }
  .ttb-section { padding: 50px 5%; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .ttb-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-snap { grid-template-columns: 1fr; padding: 70px 5%; gap: 50px; }
  .about-features { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .testimonials { padding: 70px 5%; }
  .review-card { flex: 0 0 calc(100% - 0px); }
  .cta-banner { margin: 0 5% 70px; flex-direction: column; text-align: center; padding: 50px 6%; }
  .cta-actions { align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-main { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .coming-soon-card { padding: 56px 32px; }
  .contact-form-wrap { padding: 32px 24px; }
  .doctors-section { padding: 70px 5%; }
  .doctors-grid { grid-template-columns: 1fr; }
  .clinic-gallery { padding: 70px 5%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; }
  .info-cards { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .ttb-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-socials { gap: 6px; }
  .section-title { font-size: 1.7rem; }
  .coming-soon-card { padding: 44px 22px; }
}
