/* ============================================================
   YILDIZ EMLAK — Tasarım Sistemi
   Lacivert × Altın · Lüks kurumsal · Cormorant Garamond + Jost
   ============================================================ */
:root {
  --navy-950: #0a1020;
  --navy-900: #101a2e;
  --navy-800: #16233d;
  --navy-700: #1f3052;
  --navy-600: #2b3f68;
  --gold: #c9a35c;
  --gold-light: #e3c489;
  --gold-dark: #a8843f;
  --ivory: #f7f3ec;
  --ivory-dark: #efe8db;
  --white: #ffffff;
  --text: #2a2f3a;
  --text-muted: #6b7280;
  --text-light: rgba(247, 243, 236, 0.72);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 12px rgba(10, 16, 32, 0.08);
  --shadow-md: 0 10px 40px rgba(10, 16, 32, 0.14);
  --shadow-gold: 0 10px 36px rgba(201, 163, 92, 0.35);
  --radius: 6px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.container { width: min(1240px, 92%); margin-inline: auto; }

::selection { background: var(--gold); color: var(--navy-950); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-950);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-star { text-align: center; color: var(--gold); }
.preloader-star span {
  display: block; margin-top: 14px;
  font-family: var(--font-body); font-size: 13px; letter-spacing: .5em;
  animation: pulse 1.6s ease-in-out infinite;
}
.star-path {
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: drawStar 1.8s var(--ease-out) forwards;
}
@keyframes drawStar { to { stroke-dashoffset: 0; } }
@keyframes pulse { 50% { opacity: .4; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease-out), box-shadow .45s, height .45s;
  background: linear-gradient(to bottom, rgba(10,16,32,.85), rgba(10,16,32,0));
}
.site-header.scrolled {
  background: rgba(10, 16, 32, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,163,92,.25), var(--shadow-md);
  height: 70px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; width: min(1320px, 94%); margin-inline: auto; }
.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)) brightness(1.5) contrast(0.9); transition: height .45s; }
.site-header.scrolled .brand-logo { height: 42px; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  position: relative; color: var(--ivory); font-size: 15px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold-light);
  padding: 10px 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  transition: all .35s var(--ease-out);
  position: relative; overflow: hidden;
}
.nav-cta:hover { background: var(--gold); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; z-index: 1100; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 6px 0; transition: .35s var(--ease-out); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 30px; font-family: var(--font-body); font-size: 14px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: all .35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease-out);
}
.btn:hover::before { transform: translateX(110%); }
.btn-lg { padding: 16px 38px; font-size: 15px; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-950); }
.btn-gold:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn-navy { background: var(--navy-900); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border-color: rgba(247,243,236,.5); color: var(--ivory); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-navy { border-color: var(--navy-800); color: var(--navy-900); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-900); color: var(--ivory); }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--navy-900); color: var(--ivory); }
.section-dark .section-title { color: var(--ivory); }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 18px;
}
.section-dark .kicker { color: var(--gold); }
.kicker::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(34px, 4.5vw, 56px); color: var(--navy-900); margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-dark .section-title em { color: var(--gold-light); }
.section-lead { font-size: 18px; color: var(--text-muted); max-width: 640px; }
.section-dark .section-lead { color: var(--text-light); }
.section-head { margin-bottom: 60px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }
.section-head.center .kicker::after { content: ''; width: 40px; height: 1px; background: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--ivory); overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M0 160 L160 0' stroke='%23c9a35c' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: 140px 0 100px; }
.hero-kicker {
  font-size: 14px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 16px; margin-bottom: 26px;
}
.hero-kicker::before { content: ''; width: 56px; height: 1px; background: var(--gold); }
.hero-title { font-size: clamp(44px, 6.5vw, 92px); font-weight: 500; max-width: 13ch; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 19px; color: var(--text-light); max-width: 520px; margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 44px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint { 50% { transform: scaleY(.55); opacity: .4; } }

/* Kademeli giriş animasyonu */
.stagger > * { opacity: 0; transform: translateY(36px); animation: riseIn 1s var(--ease-out) forwards; }
.stagger > *:nth-child(1) { animation-delay: .15s; }
.stagger > *:nth-child(2) { animation-delay: .3s; }
.stagger > *:nth-child(3) { animation-delay: .45s; }
.stagger > *:nth-child(4) { animation-delay: .6s; }
.stagger > *:nth-child(5) { animation-delay: .75s; }
@keyframes riseIn { to { opacity: 1; transform: none; } }

/* ---------- İç sayfa hero ---------- */
.page-hero {
  padding: calc(var(--header-h) + 90px) 0 80px;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(201,163,92,.16) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--ivory); position: relative; overflow: hidden;
}
.page-hero::after {
  content: '★'; position: absolute; right: -40px; bottom: -90px;
  font-size: 340px; color: rgba(201,163,92,.07); line-height: 1;
  pointer-events: none;
}
.page-hero .breadcrumb { font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 500; }
.page-hero p { margin-top: 16px; max-width: 620px; color: var(--text-light); font-size: 17px; }

/* ---------- Scroll reveal ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0; transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal { transform: translateY(48px); }
.reveal-left { transform: translateX(-56px); }
.reveal-right { transform: translateX(56px); }
.reveal-scale { transform: scale(.92); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* ---------- Kartlar: hizmet ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); padding: 44px 34px; border-radius: var(--radius);
  border-top: 3px solid transparent; box-shadow: var(--shadow-sm);
  transition: all .5s var(--ease-out);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 110px; height: 110px;
  background: radial-gradient(circle at top right, rgba(201,163,92,.14), transparent 70%);
  transition: transform .5s var(--ease-out);
}
.service-card:hover { transform: translateY(-10px); border-top-color: var(--gold); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scale(2.2); }
.service-icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark);
  margin-bottom: 24px; transition: all .5s var(--ease-out);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy-950); transform: rotate(-8deg) scale(1.08); }
.service-card h3 { font-size: 26px; color: var(--navy-900); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 15px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-size: 13px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-dark);
}
.card-link .arr { transition: transform .35s var(--ease-out); }
.service-card:hover .card-link .arr, .card-link:hover .arr { transform: translateX(6px); }

/* ---------- Kartlar: ilan ---------- */
.listing-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .5s var(--ease-out);
  display: flex; flex-direction: column;
}
.listing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.listing-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.listing-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.listing-card:hover .listing-media img { transform: scale(1.07); }
.listing-media .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(201,163,92,.4); font-size: 64px; font-family: var(--font-display);
}
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 14px; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  border-radius: 2px; backdrop-filter: blur(6px);
}
.badge-satilik { background: rgba(201,163,92,.92); color: var(--navy-950); }
.badge-kiralik { background: rgba(16,26,46,.85); color: var(--gold-light); border: 1px solid rgba(201,163,92,.5); }
.badge-featured { left: auto; right: 14px; background: rgba(247,243,236,.92); color: var(--navy-900); }
.listing-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.listing-loc { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); }
.listing-title { font-size: 22px; color: var(--navy-900); font-weight: 600; }
.listing-card:hover .listing-title { color: var(--gold-dark); }
.listing-meta { display: flex; gap: 18px; font-size: 13.5px; color: var(--text-muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--ivory-dark); }
.listing-price { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--navy-900); }

/* ---------- Kartlar: proje ---------- */
.project-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
  transition: all .5s var(--ease-out);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: all .8s var(--ease-out); }
.project-card:hover img { opacity: .75; transform: scale(1.06); }
.project-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,32,.95) 0%, rgba(10,16,32,.25) 55%, transparent 100%);
}
.project-info { position: relative; z-index: 2; padding: 28px; color: var(--ivory); }
.project-status {
  display: inline-block; padding: 5px 12px; margin-bottom: 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold-light); border-radius: 2px;
}
.project-info h3 { font-size: 24px; font-weight: 600; }
.project-info .project-loc { font-size: 13px; color: var(--text-light); margin-top: 6px; }

/* ---------- Sayaçlar ---------- */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px; text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(48px, 5vw, 72px); font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-num .suffix { font-size: .6em; }
.stat-label { margin-top: 10px; font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-light); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid rgba(201,163,92,.25); border-bottom: 1px solid rgba(201,163,92,.25); background: var(--navy-950); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display); font-size: 22px; font-style: italic; color: rgba(247,243,236,.55);
  display: flex; align-items: center; gap: 64px; white-space: nowrap;
}
.marquee-item::after { content: '★'; font-size: 14px; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Formlar ---------- */
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 48px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 15px;
  border: 1px solid #d9d2c3; border-radius: var(--radius); background: var(--ivory);
  color: var(--text); transition: all .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,163,92,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); }
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 15px; }
.alert-success { background: #eaf5ea; border: 1px solid #bfdfbf; color: #2e6b2e; }
.alert-error { background: #faecec; border: 1px solid #e8c2c2; color: #9b3535; }

/* Form tipi seçici (analiz: arsa / gayrimenkul) */
.type-switch { display: flex; gap: 14px; margin-bottom: 30px; }
.type-switch label {
  flex: 1; cursor: pointer; text-align: center; padding: 18px 16px;
  border: 1.5px solid #d9d2c3; border-radius: var(--radius);
  font-weight: 500; letter-spacing: .06em; transition: all .35s var(--ease-out);
}
.type-switch input { display: none; }
.type-switch input:checked + label, .type-switch label:has(input:checked) {
  border-color: var(--gold); background: linear-gradient(135deg, rgba(201,163,92,.12), rgba(201,163,92,.04));
  color: var(--navy-900); box-shadow: 0 0 0 4px rgba(201,163,92,.12);
}

/* ---------- Filtre çubuğu ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.filter-bar .field { flex: 1; min-width: 160px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 18px; font-size: 13px; letter-spacing: .08em; border-radius: 100px;
  border: 1px solid #d9d2c3; color: var(--text-muted); cursor: pointer;
  transition: all .3s var(--ease-out); background: var(--white);
}
.chip:hover, .chip.active { border-color: var(--gold); color: var(--navy-900); background: rgba(201,163,92,.12); }

/* ---------- Detay sayfaları ---------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }
.detail-aside { position: sticky; top: 110px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: .65; transition: all .3s; border: 2px solid transparent; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { opacity: 1; border-color: var(--gold); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 13px 6px; border-bottom: 1px solid var(--ivory-dark); font-size: 15px; }
.spec-table td:first-child { color: var(--text-muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; width: 42%; }
.spec-table td:last-child { font-weight: 500; color: var(--navy-900); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-tags span {
  padding: 8px 16px; font-size: 13.5px; border-radius: 100px;
  background: rgba(201,163,92,.12); border: 1px solid rgba(201,163,92,.35); color: var(--navy-800);
}
.consultant-box {
  background: var(--navy-900); color: var(--ivory); border-radius: var(--radius);
  padding: 30px; text-align: center;
}
.consultant-box .c-name { font-family: var(--font-display); font-size: 24px; color: var(--gold-light); }
.consultant-box .c-role { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-light); margin: 6px 0 18px; }
.prose { font-size: 16.5px; line-height: 1.85; color: var(--text); }
.prose p + p { margin-top: 1.2em; }
.prose h2, .prose h3 { color: var(--navy-900); margin: 1.6em 0 .6em; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .35s var(--ease-out);
  animation: waPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(8deg); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Footer CTA + Footer ---------- */
.footer-cta {
  background:
    radial-gradient(ellipse 60% 100% at 20% 0%, rgba(201,163,92,.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--ivory); padding: 90px 0;
}
.footer-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 36px; }
.footer-cta-title { font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; max-width: 18ch; }
.footer-cta-title em { color: var(--gold-light); }
.footer-cta p { color: var(--text-light); margin-top: 12px; }
.footer-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.site-footer { background: var(--navy-950); color: var(--text-light); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { height: 56px; width: auto; filter: brightness(1.6) contrast(.9); margin-bottom: 16px; }
.footer-since { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--gold); margin-bottom: 12px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col a { display: block; padding: 6px 0; font-size: 15px; transition: all .3s; }
.footer-col a:hover { color: var(--gold-light); padding-left: 8px; }
.footer-addr { font-size: 14.5px; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(201,163,92,.18); padding: 22px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.footer-consultants { color: var(--gold); }

/* ---------- Yardımcılar ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.gold-rule { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 22px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .main-nav {
    position: fixed; inset: 0; z-index: 1050;
    background: rgba(10,16,32,.98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 28px;
    opacity: 0; visibility: hidden; transition: all .45s var(--ease-out);
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav .nav-link { font-size: 20px; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
}
@media (max-width: 560px) {
  .footer-grid, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
