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

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

:root {
  --primary: #d4af37;
  --primary-dark: #b8960e;
  --primary-rgb: 212, 175, 55;
  --bg: #FAFAF8;
  --accent: #f0e6b2;
  --text: #171d2b;
  --text-dark: #171d2b;
  --text-light: #5a6480;
  --white: #FFFFFF;
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow: 0 4px 24px rgba(23, 29, 43, 0.08);
  --shadow-lg: 0 12px 48px rgba(23, 29, 43, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 560px; line-height: 1.8; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary { background: var(--primary); color: var(--text); }
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--text); transform: translateY(-2px); }

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 6px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(250, 250, 248, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 29, 43, 0.06);
}

#navbar.scrolled {
  background: rgba(250, 250, 248, 0.98);
  box-shadow: 0 4px 32px rgba(23, 29, 43, 0.08);
  padding: 4px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 12px; transition: transform 0.3s ease; }
.nav-logo:hover { transform: scale(1.02); }

.nav-logo-img { width: 52px; height: 52px; border-radius: 0 !important; transition: all 0.3s ease; }
#navbar.scrolled .nav-logo-img { width: 42px; height: 42px; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  transition: all 0.3s ease;
}

#navbar.scrolled .nav-logo-text { font-size: 1.05rem; }

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.nav-active::after { width: 100%; }
.nav-links a.nav-active { color: var(--text); font-weight: 700; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right .btn { padding: 10px 24px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  z-index: 1002;
}

.hamburger:hover { background: rgba(212, 175, 55, 0.2); }

.hamburger span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F8FF 0%, #ECF0FD 50%, #DDE5F5 100%);
}

.hero-bg-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-bg-deco::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg-deco::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(ellipse, rgba(23, 29, 43, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 400; color: var(--text); line-height: 1.1; margin-bottom: 24px; }
.hero-title strong { font-weight: 700; color: var(--primary-dark); }

.hero-subtitle { font-size: 1.05rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.8; max-width: 480px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-badges { display: flex; flex-direction: column; gap: 10px; }

.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-light); }

.hero-badge-icon {
  width: 28px; height: 28px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-visual { position: relative; }

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 32px 32px 120px 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #DDE5F5, #C8D5EE);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 0; }

/* ABOUT */
#about { background: var(--white); }

.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-photo-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 32px 120px 32px 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #DDE5F5, #C8D5EE);
  box-shadow: var(--shadow-lg);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 0; }

.about-deco {
  position: absolute;
  top: -24px; left: -24px;
  width: 120px; height: 120px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  z-index: -1;
}

.about-deco-2 {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
}

.about-bio { font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 40px; }

.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.credential-item { display: flex; align-items: center; gap: 12px; }

.credential-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.credential-text { font-size: 0.85rem; line-height: 1.3; }
.credential-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); font-family: 'Outfit', sans-serif; }
.credential-text span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-light); }

/* SERVICES */
#services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
  color: var(--primary-dark);
}

.service-card:hover .service-icon { background: var(--primary); color: var(--text); }

.service-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.service-subtitle { font-size: 0.78rem; color: var(--primary-dark); font-weight: 600; margin-bottom: 12px; letter-spacing: 0.03em; }
.service-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.service-more { display: inline-flex; align-items: center; margin-top: 16px; font-size: 0.8rem; font-weight: 600; color: var(--primary-dark); letter-spacing: 0.03em; }

.service-card--link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.service-card--link:hover .service-more { color: var(--primary); }

/* COMPACT GRID (homepage 8 services) */
.services-grid--compact { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.services-grid--compact .service-card { padding: 22px 18px; }
.services-grid--compact .service-icon { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 14px; border-radius: 11px; }
.services-grid--compact .service-title { font-size: 1.05rem; }
.services-grid--compact .service-desc { display: none; }
.services-grid--compact .service-more { margin-top: 10px; font-size: 0.75rem; }

/* WHY US */
#why { background: linear-gradient(135deg, #171d2b 0%, #1e2538 100%); color: var(--white); }
#why .section-tag { color: var(--primary); }
#why .section-title { color: var(--white); }
#why .section-subtitle { color: rgba(255,255,255,0.6); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.why-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.why-item:hover { background: rgba(212, 175, 55, 0.12); border-color: rgba(212, 175, 55, 0.3); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; color: var(--primary); }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-sub { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* REVIEWS */
#reviews { background: var(--bg); }

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

.review-card {
  background: var(--white);
  border: 1px solid rgba(23, 29, 43, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(23, 29, 43, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(23, 29, 43, 0.1); }

.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }

.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-info { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.review-stars { color: #FBBC05; font-size: 0.85rem; letter-spacing: 1px; }

.review-source {
  font-size: 0.68rem; font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  align-self: flex-start;
}

.review-source.google { background: #e8f0fe; color: #1a73e8; }
.review-source.doktorsitesi { background: #fce8e6; color: #d93025; }
.review-source.izmir { background: #e6f4ea; color: #188038; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}

.review-text::before {
  content: '"';
  font-size: 2rem;
  color: rgba(var(--primary-rgb), 0.25);
  line-height: 0;
  margin-right: 2px;
  vertical-align: -0.4em;
}

.review-date { font-size: 0.75rem; color: var(--text-light); margin-top: 14px; opacity: 0.7; }

/* APPOINTMENT */
#appointment { background: var(--white); }

.appointment-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

.appt-form-card { background: var(--bg); border-radius: 24px; padding: 48px 40px; }
.appt-form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 8px; color: var(--text); }
.appt-form-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }

.appt-info { display: flex; flex-direction: column; gap: 24px; justify-content: center; }

.contact-block h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 8px; }
.contact-block p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.contact-item-text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-item-text a { color: var(--primary-dark); }
.contact-item-text a:hover { color: var(--text); }

.map-embed { border-radius: 16px; overflow: hidden; height: 220px; border: 1px solid var(--accent); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* DISCLAIMER BAR */
.disclaimer-bar { background: #F3F6FF; border-top: 1px solid rgba(212, 175, 55, 0.25); padding: 18px 0; }
.disclaimer-bar p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; text-align: center; max-width: 820px; margin: 0 auto; }

/* FOOTER */
#footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 56px 0 24px; }

.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 40px; }

.footer-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.footer-logo-text span { display: block; font-size: 0.85rem; font-family: 'Outfit', sans-serif; font-weight: 400; color: rgba(255,255,255,0.45); margin-top: 2px; }

.footer-tagline { font-style: italic; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--primary); margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--primary); color: var(--text); transform: translateY(-2px); }

.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { display: flex; align-items: flex-start; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.2s; line-height: 1.5; }
.footer-links a:hover { color: var(--primary); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; width: 100%; }
.footer-contact-item i { margin-top: 3px; flex-shrink: 0; font-size: 1.1rem; color: rgba(255,255,255,0.7); }

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

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); animation: none; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

/* SCROLL ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: -10px 0 40px rgba(23, 29, 43, 0.12);
  z-index: 1001;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  padding: 100px 32px 32px 32px;
  transform: translateX(100%);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
}

.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  width: 100%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 12px;
}

.mobile-nav a:last-child { border-bottom: none; padding-bottom: 0; }
.mobile-nav a:hover { color: var(--primary-dark); transform: translateX(5px); }

.mobile-nav .btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: center;
  border-bottom: none !important;
  padding: 14px 24px !important;
  width: 100%;
  margin-top: 8px;
  border-radius: var(--radius-sm);
}

.mobile-nav .btn:hover { transform: none; }

.mobile-close {
  display: block;
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.mobile-close:hover { transform: rotate(90deg); color: var(--primary); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23, 29, 43, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-overlay.active { display: block; opacity: 1; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #F5F8FF 0%, #EBF0FA 100%);
  padding: 112px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 32px; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-dark); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--primary); }

.page-hero-icon { font-size: 3.5rem; margin-bottom: 20px; line-height: 1; color: var(--primary); }

.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; color: var(--text); margin-bottom: 16px; }
.page-hero-sub { font-size: 1.05rem; color: var(--text-light); max-width: 560px; line-height: 1.8; }

/* SERVICE DETAIL LAYOUT */
.service-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }

.service-detail-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 20px; margin-top: 40px; }
.service-detail-body h2:first-child { margin-top: 0; }
.service-detail-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text); margin-bottom: 16px; margin-top: 40px; }
.service-detail-body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }

.service-detail-body ul { padding-left: 0; list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.service-detail-body ul li { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; padding-left: 20px; position: relative; }
.service-detail-body ul li::before { content: '–'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* PROCESS STEPS */
.process-steps { display: flex; flex-direction: column; gap: 24px; margin: 24px 0; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.step-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-item { border: 1px solid var(--accent); border-radius: var(--radius); overflow: hidden; }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--accent); }

.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a { display: none; padding: 0 24px 18px; font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* SIDEBAR */
.service-detail-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

.sidebar-cta-card { background: var(--text); border-radius: var(--radius); padding: 32px 28px; color: white; }
.sidebar-cta-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: white; margin-bottom: 12px; }
.sidebar-cta-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.6; }

.sidebar-phone { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.88rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.sidebar-phone:hover { color: white; }

.sidebar-services-card { background: var(--white); border: 1px solid var(--accent); border-radius: var(--radius); padding: 24px 28px; }
.sidebar-services-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text); margin-bottom: 16px; }

.sidebar-services-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-services-list a { font-size: 0.85rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.sidebar-services-list a::before { content: '→'; color: var(--primary); font-size: 0.75rem; }
.sidebar-services-list a:hover { color: var(--primary-dark); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 100px; }
  .hero-photo-frame { max-width: 380px; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-badges { align-items: center; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .appointment-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .reviews-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .appt-form-card { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .credentials-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 96px 0 56px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .services-grid--compact {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--accent);
  }
  .services-grid--compact .service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--accent);
    box-shadow: none;
    transform: none !important;
  }
  .services-grid--compact .service-card:last-child { border-bottom: none; }
  .services-grid--compact .service-card::before { display: none; }
  .services-grid--compact .service-card::after { content: '→'; color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }
  .services-grid--compact .service-icon,
  .services-grid--compact .service-subtitle,
  .services-grid--compact .service-more { display: none; }
  .services-grid--compact .service-title { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 500; margin-bottom: 0; }
}
