/* ============================================
   TeethFix.in — Dr. Shikha's Dental Clinic
   Premium dental aesthetic
   ============================================ */

:root {
  --teal-deep: #0a4d5c;
  --teal: #1a7a8c;
  --teal-light: #5fb8c9;
  --mint: #d4f1f4;
  --cream: #fdfaf5;
  --gold: #d4a574;
  --gold-soft: #e8c9a0;
  --ink: #0d2628;
  --ink-soft: #2a4a4d;
  --gray: #6b7c7e;
  --gray-soft: #a8b5b6;
  --bg: #f7faf9;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 77, 92, 0.06);
  --shadow: 0 12px 40px rgba(10, 77, 92, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 77, 92, 0.15);

  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }

.loader-tooth {
  font-size: 64px;
  color: var(--mint);
  animation: toothSpin 1.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(212, 241, 244, 0.4));
}

.loader-text {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  animation: loaderFill 1.2s ease-in-out infinite;
}

@keyframes toothSpin {
  0%, 100% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.15); }
}
@keyframes loaderFill {
  0% { width: 0%; transform: translateX(-100%); }
  50% { width: 100%; transform: translateX(0%); }
  100% { width: 100%; transform: translateX(100%); }
}

/* ============ NAV ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: rgba(247, 250, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(10, 77, 92, 0.08);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo i {
  color: var(--teal);
  font-size: 26px;
  transition: transform 0.3s ease;
}
.nav-logo:hover i { transform: rotate(-15deg); }
.nav-logo .dot { color: var(--gold); }

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--teal-deep); }
.nav-menu a:hover::after { width: 100%; }

.btn-book {
  background: var(--teal-deep);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid var(--teal-deep);
}
.btn-book:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 165, 116, 0.4);
}
.btn-book i { font-size: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(95, 184, 201, 0.15), transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(212, 165, 116, 0.10), transparent 60%),
    var(--bg);
}

.hero-bg-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 70% 40%, rgba(212, 241, 244, 0.4), transparent 50%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  width: 56%;
  max-width: 760px;
  pointer-events: none;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(10, 77, 92, 0.18));
  animation: heroImgFloat 6s ease-in-out infinite;
}
.hero-image-glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(95, 184, 201, 0.25), transparent 60%);
  z-index: -1;
  animation: heroImgGlow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes heroImgGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(10, 77, 92, 0.08);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.8s ease backwards;
  animation-delay: 0.2s;
}
.hero-badge i { color: var(--gold); }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.4;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease backwards;
  animation-delay: 0.35s;
  max-width: 720px;
}
.hero-italic {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 0.9s ease backwards;
  animation-delay: 0.5s;
}

/* Fee highlight */
.hero-fee {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fff8ee 0%, #fff 100%);
  border: 1.5px dashed var(--gold);
  padding: 14px 22px;
  border-radius: 16px;
  margin-bottom: 36px;
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
  animation: fadeInUp 0.9s ease backwards;
  animation-delay: 0.6s;
  position: relative;
}
.fee-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fee-old {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 2px;
  font-weight: 500;
}
.fee-new {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-deep);
  font-weight: 700;
  position: relative;
}
.fee-tag {
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: feePulse 2s ease-in-out infinite;
}
@keyframes feePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease backwards;
  animation-delay: 0.7s;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 30px rgba(10, 77, 92, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 77, 92, 0.35);
  background: var(--ink);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary i { font-size: 18px; }

.btn-secondary {
  background: transparent;
  color: var(--teal-deep);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(10, 77, 92, 0.2);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 77, 92, 0.06);
  animation: fadeInUp 0.9s ease backwards;
  animation-delay: 0.85s;
}
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px; top: 10%;
  height: 80%; width: 1px;
  background: rgba(10, 77, 92, 0.1);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.stat-label i { color: var(--gold); font-size: 11px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gray);
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--teal-light), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--teal-deep);
  color: var(--mint);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--teal-deep), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--teal-deep), transparent); }

.marquee-track {
  display: flex;
  gap: 56px;
  animation: scrollMarquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.01em;
}
.marquee-track span::after {
  content: '✦';
  margin-left: 56px;
  color: var(--gold);
  font-size: 0.9rem;
}
.marquee-track span i {
  color: var(--gold-soft);
  font-size: 1.2rem;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(26, 122, 140, 0.2);
  border-radius: 100px;
  background: rgba(95, 184, 201, 0.08);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 241, 244, 0.5), transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.about-card {
  position: sticky;
  top: 100px;
}

.dr-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  margin-bottom: 24px;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.6s ease;
}
.dr-portrait:hover { transform: rotateY(-3deg) rotateX(2deg); }

.portrait-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 241, 244, 0.3), transparent 50%);
  animation: portraitGlow 6s ease-in-out infinite;
}
@keyframes portraitGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.portrait-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13rem;
  color: rgba(255, 255, 255, 0.1);
}

.portrait-frame {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10, 38, 40, 0.95) 0%, transparent 100%);
  padding: 80px 28px 28px;
  color: var(--white);
}
.portrait-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.portrait-title {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid rgba(10, 77, 92, 0.08);
  transition: all 0.3s ease;
}
.about-badge:hover {
  transform: translateX(4px);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.about-badge i {
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
  font-weight: 600;
}
.about-badge span {
  font-size: 12px;
  color: var(--gray);
}

.about-content { padding-top: 8px; }
.about-content .section-eyebrow { margin-left: 0; }
.about-content .section-title { text-align: left; }

.about-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 24px 0 18px;
  line-height: 1.7;
}
.about-text {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

.qualifications {
  background: var(--bg);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
}
.qual-heading {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qual-heading i {
  color: var(--gold);
  font-size: 1.1rem;
}
.qual-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qual-list li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.qual-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--teal);
  font-size: 12px;
}
.qual-list strong { color: var(--ink); font-weight: 600; }

.about-cta { margin-top: 32px; }

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 77, 92, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal-deep), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mint), #ebfafc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--teal-deep);
  margin-bottom: 22px;
  transition: all 0.5s ease;
  position: relative;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.05);
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-icon i {
  position: relative;
  z-index: 1;
  transition: color 0.5s ease;
}
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-card > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(10, 77, 92, 0.1);
}
.service-card ul li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card ul li i {
  color: var(--teal);
  font-size: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* ============ WHY US ============ */
.why-us {
  padding: 120px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid transparent;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--teal-light);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.why-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(10, 77, 92, 0.06);
  position: absolute;
  top: 14px; right: 22px;
  line-height: 1;
  transition: color 0.4s ease;
}
.why-card:hover .why-num { color: rgba(212, 165, 116, 0.25); }

.why-icon {
  font-size: 32px;
  color: var(--teal-deep);
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.4s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(-8deg);
  color: var(--gold);
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 77, 92, 0.06);
  transition: all 0.4s ease;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.quote-icon {
  font-size: 2rem;
  color: var(--teal-light);
  opacity: 0.3;
  margin-bottom: 12px;
}
.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}
.testimonial p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 77, 92, 0.06);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
}
.t-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}
.t-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 24px 26px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 77, 92, 0.06);
  transition: all 0.3s ease;
}
.info-card:hover {
  background: var(--white);
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.info-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 8px;
}
.info-card a { color: var(--teal-deep); font-weight: 500; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold) !important;
  font-weight: 600;
}
.info-link i { font-size: 12px; }

.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 4px;
}
.info-tag.offer {
  color: var(--gold);
  background: #fff5e6;
}

.fee-card {
  background: linear-gradient(135deg, #fff8ee 0%, #fff 100%);
  border: 1.5px dashed var(--gold);
}
.fee-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px !important;
}
.fee-old-2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: #e74c3c;
  text-decoration-thickness: 2px;
}
.fee-new-2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-deep);
  font-weight: 700;
}

.contact-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 77, 92, 0.08);
}
.contact-map iframe {
  filter: contrast(1.05) saturate(1.1);
}
.map-overlay {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.map-overlay strong {
  font-size: 0.95rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-overlay strong i { color: var(--teal); }
.map-overlay a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 100px 0;
  background: var(--bg);
}
.cta-card {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--ink) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent 50%);
  animation: ctaGlow 10s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}
.cta-tooth {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  animation: floatTooth 4s ease-in-out infinite;
  position: relative;
}
@keyframes floatTooth {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.cta-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}
.cta-card h2 em {
  font-style: italic;
  color: var(--gold-soft);
}
.cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-card p strong { color: var(--gold-soft); }
.cta-card .strike { text-decoration: line-through; color: rgba(255,255,255,0.5); margin-right: 6px; font-weight: 400; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-card .btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}
.cta-card .btn-primary:hover {
  background: var(--white);
  color: var(--ink);
}
.cta-card .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.cta-card .btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer h3 i { color: var(--gold); margin-right: 6px; }
.footer h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.footer ul a:hover { color: var(--gold); }

.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer a { color: var(--gold-soft); }
.footer a:hover { color: var(--gold); }

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 16px;
}
.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ============ FLOAT WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease;
}
.float-whatsapp:hover {
  transform: scale(1.12) rotate(8deg);
}
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #25d366;
  opacity: 0.5;
  animation: floatPulse 1.6s ease-in-out infinite;
}
@keyframes floatPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-card { position: static; max-width: 480px; margin: 0 auto; }
  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { width: 90%; opacity: 0.45; right: -8%; }
  .hero-title, .hero-subtitle { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 18px; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .btn-book { padding: 9px 16px; font-size: 13px; }
  .btn-book span { display: none; }

  .hero { padding: 110px 20px 60px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 22px 18px;
  }
  .stat:nth-child(2)::after { display: none; }
  .stat:not(:last-child)::after { display: none; }

  .services-grid, .why-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .marquee-track span { font-size: 1.15rem; }
  .marquee-track span::after { margin-left: 36px; }
  .marquee-track { gap: 36px; }
  .cta-card { padding: 56px 24px; }
  .about, .services, .why-us, .testimonials, .contact, .final-cta { padding: 80px 0; }
  .qualifications { padding: 20px 22px; }
  .hero-fee { padding: 12px 16px; gap: 10px; }
  .fee-new { font-size: 1.5rem; }
  .info-card { padding: 20px; gap: 14px; }
  .info-icon { width: 44px; height: 44px; font-size: 17px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons a { width: 100%; justify-content: center; }
  .float-whatsapp { width: 54px; height: 54px; font-size: 24px; bottom: 18px; right: 18px; }
  .map-overlay { flex-direction: column; align-items: flex-start; }
}
