/* ============================================================
   BURCUNES Güzellik Salonu — Tasarım Sistemi v2
   Premium çok sayfalı site | SEO-GEO uyumlu şablon
   ============================================================ */

/* ---------- 1. Tasarım Tokenları ---------- */
:root {
  /* Marka renkleri */
  --brand: #ec008c;
  --brand-dark: #c40074;
  --brand-light: #f649b0;
  --brand-tint: #fdeef7;
  --brand-tint-2: #fbdcee;

  /* Nötr palet */
  --ink: #1c1a1f;
  --ink-soft: #2d2b31;
  --text-dark: #2d2d2d;
  --text-body: #56525b;
  --text-muted: #8a8590;
  --text-light: #f5f5f5;

  --bg-cream: #f9f7f4;
  --bg-sand: #f4f0eb;
  --bg-white: #ffffff;
  --dark-bg: #1a1a1a;
  --darker-bg: #0d0d0d;

  --line-soft: rgba(28, 26, 31, 0.07);
  --line-softer: rgba(28, 26, 31, 0.04);

  /* Tipografi */
  --font-display: "Cormorant Garamond", "Playfair Display", serif;
  --font-body: "Jost", "Poppins", sans-serif;

  /* Ritim */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 22px;
  --radius-pill: 50px;

  --shadow-soft: 0 4px 20px rgba(28, 26, 31, 0.05);
  --shadow-lift: 0 15px 35px rgba(236, 0, 140, 0.09);
  --shadow-deep: 0 20px 50px rgba(28, 26, 31, 0.12);

  --nav-h: 84px;
  --nav-h-scrolled: 84px; /* simetri: menü tüm sayfalarda aynı boyutta */
  --actionbar-h: 74px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Temel ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.25;
  text-wrap: balance;
}

img, video, iframe {
  max-width: 100%;
}

a {
  color: var(--brand);
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-sand); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-dark); }

/* Erişilebilirlik: klavye odağı */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Butonlar ---------- */
.btn {
  padding: 0.95rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  line-height: 1.4;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(236, 0, 140, 0.25);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(236, 0, 140, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: #1eb856;
  transform: translateY(-3px);
}

.w-full { width: 100%; }

/* ---------- 4. Navigasyon ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled,
.navbar.inner-nav {
  background: rgba(249, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--line-soft);
}

.nav-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.logo:hover img { transform: scale(1.04); }

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

.nav-links > li { position: relative; }

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0;
}

.navbar.scrolled .nav-links a,
.navbar.inner-nav .nav-links a { color: var(--text-dark); }

.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover { color: var(--brand); }
.nav-links > li > a:hover::after,
.nav-links > li.has-mega:hover > a::after { width: 100%; }

.nav-caret {
  font-size: 0.65rem;
  transition: transform 0.3s var(--ease);
}
.has-mega:hover .nav-caret { transform: rotate(180deg); }

.nav-cta {
  padding: 0.7rem 1.7rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* --- Mega Menü --- */
.mega-menu {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  width: min(1060px, calc(100vw - 3rem));
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 2.2rem 2.4rem;
  z-index: 999;
}

.navbar.scrolled .mega-menu,
.navbar.inner-nav .mega-menu { top: var(--nav-h-scrolled); }

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-col {
  padding: 0 2.2rem;
  border-left: 1px solid var(--line-softer);
}
.mega-col:first-child { border-left: none; padding-left: 0; }
.mega-col:last-child { padding-right: 0; }

.mega-cat {
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--ink) !important;
  padding: 0.2rem 0 1rem 0 !important;
  border-bottom: 1px solid var(--brand-tint-2);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.mega-cat:hover { color: var(--brand) !important; }

.mega-cat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-cat-icon img { width: 18px; height: 18px; }

.mega-col ul { list-style: none; }
.mega-col ul li { margin-bottom: 0.1rem; }
.mega-col ul a {
  display: block !important;
  color: var(--text-body) !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  text-transform: none;
  letter-spacing: 0.3px;
  padding: 0.42rem 0 !important;
  border-radius: 0;
  transition: all 0.25s ease;
}
.mega-col ul a:hover {
  color: var(--brand) !important;
  padding-left: 0.5rem !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.45rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.navbar.scrolled .mobile-menu-btn,
.navbar.inner-nav .mobile-menu-btn { color: var(--text-dark); }

/* ---------- 5. Mobil Menü (uygulama tarzı panel) ---------- */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  z-index: 1400;
}
.mobile-menu-backdrop.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 88vw);
  background: var(--bg-cream);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.42s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
  border-radius: 24px 0 0 24px;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  padding-top: calc(1.1rem + env(safe-area-inset-top));
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.mobile-menu-logo { height: 44px; width: auto; }

.mobile-menu-close {
  background: var(--bg-sand);
  border: none;
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.mobile-menu-close:hover { background: var(--brand); color: #fff; }

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.8rem 1rem 1.2rem;
}

.mm-link,
.mm-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.95rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  text-align: left;
}
.mm-link { gap: 0.7rem; justify-content: flex-start; }
.mm-link:hover, .mm-group-toggle:hover { background: var(--brand-tint); color: var(--brand); }

.mm-icon { width: 22px; height: 22px; flex-shrink: 0; }

.mm-group-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.mm-group-toggle i {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.32s var(--ease);
}
.mm-group.open .mm-group-toggle { color: var(--brand); background: var(--brand-tint); }
.mm-group.open .mm-group-toggle i { transform: rotate(180deg); color: var(--brand); }

.mm-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mm-group.open .mm-sub { max-height: 600px; }

.mm-sub a {
  display: block;
  padding: 0.72rem 0.9rem 0.72rem 3.1rem;
  color: var(--text-body);
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}
.mm-sub a:hover { color: var(--brand); background: var(--brand-tint); }

.mobile-menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
  background: var(--bg-white);
  border-radius: 0 0 0 24px;
}
.mobile-menu-footer .btn { padding: 0.8rem 1rem; font-size: 0.86rem; }

/* Menü açıkken gövde kilidi */
body.menu-open { overflow: hidden; }

/* ---------- 6. Bölüm (Section) Sistemi ---------- */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.6rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--text-light); }

.section-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 2px;
  margin: 1.4rem auto 0;
}

.section-intro {
  color: var(--text-body);
  max-width: 640px;
  margin: 1.4rem auto 0;
  font-size: 1.02rem;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ---------- 7. İç Sayfa Kahramanı (Page Hero) + Breadcrumb ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 2rem 4.2rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(236, 0, 140, 0.12), transparent 60%),
    radial-gradient(900px 420px at 8% 110%, rgba(236, 0, 140, 0.07), transparent 55%),
    linear-gradient(180deg, #171519 0%, #221f26 100%);
  color: var(--text-light);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 0, 140, 0.5), transparent);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  font-size: 0.82rem;
  margin-bottom: 1.6rem;
  color: rgba(245, 245, 245, 0.65);
}
.breadcrumb a {
  color: rgba(245, 245, 245, 0.82);
  text-decoration: none;
  transition: color 0.25s ease;
}
.breadcrumb a:hover { color: var(--brand-light); }
.breadcrumb li:not(:last-child)::after {
  content: "\203A";
  margin-left: 0.55rem;
  color: rgba(245, 245, 245, 0.4);
}
.breadcrumb [aria-current="page"] { color: var(--brand-light); font-weight: 500; }

.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--text-light);
  max-width: 800px;
  margin-bottom: 1.1rem;
}
.page-hero .lead {
  color: rgba(245, 245, 245, 0.82);
  max-width: 680px;
  font-size: 1.05rem;
  font-weight: 300;
}
.page-hero .hero-buttons {
  justify-content: flex-start;
  margin-top: 2rem;
  opacity: 1;
  transform: none;
  animation: none;
}

/* ---------- 8. Ana Sayfa Kahramanı ---------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.86) 0%,
    rgba(13, 13, 13, 0.55) 50%,
    rgba(13, 13, 13, 0.86) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--brand-light);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) forwards;
}

.hero-title {
  font-size: clamp(3.1rem, 8.4vw, 6.2rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.2s forwards;
}
.hero-title span { color: var(--brand); font-style: italic; }

.hero-description {
  font-size: 1.08rem;
  color: rgba(245, 245, 245, 0.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--ease) 0.6s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}
.scroll-indicator i {
  color: var(--brand-light);
  font-size: 1.8rem;
  animation: bounce 2.2s infinite;
}

/* ---------- 9. Hakkında ---------- */
.about { background: var(--bg-cream); }

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: block;
}
.about-image::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.7;
}

.about-content h3 {
  font-size: 1.9rem;
  margin-bottom: 1.4rem;
}
.about-content p {
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  font-size: 0.98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-soft);
}
.about-feature i { color: var(--brand); font-size: 1.25rem; flex-shrink: 0; }
.about-feature span { font-weight: 500; color: var(--ink); font-size: 0.88rem; }

.about-cta { margin-top: 2rem; }

/* ---------- 10. Hizmet Kartları ---------- */
.services {
  background: var(--bg-sand);
  border-top: 1px solid var(--line-softer);
  border-bottom: 1px solid var(--line-softer);
}

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.services-grid-narrow {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--line-soft);
  text-align: center;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.4rem 1.7rem;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(236, 0, 140, 0.35);
  box-shadow: var(--shadow-lift);
}

.service-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.service-icon img { width: 36px; height: 36px; }
.service-card:hover .service-icon {
  background: var(--brand);
  transform: scale(1.06);
}
.service-card:hover .service-icon img { filter: brightness(0) invert(1); }

.service-content { display: flex; flex-direction: column; flex: 1; }
.service-content h3 {
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 0.7rem;
}
.service-content p {
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.65;
  flex: 1;
}

.service-link {
  margin-top: 1.2rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease);
}
.service-card:hover .service-link { gap: 0.7rem; }

/* ---------- 11. Sertifika / Güven Şeridi ---------- */
.cert-strip {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(236, 0, 140, 0.14), transparent 55%),
    linear-gradient(180deg, #171519, #232028);
  color: var(--text-light);
}

.cert-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.cert-strip-text .section-title { color: var(--text-light); text-align: left; }
.cert-strip-text .section-subtitle { text-align: left; }
.cert-strip-text p {
  color: rgba(245, 245, 245, 0.78);
  line-height: 1.9;
  margin: 1.2rem 0 2rem;
  font-weight: 300;
}

.cert-strip-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.cert-badge {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.35s var(--ease);
}
.cert-badge:hover {
  border-color: rgba(236, 0, 140, 0.55);
  background: rgba(236, 0, 140, 0.08);
  transform: translateY(-4px);
}
.cert-badge i { color: var(--brand-light); font-size: 1.7rem; margin-bottom: 0.8rem; display: block; }
.cert-badge span { font-size: 0.86rem; line-height: 1.5; display: block; color: rgba(245,245,245,0.92); }

/* ---------- 12. Galeri ---------- */
.gallery { background: var(--bg-cream); }

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 4rem;
}

.gallery-swiper { width: 100%; padding-bottom: 3rem; }

.gallery-slide {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-slide:hover .gallery-overlay { opacity: 1; }
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-overlay i { color: var(--brand-light); font-size: 2.3rem; }

.gallery-prev, .gallery-next {
  color: #fff !important;
  background: var(--brand);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  top: 45% !important;
}
.gallery-prev { left: 0 !important; }
.gallery-next { right: 0 !important; }
.gallery-prev:hover, .gallery-next:hover { background: var(--brand-dark); }
.gallery-prev::after, .gallery-next::after { font-size: 1.1rem !important; font-weight: bold; }

.gallery-pagination .swiper-pagination-bullet {
  background: var(--brand);
  opacity: 0.4;
  width: 9px;
  height: 9px;
}
.gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* ---------- 13. Instagram ---------- */
.instagram-feed { background: var(--bg-cream); }

.instagram-profile-info { margin-top: 1.2rem; }

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 0.6rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.instagram-follow-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.instagram-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.instagram-feed,
.instagram-container,
.instagram-widget-area,
.instagram-grid { overflow: hidden; max-width: 100%; }

.instagram-grid blockquote.instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ---------- 14. Yorumlar ---------- */
.testimonials {
  background: var(--bg-sand);
  padding: 6rem 2rem;
  border-top: 1px solid var(--line-softer);
  border-bottom: 1px solid var(--line-softer);
}

.testimonials-swiper { max-width: 820px; margin: 0 auto; }

.testimonial-slide { text-align: center; padding: 1.5rem 2rem 2.5rem; }

.testimonial-text {
  font-size: 1.22rem;
  color: var(--ink-soft);
  line-height: 1.9;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.testimonial-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-tint-2);
}
.testimonial-author h4 { color: var(--ink); font-size: 1.05rem; }

.testimonials-pagination { position: static; margin-top: 0.5rem; }
.testimonials-pagination .swiper-pagination-bullet {
  background: var(--brand);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}
.testimonials-pagination .swiper-pagination-bullet-active { opacity: 1; }

/* ---------- 15. Konum Şeridi ---------- */
.location-strip { background: var(--bg-cream); }

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.location-text .section-title, .location-text .section-subtitle { text-align: left; }
.location-text p { color: var(--text-body); line-height: 1.9; margin: 1.2rem 0 1.6rem; }

.location-map iframe {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--line-soft);
  display: block;
}

/* ---------- 16. İletişim ---------- */
.contact { background: var(--bg-cream); }

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}

.contact-info h3 { font-size: 1.75rem; margin-bottom: 1.4rem; }
.contact-info p { color: var(--text-body); line-height: 1.85; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item i {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 6px 16px rgba(236, 0, 140, 0.25);
}
.contact-item div h4 { font-family: var(--font-body); color: var(--ink); font-size: 0.98rem; margin-bottom: 0.25rem; font-weight: 600; }
.contact-item div span { color: var(--text-body); font-size: 0.9rem; line-height: 1.7; }
.contact-item div span a { color: var(--text-body); text-decoration: none; }
.contact-item div span a:hover { color: var(--brand); }

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--line-soft);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-result-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  place-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(236, 0, 140, 0.12), transparent 42%),
    var(--surface, #faf7f9);
}

.form-result-card {
  width: 100%;
  min-width: 0;
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.form-result-card img {
  width: min(220px, 60%);
  height: auto;
  margin-bottom: 2rem;
}

.form-result-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 2rem;
}

.form-result-card h1 {
  margin-bottom: 1rem;
}

.form-result-card p {
  margin: 0 auto 2rem;
  max-width: 480px;
}

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 2px solid #eee9e3;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-cream);
  transition: all 0.3s ease;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ec008c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---------- 17. SSS Akordeonu (hizmet sayfaları için) ---------- */
.faq { background: var(--bg-sand); }
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open { box-shadow: var(--shadow-lift); border-color: rgba(236, 0, 140, 0.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.faq-q i { color: var(--brand); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.85;
}

/* ---------- 18. CTA Bandı ---------- */
.cta-band {
  background:
    radial-gradient(800px 320px at 15% 120%, rgba(236, 0, 140, 0.25), transparent 60%),
    linear-gradient(120deg, #1c1a1f, #2b2830);
  padding: 4.5rem 2rem;
  text-align: center;
}
.cta-band h2 {
  color: var(--text-light);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  max-width: 720px;
  margin: 0 auto 1rem;
}
.cta-band p {
  color: rgba(245, 245, 245, 0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.cta-band .hero-buttons { opacity: 1; transform: none; animation: none; }

/* ---------- 19. İçerik Sayfası Gövdesi (prose) ---------- */
.prose-section { background: var(--bg-cream); }
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.8rem;
  margin: 2.6rem 0 1rem;
}
.prose h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.8rem;
}
.prose p { color: var(--text-body); margin-bottom: 1.2rem; line-height: 1.9; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.4rem; color: var(--text-body); }
.prose li { margin-bottom: 0.55rem; line-height: 1.8; }
.prose li::marker { color: var(--brand); }
.prose strong { color: var(--ink); }
.prose img, .prose video {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  margin: 1.6rem 0;
}

/* ---------- 20. Footer ---------- */
.footer {
  background: var(--bg-sand);
  padding: 4.5rem 2rem 2rem;
  border-top: 1px solid var(--line-soft);
}

.footer-container { max-width: 1300px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}

.footer-logo { height: 64px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.4rem; font-size: 0.9rem; }

.social-links { display: flex; gap: 0.9rem; }
.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(236, 0, 140, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}
.social-links a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.footer-column h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
}
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.65rem; }
.footer-column ul li a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s ease;
}
.footer-column ul li a:hover { color: var(--brand); }

.footer-contact li {
  color: var(--text-body);
  font-size: 0.86rem;
  line-height: 1.7;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-contact li i { color: var(--brand); margin-top: 4px; flex-shrink: 0; width: 16px; text-align: center; }
.footer-contact li a {
  color: var(--text-body);
  text-decoration: none;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-contact li a:hover { color: var(--brand); }
.footer-contact li a i { color: var(--brand); margin-top: 4px; flex-shrink: 0; width: 16px; text-align: center; }

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid var(--line-softer);
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- 21. Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 85%; max-height: 85%; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2001;
}
.lightbox-close:hover { color: var(--brand-light); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 1rem;
  z-index: 2001;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--brand-light); transform: translateY(-50%) scale(1.15); }

/* ---------- 22. Mobil Aksiyon Barı ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: rgba(249, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -6px 26px rgba(0, 0, 0, 0.09);
  border-top: 1px solid var(--line-soft);
  padding: 0.65rem 0.9rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}

.mobile-action-bar .action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 0.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.86rem;
  transition: transform 0.2s ease;
}
.mobile-action-bar .call-btn {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(236, 0, 140, 0.25);
}
.mobile-action-bar .whatsapp-btn {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.mobile-action-bar .appointment-btn {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28, 26, 31, 0.25);
}
.mobile-action-bar .action-btn:active { transform: scale(0.96); }

/* ---------- 23. Animasyonlar ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-9px); }
  60% { transform: translateY(-4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 24. Responsive ---------- */
@media (max-width: 1200px) {
  .mega-inner { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { gap: 1.4rem; }
  .nav-cta { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  .about-container,
  .cert-strip-inner,
  .location-inner,
  .contact-container { grid-template-columns: 1fr; gap: 2.6rem; }

  .about-image { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cert-strip-badges { max-width: 560px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; --nav-h-scrolled: 64px; }

  .section { padding: 4.5rem 1.2rem; }
  .section-header { margin-bottom: 2.6rem; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: min(320px, 100%); }
  .page-hero .hero-buttons { align-items: flex-start; }
  .page-hero .hero-buttons .btn { width: auto; }

  .about-image::before { display: none; }

  .gallery-wrapper { padding: 0 3rem; }
  .gallery-prev, .gallery-next { width: 40px !important; height: 40px !important; }

  .instagram-grid { grid-template-columns: 1fr; gap: 1rem; }

  .mobile-action-bar { display: flex; }
  body { padding-bottom: var(--actionbar-h); }

  .contact-form { padding: 1.8rem 1.4rem; }

  .testimonial-text { font-size: 1.08rem; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cert-strip-badges { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 1rem; }
  .navbar { padding: 0 1rem; }

  .gallery-wrapper { padding: 0; }
  .gallery-swiper { padding: 0 1rem; }
  .gallery-prev, .gallery-next { display: none !important; }

  .lightbox-prev, .lightbox-next { font-size: 1.8rem; padding: 0.5rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; font-size: 1.9rem; }
}

/* ============================================================
   25. Premium Hizmet Sayfası Bileşenleri (v2)
   ============================================================ */

/* --- Genel bakış: iki sütun --- */
.split-section { background: var(--bg-cream); }
.split {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 1.4rem;
}
.split-text p { color: var(--text-body); line-height: 1.95; margin-bottom: 1.2rem; font-size: 1rem; }
.split-text ul { margin: 0 0 1.3rem 1.3rem; color: var(--text-body); }
.split-text li { margin-bottom: 0.5rem; line-height: 1.8; }
.split-text li::marker { color: var(--brand); }
.split-text a { color: var(--brand); }
.split-media { position: relative; }
.split-media img,
.split-media video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  display: block;
}
.split-media::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--brand-tint-2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* --- Uygulama adımları --- */
.steps-section {
  background: var(--bg-sand);
  border-top: 1px solid var(--line-softer);
  border-bottom: 1px solid var(--line-softer);
}
.steps-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.35s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 0, 140, 0.3);
  box-shadow: var(--shadow-lift);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step-card p { color: var(--text-body); font-size: 0.88rem; line-height: 1.7; }

/* --- Hızlı bilgi bandı --- */
.facts-band {
  background:
    radial-gradient(700px 300px at 85% 10%, rgba(236, 0, 140, 0.16), transparent 55%),
    linear-gradient(120deg, #171519, #26232b);
  padding: 3.4rem 2rem;
}
.facts-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.fact {
  text-align: center;
  padding: 0.6rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.fact:first-child { border-left: none; }
.fact i { color: var(--brand-light); font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.fact-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}
.fact-label {
  color: rgba(245, 245, 245, 0.65);
  font-size: 0.8rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* --- Kimler için uygun --- */
.who-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.65;
}
.who-item i { color: var(--brand); margin-top: 3px; flex-shrink: 0; }

/* --- Neden Burcunes rozetleri --- */
.why-section { background: var(--bg-cream); }
.why-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 0, 140, 0.3);
  box-shadow: var(--shadow-lift);
}
.why-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.why-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-body); font-size: 0.86rem; line-height: 1.7; }

/* --- Derin içerik (geniş prose) --- */
.deep-section { background: var(--bg-cream); }
.deep {
  max-width: 940px;
  margin: 0 auto;
}
.deep h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 2.6rem 0 1rem; }
.deep h3 { font-size: 1.35rem; margin: 2rem 0 0.8rem; }
.deep p { color: var(--text-body); margin-bottom: 1.2rem; line-height: 1.95; }
.deep ul, .deep ol { margin: 0 0 1.4rem 1.4rem; color: var(--text-body); }
.deep li { margin-bottom: 0.55rem; line-height: 1.8; }
.deep li::marker { color: var(--brand); }
.deep strong { color: var(--ink); }
.deep > :first-child { margin-top: 0; }

/* --- İlgili hizmetler --- */
.related-section {
  background: var(--bg-sand);
  border-top: 1px solid var(--line-softer);
}
.related-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Responsive (v2) --- */
@media (max-width: 1024px) {
  .facts-inner { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .fact:nth-child(3) { border-left: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 2.4rem; }
  .split-media { max-width: 620px; margin: 0 auto; width: 100%; }
  .related-grid { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 640px) {
  .facts-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .fact { border-left: none; padding: 0.4rem 0.5rem; }
  .fact-value { font-size: 1.3rem; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .split-media::before { display: none; }
}

/* Split medya oran sınırı: dikey görseller sayfayı domine etmesin */
.split-media img { max-height: 620px; object-fit: cover; }
.split-media video { max-height: 620px; object-fit: cover; background: #000; }

/* Page hero arka plan görseli */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(17, 15, 19, 0.94) 0%,
    rgba(17, 15, 19, 0.82) 42%,
    rgba(24, 18, 26, 0.55) 100%
  );
}

/* ---------- 26. Sertifika Sayfası ---------- */
.certs-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s var(--ease);
}
.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 0, 140, 0.3);
  box-shadow: var(--shadow-lift);
}
.cert-image {
  display: block;
  position: relative;
  background: var(--bg-sand);
}
.cert-image img { width: 100%; display: block; }
.cert-zoom {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  background: rgba(28, 26, 31, 0.75);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cert-image:hover .cert-zoom { opacity: 1; }
.cert-info { padding: 1.5rem 1.6rem 1.7rem; }
.cert-info h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.cert-info ul { list-style: none; }
.cert-info li {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.45rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.cert-info li i { color: var(--brand); margin-top: 4px; width: 16px; text-align: center; flex-shrink: 0; }

/* ---------- 27. Galeri Sayfası ---------- */
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.gallery-grid .gallery-slide { aspect-ratio: 1; border-radius: var(--radius-md); }

.video-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.video-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-card figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

@media (max-width: 1024px) {
  .gallery-grid, .video-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .certs-grid { grid-template-columns: 1fr; max-width: 640px; }
}
@media (max-width: 700px) {
  .gallery-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* Hub split satırları: dönüşümlü zemin */
.split-section.alt-bg {
  background: var(--bg-sand);
  border-top: 1px solid var(--line-softer);
  border-bottom: 1px solid var(--line-softer);
}
/* Prose (şablon önizleme) genişliği v2 ile hizalandı */
.prose { max-width: 940px; }
