/* ═══════════════════════════════════════════════════════════════
   MUM DANIŞMANLIK — Premium CSS Design System v1.2
   Yeni Alan: mumdanismanlik.com.tr
   Daha aydınlık, ferah, kurumsal premium tasarım
   Mobile-first: 320 → 480 → 768 → 1024 → 1440px
═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ─── CSS Değişkenleri ──────────────────────────────────────── */
:root {
  /* Renkler — Daha aydınlık lacivert palette */
  --navy:        #0d1f3c;
  --navy-mid:    #142a50;
  --navy-light:  #1e3a6e;
  --navy-ultra:  #f0f4ff;   /* ultra açık lacivert arka plan */
  --gold:        #b8942a;
  --gold-bright: #d4a940;
  --gold-light:  #e8c97a;
  --gold-pale:   #fdf5e0;
  --gold-border: rgba(184,148,42,0.25);

  --white:       #ffffff;
  --off-white:   #f7f8fc;   /* daha beyaza yakın, ferah */
  --surface:     #f2f4f9;   /* kartlar için */
  --border:      #e2e6f0;
  --border-dark: #c8cfe0;

  --text:        #1a2332;
  --text-mid:    #4a5568;
  --text-muted:  #718096;
  --text-light:  #a0aec0;

  /* Gölgeler — daha yumuşak ve ferah */
  --shadow-xs: 0 1px 3px rgba(13,31,60,0.06);
  --shadow-sm: 0 2px 8px rgba(13,31,60,0.08);
  --shadow-md: 0 6px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 16px 48px rgba(13,31,60,0.13);
  --shadow-xl: 0 24px 64px rgba(13,31,60,0.16);
  --shadow-gold: 0 8px 24px rgba(184,148,42,0.25);

  /* Layout */
  --max-width: 1280px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Tipografi */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* Animasyon */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);
  --transition-slow: all 0.4s var(--ease);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 480px) { .container { padding: 0 1.5rem; } }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1440px) { .container { padding: 0 3rem; } }

/* ─── Tipografi ─────────────────────────────────────────────── */
h1 { font-family: var(--font-serif); font-size: clamp(1.75rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.15; }
h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 3.5vw, 2.25rem); font-weight: 600; line-height: 1.2; }
h3 { font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.3; }
p  { line-height: 1.8; }

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-title { color: var(--navy); margin-bottom: 0.75rem; }
.section-desc  { color: var(--text-muted); max-width: 560px; font-size: 1rem; line-height: 1.75; }

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 1.25rem;
  max-width: var(--max-width); margin: 0 auto;
}
@media (min-width: 768px) { .header-inner { padding: 0 2rem; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}
.logo-text-name {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.3px; line-height: 1.1;
}
.logo-text-sub {
  font-size: 0.58rem; color: var(--gold); letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600;
}

/* Phone in header (Google Ads uyumlu) */
.header-phone {
  display: none;
  align-items: center; gap: 6px;
  color: var(--navy); font-weight: 700; font-size: 0.875rem;
  padding: 0.4rem 0.875rem;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.header-phone:hover { border-color: var(--gold); color: var(--gold); }
@media (min-width: 768px) { .header-phone { display: flex; } }

/* Nav */
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-link {
  color: var(--text-mid); font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 0.85rem; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--surface); }
.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white) !important; font-weight: 700;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold) !important;
}

/* Mobile burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 1.5rem;
  overflow-y: auto; z-index: 999;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block; color: var(--text); padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--navy); padding-left: 4px; }
.mobile-menu-phone { margin-top: 1.5rem; }
.mobile-menu-phone a { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

@media (max-width: 959px) {
  .nav-links { display: none !important; }
  .burger { display: flex !important; }
}
@media (min-width: 960px) { .mobile-menu { display: none !important; } }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 50%, #1a2f5e 100%);
  padding: 5.5rem 1.25rem 4rem;
  position: relative; overflow: hidden;
  min-height: 85vh;
  display: flex; align-items: center;
}
@media (min-width: 768px) { .hero { padding: 7rem 2rem 5rem; } }
@media (min-width: 1440px) { .hero { min-height: 80vh; } }

/* Dekoratif arka plan */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184,148,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(30,58,110,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 750px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-desc {
  color: rgba(255,255,255,0.75); font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.85; max-width: 600px; margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Review badge in hero */
.hero-review-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.hero-review-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.hero-review-text  { color: rgba(255,255,255,0.85); font-size: 0.82rem; }
.hero-review-count { font-weight: 700; color: var(--white); }

.hero-stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-number { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label  { font-size: 0.68rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ─── BUTONLAR ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.3px; border: none; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  font-family: var(--font-sans);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy); box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,148,42,0.4); filter: brightness(1.05); }

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { box-shadow: var(--shadow-md); }

.btn-wa { background: #16a34a; color: var(--white); }
.btn-wa:hover { background: #15803d; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg  { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section      { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-sm   { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-white  { background: var(--white); }
.section-light  { background: var(--off-white); }
.section-surface{ background: var(--surface); }
.section-navy   { background: var(--navy); }
.section-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-header .section-desc { margin: 0.75rem auto 0; }

/* ─── STATS BAND ────────────────────────────────────────────── */
.stats-band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-band-inner { padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px)  { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }

.stat-item {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:hover { background: var(--off-white); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label  { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

/* ─── KARTLAR ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,148,42,0.35);
}
.card-elevated { box-shadow: var(--shadow-md); border: none; }
.card-body { padding: clamp(1.25rem, 3vw, 2rem); }
.card-header-navy {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: clamp(1.25rem, 3vw, 2rem);
}

/* Hizmet kartı */
.service-card { display: flex; flex-direction: column; }
.service-card .card-body { flex: 1; display: flex; flex-direction: column; }
.service-card .btn { margin-top: auto; align-self: flex-start; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.badge-gold { background: rgba(184,148,42,0.12); border: 1px solid var(--gold-border); color: var(--gold); }
.badge-navy { background: var(--navy-ultra); border: 1px solid rgba(13,31,60,0.15); color: var(--navy); }
.badge-white{ background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); }

/* ─── GRID ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.875rem, 2vw, 1.25rem); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.875rem, 2vw, 1.25rem); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.875rem; }

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-current { color: var(--gold-light); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border-dark); box-shadow: var(--shadow-xs); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  background: none; border: none; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question.open  { color: var(--gold); }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--text-muted);
  transition: var(--transition);
}
.faq-question.open .faq-chevron { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; color: var(--text-mid); font-size: 0.875rem; line-height: 1.75; border-top: 1px solid var(--border); }
.faq-answer.open { display: block; }

/* ─── TESTIMONIALS / REVIEWS ────────────────────────────────── */
.review-aggregate {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.review-score {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.review-stars { color: #f59e0b; letter-spacing: 3px; font-size: 1.1rem; }
.review-meta  { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.review-meta strong { color: var(--navy); }

.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: relative; transition: var(--transition-slow);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-border); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 0.75rem; right: 1.25rem;
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: 0.12; pointer-events: none;
}
.stars       { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { color: var(--text-mid); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.review-author     { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.review-author-sub { color: var(--text-muted); font-size: 0.75rem; margin-top: 2px; }

/* ─── PAGE HERO (iç sayfalar) ───────────────────────────────── */
.page-header-section {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2f5e 100%);
  padding: clamp(4rem, 8vw, 6rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
  position: relative; overflow: hidden;
}
.page-header-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(184,148,42,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── İÇERİK LAYOUT (makale + sidebar) ─────────────────────── */
.content-layout {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start;
}
@media (min-width: 1024px) {
  .content-layout { grid-template-columns: 1fr 380px; gap: 3.5rem; }
  .sidebar-sticky { position: sticky; top: 84px; }
}

/* ─── FORM SİSTEMİ ──────────────────────────────────────────── */
.form-box {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.form-box-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-md);
}
.form-box-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.35rem; }
.form-box-subtitle { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 1.75rem; }

.form-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; }
.form-label-dark { color: var(--text-muted); }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-family: var(--font-sans);
  outline: none; transition: var(--transition);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(184,148,42,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input.light, .form-select.light, .form-textarea.light {
  background: var(--off-white); border-color: var(--border); color: var(--text);
}
.form-input.light:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,42,0.1); }
.form-input.light::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 88px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
@media (max-width: 479px) { .form-row { grid-template-columns: 1fr; } }
.form-select option { background: var(--white); color: var(--text); }

/* ─── INFO BOX ──────────────────────────────────────────────── */
.info-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; }
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.info-row:last-child { border: none; }
.info-label { color: var(--text-muted); }
.info-value { font-weight: 700; color: var(--navy); }

/* ─── STEP CARDS ────────────────────────────────────────────── */
.step-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: var(--transition);
}
.step-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.step-number {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--gold-light);
}
.step-title { font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 0.9rem; }
.step-desc  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* ─── CHECK LIST ────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--text-mid); }
.check-icon { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── TOPIC GRID ────────────────────────────────────────────── */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
@media (max-width: 479px) { .topic-grid { grid-template-columns: 1fr; } }
.topic-item {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 0.65rem 0.875rem;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.82rem; color: var(--text-mid);
}

/* ─── SEMANTIC ENTITY TAGS ──────────────────────────────────── */
.entity-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.entity-tag {
  background: var(--navy-ultra); border: 1px solid rgba(13,31,60,0.15);
  color: var(--navy-mid); padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 500;
  transition: var(--transition);
}
.entity-tag:hover { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold); }

/* ─── CITY TAG CLOUD ────────────────────────────────────────── */
.city-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.city-tag {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-mid); padding: 0.3rem 0.7rem;
  border-radius: var(--radius-xs); font-size: 0.75rem; font-weight: 500;
  transition: var(--transition);
}
.city-tag:hover { border-color: var(--gold); color: var(--gold); }
.city-tag-more { background: var(--navy); color: var(--gold-light); border-color: transparent; font-weight: 700; }

/* ─── ALERT BOXES ───────────────────────────────────────────── */
.alert-warning { background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius-md); padding: 1rem 1.25rem; }
.alert-warning-title { font-weight: 700; color: #92400e; font-size: 0.82rem; margin-bottom: 4px; }
.alert-warning-text  { font-size: 0.8rem; color: #78350f; line-height: 1.6; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius-md); padding: 1rem 1.25rem; }
.alert-info    { background: var(--navy-ultra); border: 1px solid rgba(13,31,60,0.15); border-radius: var(--radius-md); padding: 1rem 1.25rem; color: var(--navy-mid); font-size: 0.875rem; }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: clamp(3.5rem, 7vw, 5rem) 1.25rem; text-align: center; }
.cta-section h2   { color: var(--white); margin-bottom: 1rem; }
.cta-section p    { color: rgba(255,255,255,0.65); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ─── BLOG KARTLAR ──────────────────────────────────────────── */
.blog-card { display: block; transition: var(--transition-slow); }
.blog-card:hover { transform: translateY(-3px); }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.625rem; font-size: 0.75rem; }
.blog-cat  { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.blog-date { color: var(--text-light); }
.blog-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 0.6rem; transition: var(--transition); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-top: 0.875rem; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: clamp(3rem, 7vw, 5rem) 1.25rem clamp(1.5rem, 3vw, 2rem); }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem); margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 480px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.footer-brand-sub  { font-size: 0.58rem; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.75; max-width: 280px; margin-bottom: 1rem; }
.footer-phone { color: var(--gold-light); font-weight: 700; font-size: 0.9rem; }
.footer-email { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: var(--transition);
}
.footer-social-link:hover { background: rgba(184,148,42,0.2); border-color: var(--gold-border); }

.footer-col-title {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-link { display: block; color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 0.5rem; transition: var(--transition); }
.footer-link:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: clamp(1.5rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 0.78rem;
}
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── FLOATING WA BUTTON ────────────────────────────────────── */
.floating-buttons {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  z-index: 999; display: flex; flex-direction: column;
  gap: 0.625rem; align-items: flex-end;
}
@media (min-width: 768px) { .floating-buttons { bottom: 1.75rem; right: 1.75rem; } }

.float-group { display: flex; align-items: center; gap: 0.5rem; }
.float-label {
  background: var(--navy); color: var(--white);
  padding: 0.3rem 0.75rem; border-radius: var(--radius-full);
  font-size: 0.7rem; white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: var(--transition); pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.float-group:hover .float-label { opacity: 1; transform: translateX(0); }
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: var(--shadow-lg);
  transition: var(--transition); text-decoration: none; border: none;
}
@media (min-width: 768px) { .float-btn { width: 54px; height: 54px; } }
.float-btn:hover { transform: scale(1.1); }
.float-btn-wa { background: #16a34a; }

/* ─── RESPONSIVE YARDIMCILARI ───────────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.hide-desktop { display: block; }
@media (min-width: 768px) { .hide-desktop { display: none; } }

/* ─── ACCESSIBILITY ─────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ─── PRINT ─────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .floating-buttons, .sidebar-sticky { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .hero { background: #fff !important; color: #000 !important; }
}
