/* ==========================================================
   Ceyda Hoca — Kimya Eğitim Markası
   Lüks · Feminen · Editorial · Profesyonel
   ========================================================== */

:root {
  /* Renk Paleti — Plum & Rose Gold */
  --cream: #FBF8F3;
  --cream-warm: #F5EFE4;
  --ivory: #FFFCF7;
  --plum-deep: #1A1322;
  --plum: #2A1D38;
  --plum-soft: #3D2C4F;
  --rose: #B8456C;
  --rose-dark: #8E2F50;
  --rose-soft: #E8A5B8;
  --rose-pale: #F7DCE3;
  --gold: #C9A574;
  --gold-dark: #A88555;
  --gold-light: #E8D4B0;
  --text-dark: #2A1F30;
  --text-body: #5C4E5E;
  --text-muted: #8A7D8C;
  --border: #EAE0D0;
  --border-soft: #F0E8DC;
  --white: #FFFFFF;
  --black: #0A0610;

  /* Tipografi */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geçişler */
  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: .25s var(--ease);
  --t-med: .45s var(--ease);
  --t-slow: .8s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--rose); color: var(--cream); }

/* Konteyner */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* Tipografi */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 500; color: var(--text-dark); letter-spacing: -0.01em; line-height: 1.15; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; display: inline-block; width: 32px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 14px; transform: translateY(-3px); }
.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}
.gold-line { display: block; width: 60px; height: 1.5px; background: var(--gold); margin: 22px 0 28px; }
.text-center .gold-line { margin-left: auto; margin-right: auto; }

.h-hero { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; line-height: 1.05; }
.h-section { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 500; }
.h-card { font-size: 1.4rem; font-weight: 600; }

.lead { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: var(--t-med);
}
.nav.scrolled { padding: 14px 0; border-bottom-color: var(--border-soft); box-shadow: 0 6px 30px rgba(42,29,56,.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 48px; height: 48px;
  display: block;
  flex-shrink: 0;
  background-image: url('../img/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 4px 12px rgba(184,69,108,.22));
  transition: transform var(--t-med);
}
.logo:hover .logo-mark { transform: rotate(-6deg) scale(1.04); }
.footer .logo-mark { background-image: url('../img/logo-light.svg'); filter: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--text-dark); letter-spacing: -0.01em; }
.logo-sub { font-family: var(--font-script); font-style: italic; font-size: .85rem; color: var(--rose); margin-top: 3px; letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width var(--t-med);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t-fast);
}
.nav-cta:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184,69,108,.32); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--cream);
  align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: var(--cream); position: relative; transition: var(--t-fast); }
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--cream); transition: var(--t-fast);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--t-med);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--ivory);
  box-shadow: 0 12px 30px rgba(184,69,108,.28);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(184,69,108,.4); }
.btn-dark {
  background: var(--plum-deep); color: var(--cream);
}
.btn-dark:hover { background: var(--plum); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}
.btn-ghost:hover { background: var(--text-dark); color: var(--cream); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ivory);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,165,116,.4); }
.btn-arrow::after { content: "→"; font-size: 16px; transition: var(--t-fast); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(232,165,184,.35), transparent);
  filter: blur(40px);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(201,165,116,.22), transparent);
  filter: blur(40px);
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-text h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); margin-bottom: 24px; }
.hero-text h1 .accent { color: var(--rose); font-style: italic; font-family: var(--font-script); font-weight: 500; display: inline-block; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-body); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--text-body);
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item i { color: var(--rose); font-size: 16px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero image — editorial frame */
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 280px 280px 24px 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(42,29,56,.35), 0 0 0 1px rgba(201,165,116,.2);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image::after {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(255,252,247,.25);
  border-radius: 268px 268px 12px 12px;
  pointer-events: none;
}
.hero-decor {
  position: absolute;
  width: 180px; height: 180px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  top: -40px; left: -40px;
  z-index: -1;
}
.hero-decor.b { width: 120px; height: 120px; border-color: var(--rose-soft); bottom: -30px; right: -30px; top: auto; left: auto; }

.hero-badge {
  position: absolute;
  bottom: 40px; left: -30px;
  background: var(--ivory);
  padding: 16px 22px;
  border-radius: 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 18px 40px rgba(42,29,56,.18);
  z-index: 3;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--ivory);
  display: grid; place-items: center; font-size: 18px;
}
.hero-badge-text { font-size: 12px; color: var(--text-body); line-height: 1.3; }
.hero-badge-text strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--text-dark); }

/* ============ STATS BAR ============ */
.stats {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,69,108,.25), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(201,165,116,.18), transparent 60%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { padding: 10px; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-pale); }

/* ============ SECTION BASE ============ */
.section { padding: 120px 0; position: relative; }
.section-narrow { padding: 90px 0; }
.section-cream { background: var(--cream-warm); }
.section-dark { background: var(--plum-deep); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--ivory); }
.section-dark .eyebrow { color: var(--rose-soft); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark .lead { color: rgba(251,248,243,0.75); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.left .gold-line { margin-left: 0; }
.section-head .lead { margin-top: 18px; }

/* ============ ABOUT SECTION (homepage) ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(42,29,56,.2);
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  z-index: -1;
}
.about-signature {
  position: absolute;
  bottom: -10px; right: -20px;
  background: var(--rose);
  color: var(--ivory);
  padding: 22px 28px;
  border-radius: 12px;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 18px 38px rgba(184,69,108,.4);
}

.about-text h2 { margin-bottom: 8px; }
.about-text p { margin-bottom: 16px; color: var(--text-body); line-height: 1.85; }
.about-features { list-style: none; margin-top: 30px; display: grid; gap: 14px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px;
  color: var(--text-dark);
}
.about-features li i {
  color: var(--rose);
  font-size: 18px;
  margin-top: 2px;
}

/* ============ SERVICES (homepage cards) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--ivory);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: var(--t-med);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--rose-soft);
  box-shadow: 0 30px 60px -20px rgba(42,29,56,.18);
}
.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,19,34,.65) 100%);
}
.service-card-num {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(251,248,243,.92);
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.35rem; margin-bottom: 14px; line-height: 1.3; }
.service-card-body p { color: var(--text-body); font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.service-card-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: var(--t-fast);
}
.service-card-link:hover { border-bottom-color: var(--rose); gap: 12px; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--ivory);
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: var(--t-med);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -20px rgba(42,29,56,.16); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-display);
  font-size: 110px;
  color: var(--rose-soft);
  line-height: 1;
  opacity: 0.6;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--gold-light));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-deep);
}
.testimonial-author-info strong { display: block; font-size: 14px; color: var(--text-dark); }
.testimonial-author-info span { font-size: 12px; color: var(--text-muted); }

/* ============ WHY ME (advantages) ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 38px 24px;
  background: var(--ivory);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  transition: var(--t-med);
}
.why-card:hover { background: var(--cream); transform: translateY(-6px); border-color: var(--rose-soft); }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--rose-pale), var(--gold-light));
  display: grid; place-items: center;
  color: var(--rose);
  font-size: 24px;
}
.why-card h4 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 600; }
.why-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* ============ CONCERN CARDS (sound familiar) ============ */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.concern-card {
  background: var(--ivory);
  padding: 28px;
  border-radius: 14px;
  border-left: 3px solid var(--rose);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  transition: var(--t-fast);
}
.concern-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(42,29,56,.12); }
.concern-card strong { color: var(--text-dark); font-weight: 600; }
.concern-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--rose-pale);
  color: var(--rose);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-soft) 100%);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(232,165,184,.3), transparent);
  top: -150px; left: 50%;
  transform: translateX(-50%);
  filter: blur(30px);
}
.cta-section h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; position: relative; }
.cta-section p { color: rgba(251,248,243,0.8); max-width: 560px; margin: 0 auto 36px; position: relative; }
.cta-section .btn { position: relative; }

/* ============ PAGE HEADER (sub-pages) ============ */
.page-header {
  padding: 180px 0 90px;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(232,165,184,.22), transparent);
  filter: blur(30px);
}
.page-header-inner { position: relative; z-index: 2; text-align: center; }
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--rose); }
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb-sep { margin: 0 10px; opacity: .5; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 18px; }
.page-header .lead { max-width: 640px; margin: 0 auto; }

/* ============ ABOUT PAGE ============ */
.about-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(42,29,56,.3);
}
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-prose p { margin-bottom: 22px; line-height: 1.85; color: var(--text-body); font-size: 16px; }
.about-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.6rem;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--rose);
  font-weight: 500;
}
.about-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 24px;
  margin: 30px 0;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--plum);
  line-height: 1.5;
}

/* Values list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.value-card {
  padding: 32px 28px;
  background: var(--ivory);
  border-radius: 16px;
  border-top: 3px solid var(--rose);
}
.value-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p { color: var(--text-body); font-size: 14.5px; line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding-left: 30px; margin-top: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 1.5px; background: var(--gold);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: ""; position: absolute; left: -27px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1.5px var(--gold);
}
.timeline-year { font-family: var(--font-display); color: var(--rose); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; }
.timeline-item h4 { margin: 6px 0 8px; font-size: 1.15rem; }
.timeline-item p { color: var(--text-body); font-size: 14.5px; line-height: 1.6; }

/* ============ SERVICES PAGE ============ */
.services-list { display: grid; gap: 40px; }
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--ivory);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: var(--t-med);
}
.service-feature:hover { box-shadow: 0 30px 60px -20px rgba(42,29,56,.16); }
.service-feature.reverse > div:first-child { order: 2; }
.service-feature-image { aspect-ratio: 4/3; overflow: hidden; }
.service-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--t-slow); }
.service-feature:hover .service-feature-image img { transform: scale(1.04); }
.service-feature-content { padding: 50px 50px 50px 0; }
.service-feature.reverse .service-feature-content { padding: 50px 0 50px 50px; }
.service-feature-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.service-feature h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 16px; }
.service-feature p { color: var(--text-body); margin-bottom: 24px; line-height: 1.8; }

/* ============ SERVICE DETAIL PAGES ============ */
.service-detail-hero {
  padding: 170px 0 80px;
  background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.service-detail-hero::before {
  content: "";
  position: absolute; top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(184,69,108,.4), transparent);
  filter: blur(40px);
}
.service-detail-hero::after {
  content: "";
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(201,165,116,.25), transparent);
  filter: blur(40px);
}
.service-detail-hero-inner { position: relative; z-index: 2; max-width: 880px; }
.service-detail-hero h1 { color: var(--ivory); font-size: clamp(2.2rem, 4.4vw, 3.8rem); margin: 16px 0 20px; }
.service-detail-hero .lead { color: rgba(251,248,243,0.82); max-width: 720px; font-size: 1.15rem; }
.service-detail-hero .breadcrumb { color: rgba(251,248,243,0.6); }
.service-detail-hero .breadcrumb a { color: var(--gold-light); }

.detail-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(251,248,243,0.18);
}
.detail-meta-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(251,248,243,0.8); }
.detail-meta-item i { color: var(--gold-light); font-size: 16px; }

.service-detail-body { padding: 90px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
}
.service-detail-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 50px 0 18px; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content h3 { font-size: 1.35rem; margin: 32px 0 12px; color: var(--plum); }
.service-detail-content p { color: var(--text-body); line-height: 1.85; margin-bottom: 18px; font-size: 16px; }
.service-detail-content ul { list-style: none; margin: 18px 0 28px; }
.service-detail-content ul li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--text-body);
  line-height: 1.7;
}
.service-detail-content ul li::before {
  content: "✦";
  position: absolute; left: 0; top: 8px;
  color: var(--rose);
  font-size: 14px;
}
.service-detail-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream-warm);
  padding: 26px 32px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--plum);
  line-height: 1.55;
}
.service-detail-image {
  margin: 36px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(42,29,56,.18);
}
.service-detail-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* Sidebar */
.detail-sidebar { position: sticky; top: 110px; align-self: start; }
.sidebar-card {
  background: var(--ivory);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 1.15rem; margin-bottom: 16px; }
.sidebar-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-list { list-style: none; }
.sidebar-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); }
.sidebar-list a:hover { color: var(--rose); }
.sidebar-list a::after { content: "→"; opacity: 0; transition: var(--t-fast); }
.sidebar-list a:hover::after { opacity: 1; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-card:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: grid; place-items: center;
  color: var(--ivory);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info-text a, .contact-info-text span {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
}
.contact-info-text a:hover { color: var(--rose); }

/* Contact form */
.contact-form {
  background: var(--ivory);
  padding: 44px 40px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 30px 60px -20px rgba(42,29,56,.1);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-body); margin-bottom: 28px; font-size: 14.5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--t-fast);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--rose); background: var(--ivory); box-shadow: 0 0 0 4px rgba(184,69,108,.08); }
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}
.form-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-error { background: #FDECEA; color: #C62828; border: 1px solid #EF9A9A; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.5; }

/* ============ WHATSAPP CARD ============ */
.whatsapp-card {
  max-width: 380px;
  background: var(--ivory);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(42,29,56,.22);
  border: 1px solid var(--border-soft);
}
.whatsapp-card-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  color: #fff;
}
.whatsapp-card-header i { font-size: 22px; }
.whatsapp-card-header span { font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
.whatsapp-card-body { padding: 26px 22px; display: flex; align-items: center; gap: 18px; }
.whatsapp-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 3px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--gold);
}
.whatsapp-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.whatsapp-avatar::after {
  content: ""; position: absolute;
  width: 16px; height: 16px;
  background: #25D366;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  bottom: -2px; right: -2px;
}
.whatsapp-info { flex: 1; }
.whatsapp-info strong { display: block; font-size: 16px; color: var(--text-dark); margin-bottom: 4px; }
.whatsapp-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #25D366; font-weight: 600; }
.whatsapp-status .dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; box-shadow: 0 0 0 0 #25D366; animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-bio { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.whatsapp-cta {
  display: flex;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--t-fast);
}
.whatsapp-cta:hover { background: #1ebe5a; }

/* Floating WhatsApp card - modern, premium */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: var(--ivory);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(42,29,56,.22), 0 0 0 1px rgba(201,165,116,.18);
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--t-med);
  max-width: 280px;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(42,29,56,.3), 0 0 0 1px var(--gold); }
.wa-float-avatar {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1.5px var(--gold);
  flex-shrink: 0;
}
.wa-float-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transform: scale(1.35); transform-origin: center 30%; }
.wa-float-text { display: flex; flex-direction: column; line-height: 1.2; }
.wa-float-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.wa-float-status {
  font-size: 11px;
  color: #25D366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
}
.wa-float-status::before {
  content: "";
  width: 6px; height: 6px;
  background: #25D366;
  border-radius: 50%;
}
.wa-float-icon {
  margin-left: 4px;
  width: 36px; height: 36px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Mobile menu close button */
.mobile-menu-close {
  position: absolute;
  top: 26px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--plum-deep);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 22px;
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: var(--t-fast);
}
.mobile-menu-close:hover { background: var(--rose); transform: rotate(90deg); }

/* ============ FOOTER ============ */
.footer {
  background: var(--plum-deep);
  color: var(--cream);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-about p { color: rgba(251,248,243,0.65); font-size: 14px; line-height: 1.7; margin-top: 20px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: rgba(251,248,243,0.75); font-size: 14.5px; }
.footer-col a:hover { color: var(--rose-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251,248,243,0.2);
  display: grid; place-items: center;
  color: var(--cream);
  transition: var(--t-fast);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(251,248,243,0.12);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(251,248,243,0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .heart { color: var(--rose-soft); }

/* ============ FADE IN ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* Mobile menu overlay - rendered outside nav to avoid backdrop-filter containing block */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #FBF8F3;
  z-index: 110;
  display: none;
  flex-direction: column;
  padding: 96px 28px 40px;
  gap: 22px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-overlay a {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  width: 100%;
  letter-spacing: -0.01em;
}
.mobile-menu-overlay a.active, .mobile-menu-overlay a:hover { color: var(--rose); }
.mobile-menu-overlay-foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-menu-overlay-foot .btn { width: 100%; justify-content: center; }
.mobile-menu-social {
  display: flex; gap: 14px; justify-content: center; margin-top: 10px;
}
.mobile-menu-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--rose); font-size: 18px;
  padding: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .about-hero, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .testimonials-grid, .concern-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; gap: 0; }
  .service-feature.reverse > div:first-child { order: 0; }
  .service-feature-content, .service-feature.reverse .service-feature-content { padding: 40px 32px; }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-overlay { display: flex; }
  .nav-links.mobile-open a { font-size: 22px; font-family: var(--font-display); }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding: 140px 0 80px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .hero-image { border-radius: 200px 200px 18px 18px; }
  .hero-image::after { border-radius: 192px 192px 8px 8px; inset: 8px; }
  .hero-badge { left: 0; bottom: 20px; padding: 12px 16px; }
  .services-grid, .testimonials-grid, .concern-grid, .values-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .about-image-wrap::before { inset: -10px -10px 10px 10px; }
  .about-signature { right: 0; font-size: 1.15rem; padding: 16px 20px; }
  .page-header { padding: 130px 0 60px; }
  .service-detail-hero { padding: 130px 0 60px; }
  .footer-bottom { flex-direction: column; }
  .wa-float { bottom: 16px; right: 16px; padding: 6px 14px 6px 6px; max-width: 220px; }
  .wa-float-avatar { width: 40px; height: 40px; }
  .wa-float-name { font-size: 13px; }
  .wa-float-status { font-size: 10px; }
  .wa-float-icon { width: 30px; height: 30px; font-size: 15px; }
}
