/* ═══════════════════════════════════════════════
   DİŞ HEKİMİ PREMIUM TEMPLATE — GLOBAL STYLES
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Brand Colors — Clean Premium */
  --navy: #093740;
  --navy-light: #0B4350;
  --navy-surface: #0E5563;
  --copper: #A0785A;
  --copper-light: #BFA08A;
  --copper-bright: #D4B89C;
  --copper-dark: #8A6548;

  /* Neutrals */
  --bg: #F2F2F0;
  --bg-light: #F8F8F6;
  --bg-warm: #EAEAE6;
  --sand: #E0DED8;
  --warm: #D0CEC6;
  --white: #FFFFFF;
  --text: #093740;
  --text-sub: #2A5A63;
  --text-muted: #5A8A93;
  --border: rgba(9,55,64,0.08);
  --border-light: rgba(255,255,255,0.1);

  /* Typography */
  --font-h: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 20px; --s6: 24px; --s7: 28px; --s8: 32px;
  --s10: 40px; --s12: 48px; --s14: 56px; --s16: 64px;
  --s20: 80px; --s24: 96px; --s32: 128px;

  /* Border Radius */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 100px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,0.04);
  --sh-md: 0 4px 24px rgba(0,0,0,0.06);
  --sh-lg: 0 12px 40px rgba(0,0,0,0.08);
  --sh-xl: 0 20px 60px rgba(0,0,0,0.1);
  --sh-copper: 0 8px 30px rgba(160,120,90,0.3);

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* ── Section spacing ── */
.section {
  padding: var(--s24) 0;
  position: relative;
}

/* ── Labels / Tags ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--s4);
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 560px;
}

.section-desc--light {
  color: rgba(255,255,255,0.55);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--r-full);
  transition: all 0.4s var(--ease);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--sh-copper);
}
.btn-primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(160,120,90,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

/* ── Scroll Animations ── */

/* Base reveal — slide up + fade + subtle blur */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  filter: blur(3px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  filter: blur(3px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

/* Scale up + fade */
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Clip reveal — curtain wipe from bottom */
.reveal-clip {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease);
  will-change: clip-path;
}
.reveal-clip.visible {
  clip-path: inset(0 0 0 0);
}

/* Rotate in — subtle 3D entrance */
.reveal-rotate {
  opacity: 0;
  transform: perspective(800px) rotateX(8deg) translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal-rotate.visible {
  opacity: 1;
  transform: perspective(800px) rotateX(0) translateY(0);
}

/* Section transitions — smooth depth between sections */
.section {
  position: relative;
}

/* Magnetic hover effect for buttons */
.btn {
  transition: all 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

/* Card lift — universal micro-interaction */
[data-svc]:hover,
.tm-card:hover,
.cnt-card:hover,
.ba-card:hover {
  transition-timing-function: var(--ease);
}

/* Smooth image loading */
img {
  transition: opacity 0.4s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: var(--s6) 0;
  transition: all 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — bold, typographic */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
}

.nav-logo-img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.nav-logo-mark {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.3s ease;
}

.nav-logo-divider {
  width: 1.5px;
  height: 24px;
  background: var(--copper);
  opacity: 0.6;
}

.nav-logo-sub {
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s7);
}

.nav-link {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  width: 100%;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s5);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--copper-bright);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

/* CTA Button — premium, not pill */
.nav-cta {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: var(--copper);
  padding: 12px 28px;
  border-radius: 8px;
  letter-spacing: -0.01em;
  transition: all 0.35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}

.nav-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(160,120,90,0.3);
}

/* Scroll state color overrides */
.navbar.scrolled .nav-link {
  color: rgba(255,255,255,0.6);
}
.navbar.scrolled .nav-link:hover {
  color: var(--white);
}

/* Burger + MENÜ label */
.nav-burger {
  display: none;
  align-items: center;
  gap: var(--s3);
  cursor: pointer;
  padding: 8px 0;
}

.nav-burger-label {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}

.nav-burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.nav-burger-lines span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.nav-burger-lines span:nth-child(2) {
  width: 65%;
  margin-left: auto;
  transition: all 0.3s var(--ease);
}

.nav-burger:hover .nav-burger-lines span:nth-child(2) {
  width: 100%;
}

.nav-burger.active .nav-burger-label {
  opacity: 0;
}
.nav-burger.active .nav-burger-lines span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active .nav-burger-lines span:nth-child(2) { opacity: 0; width: 100%; }
.nav-burger.active .nav-burger-lines span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu — full screen takeover */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  padding: var(--s32) var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  display: none;
}

/* Menu links — büyük, ortalı, cesur */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s12);
}

.mobile-menu .nav-link {
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  display: block;
  padding: var(--s2) var(--s4);
  letter-spacing: -0.03em;
  text-align: center;
  transition: all 0.3s var(--ease);
  border: none;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:active {
  color: var(--white);
  transform: translateX(8px);
}

/* Alt bilgi — CTA ve telefon */
.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  width: 100%;
  max-width: 320px;
}

.mobile-menu .mobile-cta .nav-cta {
  justify-content: center;
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  border-radius: 10px;
  text-align: center;
}

.mobile-menu .mobile-cta .nav-phone {
  justify-content: center;
  font-size: 1rem;
  padding: var(--s3) 0;
  color: rgba(255,255,255,0.4);
}

.mobile-menu .mobile-cta .nav-phone svg {
  color: var(--copper);
}

/* Close button inside mobile menu */
.mobile-menu-close {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu-close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}

.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }

.mobile-menu-close:hover span {
  background: var(--white);
}

/* ═══════════════════════════════════════════════
   HERO — Cinematic Video Background
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle dark vignette — video stays visible, text stays readable */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

/* Content */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--s32) 0 var(--s20);
}

/* Üst label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: var(--s8);
  animation: heroIn 0.8s var(--ease) both;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}

/* Ana başlık — devasa, cesur */
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: var(--s7);
  animation: heroIn 0.8s var(--ease) 0.1s both;
}

.hero-title .hero-title-line {
  display: block;
}

.hero-title .highlight {
  color: var(--copper-bright);
  font-style: italic;
}

/* Alt açıklama */
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto var(--s10);
  animation: heroIn 0.8s var(--ease) 0.2s both;
}

/* Butonlar */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s14);
  animation: heroIn 0.8s var(--ease) 0.3s both;
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  animation: heroIn 0.8s var(--ease) 0.45s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--copper);
  flex-shrink: 0;
}

.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.12);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  animation: heroIn 0.8s var(--ease) 0.6s both;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--copper-bright);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ═══════════════════════════════════════════════
   IMPACT STRIP — Stats + Marquee combined
   ═══════════════════════════════════════════════ */
.impact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture */
.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.impact .container {
  position: relative;
  z-index: 1;
}

/* Stats row */
.impact-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s16) 0;
  gap: 0;
}

.impact-stat {
  flex: 1;
  text-align: center;
  padding: var(--s6) var(--s4);
}

.impact-stat-number {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--s2);
}

.impact-stat-label {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Bakır dikey ayırıcı */
.impact-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--copper), transparent);
  opacity: 0.4;
  flex-shrink: 0;
}

/* Marquee — outlined text, premium */
.impact-marquee {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: var(--s8) 0;
  overflow: hidden;
  overflow: hidden;
}

.impact-marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.impact-marquee-item {
  display: flex;
  align-items: center;
  gap: var(--s8);
  padding: 0 var(--s8);
  white-space: nowrap;
}

.impact-marquee-text {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.25);
  transition: all 0.4s ease;
}

.impact-marquee-track:hover .impact-marquee-text {
  color: rgba(255,255,255,0.4);
}

.impact-marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .impact-stats {
    flex-wrap: wrap;
    padding: var(--s10) 0;
  }
  .impact-stat {
    flex: 0 0 50%;
    padding: var(--s4) var(--s2);
  }
  .impact-divider {
    display: none;
  }
  .impact-stat-number {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .impact-stat {
    flex: 0 0 50%;
  }
}

/* ═══════════════════════════════════════════════
   SERVICES — Interactive Showcase
   ═══════════════════════════════════════════════ */
.services {
  background: var(--bg);
}

.services-header {
  margin-bottom: var(--s12);
}

.services-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s6);
  flex-wrap: wrap;
}

/* ══════════════════════════════════
   FEATURED CARD — horizontal
   ══════════════════════════════════ */
.svc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all .5s var(--ease);
  position: relative;
  margin-bottom: var(--s8);
}
.svc-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}
.svc-featured::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-bright));
  transition: width .5s var(--ease);
}
.svc-featured:hover::after { width: 100%; }

.svc-featured-img {
  position: relative; overflow: hidden; min-height: 320px;
}
.svc-featured-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.svc-featured:hover .svc-featured-img img {
  transform: scale(1.05);
}
.svc-featured-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(10,17,24,.3) 100%);
  pointer-events: none;
}

.svc-featured-body {
  padding: var(--s10) var(--s10) var(--s8);
  display: flex; flex-direction: column; justify-content: center;
}
.svc-featured-body h3 {
  font-family: var(--font-h);
  font-size: 1.6rem; font-weight: 800; margin-bottom: var(--s3);
  color: var(--navy); letter-spacing: -.02em;
}
.svc-featured-body .svc-desc {
  font-size: 1rem; line-height: 1.75; margin-bottom: var(--s5);
  color: var(--text-sub); max-width: 440px;
}
.svc-featured-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: var(--s4);
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════
   SHARED — icons, nums, toggles
   ══════════════════════════════════ */
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5);
  transition: all .4s var(--ease);
  box-shadow: var(--sh-sm);
}
.svc-icon--copper {
  background: rgba(160,120,90,.08); color: var(--copper);
  border: 1px solid rgba(160,120,90,.12);
}
.svc-icon--navy {
  background: rgba(13,27,42,.06); color: var(--navy);
  border: 1px solid rgba(13,27,42,.08);
}
.svc-icon svg { width: 24px; height: 24px; }

.svc-featured:hover .svc-icon--copper {
  background: var(--copper); color: #fff; box-shadow: var(--sh-copper);
  transform: rotate(-6deg) scale(1.08);
}

.svc-num {
  position: absolute; top: var(--s4); left: var(--s4);
  font-family: var(--font-h); font-size: .7rem; font-weight: 800;
  letter-spacing: 1.5px;
  padding: var(--s1) var(--s3);
  border-radius: 100px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(160,120,90,.2); color: var(--copper-bright);
}

.svc-stat {
  display: flex; align-items: baseline; gap: var(--s2);
  padding: var(--s3) var(--s4);
  border-radius: var(--r);
  background: rgba(160,120,90,.04);
}
.svc-stat-num {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 800;
  color: var(--copper); line-height: 1;
}
.svc-stat-label {
  font-size: .7rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
}

.svc-toggle {
  display: flex; align-items: center; gap: var(--s2);
  font-family: var(--font-h);
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  transition: color .3s var(--ease);
  margin-top: auto; cursor: pointer;
}
.svc-toggle svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.svc-toggle.open svg { transform: rotate(90deg); }

.svc-featured:hover .svc-toggle { color: var(--copper); }

/* Detail expand */
.svc-detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s ease;
}
.svc-detail.active {
  max-height: 300px;
  opacity: 1;
}

.svc-subs {
  display: flex; flex-direction: column; gap: var(--s2);
  padding-top: var(--s4); border-top: 1px solid var(--border);
  margin-bottom: var(--s4); list-style: none;
}
.svc-subs li {
  display: flex; align-items: center; gap: var(--s2);
  font-family: var(--font-b);
  font-size: .82rem; color: var(--text-sub); font-weight: 500;
}
.svc-subs li svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--copper); }

/* ══════════════════════════════════
   BENTO GRID — compact cards
   ══════════════════════════════════ */
.svc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s5);
}

/* First card tall — span 2 rows */
.svc-bento .svc-card:nth-child(1) {
  grid-row: 1 / 3;
}
.svc-bento .svc-card:nth-child(1) .svc-card-img {
  height: 220px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
  transition: all .5s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

/* Bottom line on hover */
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; transition: width .5s var(--ease);
}
.svc-card--copper::after { background: linear-gradient(90deg, var(--copper), var(--copper-bright)); }
.svc-card--navy::after { background: linear-gradient(90deg, var(--navy), var(--navy-surface)); }
.svc-card:hover::after { width: 100%; }

/* Card image */
.svc-card-img {
  position: relative; height: 150px;
  overflow: hidden; flex-shrink: 0;
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.08);
}
.svc-card-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,17,24,.4) 100%);
  pointer-events: none;
}

/* Icon badge — overlaps image bottom */
.svc-card-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin: -24px 0 0 var(--s5);
  position: relative; z-index: 2;
  box-shadow: var(--sh-md);
  transition: all .4s var(--ease);
}
.svc-card-icon.svc-icon--copper {
  background: var(--white); color: var(--copper);
  border: 1px solid rgba(160,120,90,.12);
}
.svc-card-icon.svc-icon--navy {
  background: var(--white); color: var(--navy);
  border: 1px solid rgba(13,27,42,.08);
}
.svc-card--copper:hover .svc-card-icon {
  background: var(--copper); color: #fff; border-color: var(--copper);
  box-shadow: var(--sh-copper); transform: rotate(-6deg) scale(1.08);
}
.svc-card--navy:hover .svc-card-icon {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 8px 30px rgba(13,27,42,.25); transform: rotate(-6deg) scale(1.08);
}

/* Card body */
.svc-card-body {
  padding: var(--s3) var(--s5) var(--s5);
  flex: 1; display: flex; flex-direction: column;
}
.svc-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 700; margin-bottom: var(--s2);
  color: var(--navy);
}
.svc-card .svc-desc {
  font-size: .85rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: var(--s3);
}

.svc-card--copper:hover .svc-toggle { color: var(--copper); }
.svc-card--navy:hover .svc-toggle { color: var(--navy); }

/* Expanded glow */
.svc-card.expanded {
  border-color: transparent;
  box-shadow: var(--sh-lg);
}
.svc-card.expanded.svc-card--copper {
  box-shadow: 0 12px 40px rgba(160,120,90,.12);
}
.svc-card.expanded.svc-card--navy {
  box-shadow: 0 12px 40px rgba(13,27,42,.1);
}

/* Bottom CTA bar */
.svc-bottom {
  margin-top: var(--s12);
  display: flex; align-items: center; justify-content: center; gap: var(--s6);
  padding: var(--s8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.svc-bottom p {
  font-family: var(--font-h);
  font-weight: 600; color: var(--navy); font-size: .95rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc-featured { grid-template-columns: 1fr 1fr; }
  .svc-featured-img { min-height: 260px; }
  .svc-bento { grid-template-columns: 1fr 1fr; }
  .svc-bento .svc-card:nth-child(1) { grid-row: auto; }
  .svc-bento .svc-card:nth-child(1) .svc-card-img { height: 150px; }
  .svc-bento .svc-card:nth-child(5) { grid-column: 1 / -1; }
  .svc-bento .svc-card:nth-child(5) .svc-card-img { height: 180px; }
}

@media (max-width: 640px) {
  .svc-featured { grid-template-columns: 1fr; }
  .svc-featured-img { min-height: 200px; }
  .svc-featured-body { padding: var(--s6); }
  .svc-featured-body h3 { font-size: 1.3rem; }
  .svc-featured-body .svc-desc { font-size: .9rem; }

  .svc-bento { grid-template-columns: 1fr; }
  .svc-bento .svc-card:nth-child(5) { grid-column: auto; }

  .svc-card-img { height: 140px; }
  .svc-bottom { flex-direction: column; gap: var(--s4); text-align: center; }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--gold);
  border-radius: var(--r);
  z-index: 1;
  opacity: 0.4;
}

.about-float-badge {
  position: absolute;
  bottom: var(--s6);
  right: var(--s6);
  background: rgba(11,26,43,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s3);
  border: 1px solid rgba(255,255,255,0.08);
  animation: float 5s ease-in-out infinite;
  z-index: 2;
}

.about-float-badge-number {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-float-badge-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
  max-width: 100px;
}

.about-content {
  padding: var(--s4) 0;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin: var(--s7) 0;
}

.about-tag {
  padding: 8px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.3s var(--ease);
}

.about-tag:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.about-doctor {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}

.about-doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.about-doctor-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.about-doctor-title {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   FEATURES / WHY US
   ═══════════════════════════════════════════════ */
.features {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Full-width header */
.feat-head {
  text-align: left;
  max-width: 100%;
  margin-bottom: var(--s4);
}

.feat-head .section-title {
  max-width: 100%;
}

.feat-head .section-desc {
  max-width: 100%;
}

/* Radial layout */
.feat-radial {
  display: grid;
  grid-template-columns: 1fr 440px 1fr;
  align-items: center;
  gap: 0;
  margin-top: var(--s10);
  padding: var(--s10) 0;
}

/* Columns */
.feat-col {
  display: flex;
  flex-direction: column;
  gap: var(--s10);
}

/* Each feature item */
.feat-item {
  display: flex;
  align-items: center;
  gap: var(--s5);
  position: relative;
  padding: var(--s4) var(--s5);
  border-radius: var(--r);
  transition: all 0.4s var(--ease);
}

.feat-item:hover {
  background: rgba(255,255,255,0.7);
  box-shadow: var(--sh-md);
}

/* Right-aligned items (left column) */
.feat-item--right {
  text-align: right;
  justify-content: flex-end;
}

/* Left-aligned items (right column) */
.feat-item--left {
  text-align: left;
}

.feat-item-text h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.feat-item-text p {
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.feat-item--right .feat-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Icon circle */
.feat-item-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: all 0.4s var(--ease);
}

.feat-item-icon svg {
  color: var(--copper);
  transition: color 0.3s ease;
}

.feat-item:hover .feat-item-icon {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: var(--sh-copper);
  transform: scale(1.12);
}

.feat-item:hover .feat-item-icon svg {
  color: var(--white);
}

/* Center tooth */
.feat-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s8);
}

.feat-center img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.1));
  animation: featFloat 4s ease-in-out infinite;
}

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

/* ── Responsive ── */
@media (max-width: 1200px) {
  .feat-radial {
    grid-template-columns: 1fr 300px 1fr;
  }
  .feat-col {
    gap: var(--s8);
  }
}

@media (max-width: 1024px) {
  .feat-radial {
    grid-template-columns: 1fr 240px 1fr;
  }
  .feat-item-text h3 {
    font-size: 1.05rem;
  }
  .feat-item-text p {
    font-size: 0.82rem;
    max-width: 220px;
  }
  .feat-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

@media (max-width: 768px) {
  .feat-radial {
    grid-template-columns: 1fr;
    gap: var(--s6);
    padding: var(--s6) 0;
  }
  .feat-center {
    order: -1;
    padding: 0;
    margin: 0 auto var(--s4);
  }
  .feat-center img {
    max-width: 240px;
  }
  .feat-col {
    gap: var(--s4);
  }
  .feat-item--right {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  .feat-item--right .feat-item-text {
    align-items: flex-start;
  }
  .feat-item-text p {
    max-width: 100%;
  }
  .feat-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .feat-center img {
    max-width: 200px;
  }
  .feat-item {
    padding: var(--s3);
  }
  .feat-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .feat-item-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Stats section removed — merged into Impact Strip */

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials {
  background: var(--bg-light);
}

/* Top header row */
.tm-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s6);
  margin-bottom: var(--s12);
}

.tm-top-left .section-title {
  margin-top: var(--s2);
}

/* Google badge */
.tm-google {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s3) var(--s5);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
}

.tm-google-score {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.tm-google-stars {
  display: flex;
  gap: 1px;
}

.tm-google-stars svg {
  width: 14px;
  height: 14px;
  fill: #FBBC05;
}

.tm-google-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Bento grid */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s5);
}

.tm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.tm-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--copper);
  opacity: 0.1;
  position: absolute;
  top: var(--s3);
  right: var(--s5);
  line-height: 1;
}

/* Featured card spans 2 rows */
.tm-card--featured {
  grid-row: span 2;
  padding: var(--s8);
  background: var(--navy);
  border-color: transparent;
}

.tm-card--featured::before {
  color: var(--white);
  opacity: 0.08;
  font-size: 5rem;
}

.tm-card--featured .tm-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.85;
  flex: 1;
}

.tm-card--featured .tm-stars svg {
  fill: var(--copper);
}

.tm-card--featured .tm-name {
  color: var(--white);
}

.tm-card--featured .tm-treatment {
  color: rgba(255,255,255,0.45);
}

.tm-card--featured .tm-avatar {
  background: linear-gradient(135deg, var(--copper), #b8956a);
}

/* Stars */
.tm-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s3);
}

.tm-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

/* Text */
.tm-text {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: var(--s5);
  font-style: italic;
  flex: 1;
}

/* Author */
.tm-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tm-card--featured .tm-author {
  border-color: rgba(255,255,255,0.1);
}

.tm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3050);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--white);
  flex-shrink: 0;
}

.tm-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}

.tm-treatment {
  font-size: 0.75rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════
   GALLERY / BEFORE-AFTER
   ═══════════════════════════════════════════════ */
.gallery {
  background: var(--navy);
  overflow: hidden;
}

/* Before / After grid */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  margin-top: var(--s14);
}

.ba-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Slider container */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-after {
  position: relative;
  width: 100%;
  height: 100%;
}

.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: var(--s4);
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ba-label--before {
  left: var(--s4);
  background: rgba(0,0,0,0.5);
  color: var(--white);
}

.ba-label--after {
  right: var(--s4);
  background: rgba(255,255,255,0.85);
  color: var(--navy);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 4;
  pointer-events: none;
}

.ba-handle-line {
  position: absolute;
  inset: 0;
  width: 3px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 0 3px rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--navy);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ba-handle-knob:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 4px rgba(255,255,255,0.4);
}

.ba-handle-knob svg {
  flex-shrink: 0;
}

/* Caption */
.ba-caption {
  padding: var(--s5) var(--s6);
}

.ba-caption h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.ba-caption p {
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq {
  background: var(--navy);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s16);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar .section-label {
  color: var(--gold-light);
}

.faq-sidebar .section-title {
  color: var(--white);
}

.faq-sidebar .section-desc {
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s8);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.12);
}

.faq-item.active {
  border-color: rgba(200,169,126,0.3);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  width: 100%;
  text-align: left;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq-question-number {
  font-size: 0.78rem;
  color: var(--copper);
  font-weight: 700;
  min-width: 28px;
}

.faq-question-icon {
  margin-left: auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-question-icon {
  background: var(--copper);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-question-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-text {
  padding: 0 var(--s6) var(--s6) calc(var(--s6) + 32px);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  background: var(--bg);
}

.cnt-header {
  margin-bottom: var(--s10);
}

.cnt-grid {
  position: relative;
}

/* Map */
.cnt-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border);
}

.cnt-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8) contrast(1.05) brightness(1.02);
}

/* Cards row — overlapping bottom of map */
.cnt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: calc(-1 * var(--s16));
  position: relative;
  z-index: 2;
  padding: 0 var(--s6);
}

.cnt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}

.cnt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.cnt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(160,120,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s1);
  transition: all 0.4s var(--ease);
}

.cnt-card-icon svg {
  color: var(--copper);
}

.cnt-card:hover .cnt-card-icon {
  background: var(--copper);
  transform: scale(1.08);
}

.cnt-card:hover .cnt-card-icon svg {
  color: var(--white);
}

/* WhatsApp card special */
.cnt-card--wa {
  background: var(--navy);
  border-color: transparent;
}

.cnt-card--wa .cnt-card-label {
  color: rgba(255,255,255,0.5);
}

.cnt-card--wa .cnt-card-value {
  color: var(--white);
}

.cnt-card-icon--wa {
  background: rgba(37,211,102,0.12);
}

.cnt-card-icon--wa svg {
  color: #25D366;
}

.cnt-card--wa:hover .cnt-card-icon--wa {
  background: #25D366;
}

.cnt-card--wa:hover .cnt-card-icon--wa svg {
  color: var(--white);
}

.cnt-card--wa .cnt-card-arrow svg {
  color: rgba(255,255,255,0.3);
}

.cnt-card-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.cnt-card-value {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cnt-card-arrow {
  position: absolute;
  top: var(--s5);
  right: var(--s5);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}

.cnt-card-arrow svg {
  color: var(--copper);
}

.cnt-card:hover .cnt-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 0 0 var(--s8);
}

/* Footer CTA strip */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  padding: var(--s10) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--s12);
}

.footer-cta h3 {
  font-family: var(--font-h);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.footer-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-cta-actions {
  display: flex;
  gap: var(--s3);
  flex-shrink: 0;
}

.btn-outline--light {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.15);
}

.btn-outline--light:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--s10);
  padding-bottom: var(--s10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: var(--s4) 0 var(--s5);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--s2);
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-social:hover svg {
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--copper);
}

/* Contact items in footer */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--copper);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s6);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}

.footer-credit a {
  color: var(--copper);
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   FLOATING CTA — Desktop: minimal / Mobile: app bar
   ═══════════════════════════════════════════════ */

/* Desktop — sağ alt köşe WhatsApp */
.floating-cta-desktop {
  position: fixed;
  bottom: var(--s8);
  right: var(--s8);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
}

.floating-wa {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: all 0.3s var(--ease);
  position: relative;
}

.floating-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.25);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Mobile — app bottom bar */
.floating-cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta-desktop {
    display: none;
  }

  .floating-cta-mobile {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--s3) var(--s4);
    padding-bottom: calc(var(--s3) + env(safe-area-inset-bottom, 0px));
    justify-content: space-around;
    align-items: center;
    gap: var(--s2);
  }

  .app-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    flex: 1;
    padding: 6px 0;
    border-radius: var(--r-sm);
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .app-bar-item:active {
    transform: scale(0.94);
  }

  .app-bar-item svg {
    width: 22px;
    height: 22px;
    transition: color 0.25s ease;
  }

  .app-bar-item span {
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
  }

  /* Telefon */
  .app-bar-item--phone svg { color: var(--white); stroke: currentColor; fill: none; }
  .app-bar-item--phone span { color: rgba(255,255,255,0.5); }

  /* WhatsApp */
  .app-bar-item--wa svg { color: #25D366; fill: #25D366; }
  .app-bar-item--wa span { color: rgba(255,255,255,0.5); }

  /* Randevu — vurgulu */
  .app-bar-item--cta {
    background: var(--copper);
    border-radius: 12px;
    padding: 10px 0;
    flex: 1.3;
  }
  .app-bar-item--cta svg { color: var(--white); stroke: currentColor; fill: none; }
  .app-bar-item--cta span { color: var(--white); font-size: 0.7rem; }

  /* Konum */
  .app-bar-item--loc svg { color: var(--white); stroke: currentColor; fill: none; }
  .app-bar-item--loc span { color: rgba(255,255,255,0.5); }

  /* Footer padding to not overlap */
  .footer { padding-bottom: calc(var(--s16) + 72px); }
}

/* ═══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card--hero {
    grid-column: span 2;
    grid-row: span 1;
  }
  /* stats moved to impact */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
}

@media (max-width: 768px) {
  .section { padding: var(--s16) 0; }

  /* Navbar */
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-trust { flex-direction: column; gap: var(--s3); }
  .hero-trust-divider { width: 24px; height: 1px; }

  /* Services — handled in component responsive block */

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  .about-image { aspect-ratio: 16/10; max-height: 400px; }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--hero {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Testimonials */
  .tm-top { flex-direction: column; align-items: flex-start; }
  .tm-grid { grid-template-columns: 1fr 1fr; }
  .tm-card--featured { grid-column: span 2; grid-row: span 1; }

  /* Footer CTA */
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }

  /* Before/After */
  .ba-grid {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  .faq-sidebar { position: static; }

  /* Contact */
  .cnt-cards { grid-template-columns: repeat(2, 1fr); }
  .cnt-map { height: 400px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-bottom { flex-direction: column; gap: var(--s4); text-align: center; }
  .tm-grid { grid-template-columns: 1fr; }
  .tm-card--featured { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .hero-content { padding: var(--s24) 0 var(--s16); }
  .footer-cta-actions { flex-direction: column; width: 100%; }
  .footer-cta-actions .btn { justify-content: center; }
  .cnt-cards { grid-template-columns: 1fr; margin-top: calc(-1 * var(--s10)); padding: 0 var(--s3); }
  .cnt-map { height: 350px; }
  /* stats moved to impact */
  .ba-grid { grid-template-columns: 1fr; }
  .floating-cta { bottom: var(--s4); right: var(--s4); }
  .floating-whatsapp { width: 54px; height: 54px; }
  .floating-phone { width: 46px; height: 46px; }
}

/* ── Mobile: disable heavy animations ── */
@media (max-width: 768px) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-clip,
  .reveal-rotate {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .reveal.visible,
  .reveal-left.visible,
  .reveal-right.visible,
  .reveal-scale.visible,
  .reveal-clip.visible,
  .reveal-rotate.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .reveal-delay-5,
  .reveal-delay-6 {
    transition-delay: 0s !important;
  }
}
