/* ============================================
   USTA ŞANZIMAN — HEPİYİ-INSPIRED DESIGN
   ============================================ */

:root {
  --red: #C1121F;
  --red-dark: #9B0F1A;
  --red-light: #E8323E;
  --red-bg: #C1121F;
  --red-glow: rgba(193, 18, 31, 0.15);
  --black: #1A1028;
  --text: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --cream: #FFF8F4;
  --cream-dark: #FFF0E8;
  --warm: #FFF5EF;
  --soft-gray: #F8F7FA;
  --border: #E8E4EF;
  --border-light: #F0EDF5;
  --white: #FFFFFF;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-2xl: 0 24px 64px rgba(0,0,0,0.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.1);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--black); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-gear { width: 48px; height: 48px; animation: spin 1.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-text {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }
[data-reveal-delay="6"] { transition-delay: 0.48s; }
[data-reveal-delay="7"] { transition-delay: 0.56s; }
[data-reveal-delay="8"] { transition-delay: 0.64s; }
[data-reveal-delay="9"] { transition-delay: 0.72s; }

/* ============================================
   BUTTONS — Hepiyi Style
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-sm { padding: 10px 24px; font-size: 13px; }
.btn-md { padding: 14px 32px; }
.btn-lg { padding: 16px 40px; font-size: 15px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 24px rgba(193,18,31,0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline-header {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-header:hover {
  border-color: var(--text);
  color: var(--black);
}

.btn-outline-card {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  border-radius: var(--radius-full);
}
.btn-outline-card:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,18,31,0.2);
}

/* ============================================
   HEADER — Clean Hepiyi Style
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all var(--t-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo img { height: 38px; width: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
}
.nav-link:hover { color: var(--black); background: rgba(0,0,0,0.03); }
.nav-link.active { color: var(--red); font-weight: 600; }
.nav-chevron { transition: transform var(--t-base) var(--ease); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-base) var(--ease);
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 450;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  transition: all var(--t-fast);
}
.dropdown a:hover { color: var(--red); background: rgba(193,18,31,0.04); }
.header-actions { display: flex; align-items: center; gap: 8px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  align-items: center;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease);
  transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--t-base);
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ============================================
   HERO — Colored Background like Hepiyi
   ============================================ */
.hero {
  background: var(--red-bg);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { color: var(--white); }
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.hero-breadcrumb a:hover { color: var(--white); }
.hero-breadcrumb span { opacity: 0.4; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.hero h1 .text-accent { color: rgba(255,255,255,0.85); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
  aspect-ratio: 4/5;
}
/* Soft red light overlay – orijinalliği koruyan modern ışık süzmesi */
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(200, 60, 60, 0.18) 0%, transparent 50%, rgba(140, 40, 40, 0.08) 100%);
  pointer-events: none;
}
.hero-img-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.4s ease, transform 8s var(--ease);
}
.hero-img-layer.hero-img-inactive { opacity: 0; pointer-events: none; }
.hero-image-wrapper:hover .hero-img-layer { transform: scale(1.04); }

/* ============================================
   STICKY PAGE NAV — Hepiyi Style
   ============================================ */
.page-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  transition: box-shadow var(--t-base);
}
.page-nav.stuck { box-shadow: var(--shadow-sm); }
.page-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-nav-inner::-webkit-scrollbar { display: none; }
.page-nav-links { display: flex; gap: 4px; }
.page-nav-link {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  position: relative;
}
.page-nav-link:hover { color: var(--red); background: rgba(193,18,31,0.04); }
.page-nav-link.active {
  color: var(--red);
}
.page-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
.page-nav-cta { flex-shrink: 0; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-warm { background: var(--cream); }
.section-title-center {
  text-align: center;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--red);
}
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ============================================
   FEATURED SERVICE CARDS — Hepiyi Teminat Style
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.featured-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.featured-card-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.featured-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   CHECKLIST — Hepiyi Diğer Teminatlar Style
   ============================================ */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
  max-width: 800px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.checklist-icon { flex-shrink: 0; }
.checklist-item span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* ============================================
   PACKAGE CARDS — Hepiyi Paket Style
   ============================================ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  text-align: center;
  transition: all var(--t-base) var(--ease);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.package-card-visual {
  padding: 0;
  display: block;
  overflow: hidden;
  min-height: 160px;
  background: var(--cream);
}
.package-card-visual-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.package-card-visual--warm { background: var(--cream); }
.package-card-visual--cool { background: #EDE9FE; }
.package-card-visual--green { background: #D1FAE5; }

/* Segmentler bölümü: başlık ve İncele butonları siyah */
#segmentler .section-title-center { color: #000; }
#segmentler .btn-outline-card {
  background: transparent;
  color: #000;
  border-color: #000;
}
#segmentler .btn-outline-card:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.package-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 24px 24px 12px;
}
.package-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px;
  margin-bottom: 24px;
}
.package-card .btn {
  margin-bottom: 28px;
}

/* ============================================
   ADVANTAGE CARDS — Hepiyi Avantaj Style
   ============================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--t-base) var(--ease);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.advantage-card-img {
  margin-bottom: 18px;
}
.advantage-card strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--black);
}
.advantage-card span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   ASSIST / PROCESS — Hepiyi Asistans Style
   ============================================ */
.assist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.assist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--t-base) var(--ease);
}
.assist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.assist-card-img { margin-bottom: 20px; }
.assist-card strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--black);
}
.assist-card span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.assist-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   STATS — Hepiyi Stats Bar
   ============================================ */
.stats-section {
  padding: 60px 0;
  background: var(--cream);
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  min-width: 200px;
  transition: all var(--t-base) var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.stat-icon { margin-bottom: 12px; }
.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card span {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ============================================
   REGION CARDS
   ============================================ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.region-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease);
}
.region-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(193,18,31,0.15);
}
.region-card-icon { flex-shrink: 0; }
.region-card-info { flex: 1; }
.region-card-info h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.region-card-info span { font-size: 12px; color: var(--text-muted); }
.region-card-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--t-base) var(--ease);
}
.region-card:hover .region-card-arrow { color: var(--red); transform: translateX(4px); }

#bolgeler .section-title-center { color: #27F580; }
#bolgeler .region-card {
  background: #27F580;
  border-color: rgba(255, 255, 255, 0.25);
}
#bolgeler .region-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 40px rgba(39, 245, 128, 0.35);
}
#bolgeler .region-card-icon { color: #000; }
#bolgeler .region-card-info h3 { color: #000; }
#bolgeler .region-card-info span { color: #000; }
#bolgeler .region-card-arrow { color: #000; }
#bolgeler .region-card:hover .region-card-arrow { color: #000; transform: translateX(4px); }

/* ============================================
   FAQ — Hepiyi Style
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.5;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
  margin-left: 20px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 22px; }
.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  padding-left: 20px;
  border-left: 2px solid rgba(193,18,31,0.15);
}

/* ============================================
   BLOG CARDS — Hepiyi Style
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.blog-card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-base) var(--ease);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream), var(--soft-gray));
  color: var(--text-muted);
  font-size: 14px;
  border-radius: 0;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  transition: color var(--t-fast);
}
.blog-card:hover h3 { color: var(--red); }
.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.blog-read-more {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

/* ============================================
   CTA — Hepiyi Bottom Banner
   ============================================ */
.cta-section {
  background: var(--red-bg);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER — Hepiyi Multi-column
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.footer-contact-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.footer-contact-badge small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.footer-contact-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
}
.footer-col a:hover { color: var(--white); transform: translateX(2px); }
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 700 !important;
}
.footer-whatsapp-link:hover { color: #2ee66b !important; }
.footer-whatsapp-icon { flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
}
.footer-note { color: rgba(255,255,255,0.3); font-size: 12px; }

/* Footer SMR Medya band — görsele göre ortalanmış blok */
.footer-credits {
  margin-top: 0;
  padding: 12px 0 8px;
}
.footer-credits .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-credits-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.footer-credits-link:hover { opacity: 0.9; color: #fff; }
.footer-credits-logo-img {
  height: 28px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.footer-credits-service {
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-credits-link { flex-wrap: wrap; justify-content: center; text-align: center; }
  .footer-credits-logo-img { max-width: 200px; }
  .footer-credits-service { width: 100%; text-align: center; margin-top: 6px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(3, 1fr); }
  .assist-grid { grid-template-columns: repeat(3, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    padding: 88px 24px 24px;
    box-shadow: var(--shadow-2xl);
    transition: right var(--t-base) var(--ease);
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.active { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link {
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
  }
  .has-dropdown.mobile-open .dropdown { display: block; }
  .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .page-nav-cta { display: none; }
  .page-nav-links { gap: 0; }
  .page-nav-link { padding: 8px 14px; font-size: 12.5px; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .assist-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .blog-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .assist-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; align-items: center; }
}

/* ============================================
   SUBPAGE SPECIFIC
   ============================================ */
.page-hero {
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero .container { max-width: 800px; }
/* page-hero içinde hero-breadcrumb da görünür olsun (krem arka plan) */
.page-hero .hero-breadcrumb {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.page-hero .hero-breadcrumb a { color: var(--text-muted); }
.page-hero .hero-breadcrumb a:hover { color: var(--red); }
.page-hero .hero-breadcrumb span { opacity: 0.5; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { font-size: 12px; opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.content-section { padding: 80px 0; }
.content-section .container { max-width: 800px; }
.content-section h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin-top: 56px; margin-bottom: 18px; }
.content-section h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-top: 36px; margin-bottom: 14px; }
.content-section p { font-size: 16px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 18px; }
.content-section ul { padding-left: 0; margin-bottom: 20px; }
.content-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.related-links {
  margin-top: 56px;
  padding: 36px;
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.related-links h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 18px; margin-top: 0; }
.related-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.related-links-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
}
.related-links-grid a:hover { color: var(--red); border-color: var(--red); transform: translateX(2px); }
.related-links-grid a::before { content: '\2192'; color: var(--red); font-size: 13px; font-weight: 600; }

@media (max-width: 768px) {
  .related-links-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--t-base) var(--ease);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.gallery-item .placeholder-box {
  aspect-ratio: 4/3;
  border-radius: 0;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-card-body strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}
.contact-card-body a {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  transition: color var(--t-fast);
}
.contact-card-body a:hover { color: var(--red-dark); }
.contact-card-body span {
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border-light);
}
.contact-form-wrapper h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(193,18,31,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; margin-top: 8px; }

.contact-whatsapp-wrapper > p { margin-bottom: 20px; }
.contact-whatsapp-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0 0;
}
.contact-whatsapp-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  align-self: flex-start;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}
.contact-whatsapp-phone {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.map-placeholder {
  margin-top: 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
}
