/* ==========================================================================
   Ford Özel Servis – Ulu Otomotiv
   Ana stil dosyası — Vanilla CSS, framework yok
   ========================================================================== */

/* --- Değişkenler --- */
:root {
  --primary: #003478;
  --primary-dark: #001B44;
  --primary-light: #1769AA;
  --secondary: #2D7CC0;
  --background: #F4F7FB;
  --surface: #FFFFFF;
  --text: #172033;
  --muted: #667085;
  --border: #D8E1EC;
  --success: #1F9D65;
  --whatsapp: #25D366;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 33, 61, .06), 0 1px 3px rgba(16, 33, 61, .08);
  --shadow: 0 6px 18px rgba(0, 52, 120, .08);
  --shadow-lg: 0 18px 40px rgba(0, 27, 68, .16);

  --container: 1180px;
  --header-h: 118px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
}

/* --- Reset & temel --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--primary-dark); font-weight: 800; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.8rem, 4.2vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
strong { color: var(--primary-dark); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: var(--space-6) 0; }
.section--tight { padding: var(--space-5) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--primary-dark); color: #dbe6f5; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow { display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); margin-bottom: .7rem; }
.section-head { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.lead { font-size: 1.12rem; color: #33415c; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 2000; transition: top .2s; }
.skip-link:focus { top: 0; text-decoration: none; }

:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; border-radius: 4px; }

/* --- Butonlar --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: inherit; font-size: 1rem; font-weight: 700; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none; min-height: 48px;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }
.btn--secondary { background: var(--secondary); color: #fff; }
.btn--secondary:hover { background: var(--primary-light); color: #fff; }
.btn--wa { background: var(--whatsapp); color: #063a1e; }
.btn--wa:hover { background: #1ebe5a; color: #063a1e; }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); background: #eef4fb; color: var(--primary); }
.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { background: #eaf1fb; color: var(--primary-dark); }
.btn--lg { padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* --- Üst bilgi çubuğu --- */
.topbar { background: var(--primary-dark); color: #cfe0f5; font-size: .86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-block: 6px; flex-wrap: wrap; }
.topbar a { color: #cfe0f5; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar__meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__meta span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
.topbar__wa { background: var(--whatsapp); color: #063a1e !important; padding: 5px 12px; border-radius: 999px; font-weight: 700; }
.topbar__wa:hover { color: #063a1e !important; background: #1ebe5a; }
@media (max-width: 860px) { .topbar__hideable { display: none; } }

/* --- Header --- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,27,68,.05); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__logo { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-size: 1.34rem; font-weight: 800; color: var(--primary-dark); letter-spacing: -.02em; }
.brand__name b { color: var(--primary); }
.brand__sub { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--secondary); margin-left: 52px; margin-top: 2px; }
.brand--img { flex-direction: row; align-items: center; }
.brand__img { height: 52px; width: auto; max-width: 240px; display: block; }
@media (max-width: 600px) { .brand__img { height: 42px; max-width: 190px; } }

.primary-nav .nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; margin: 0; display: flex; align-items: center; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; font-family: inherit; font-weight: 600; font-size: .95rem; color: var(--text); padding: 10px 12px; border-radius: var(--radius-sm); transition: background .18s, color .18s; white-space: nowrap; }
.nav-link:hover { background: #eef4fb; color: var(--primary); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--primary); background: #e7f0fb; }

/* Dropdown caret — gerçek inline SVG (chevron) */
.nav-caret { display: inline-flex; align-items: center; justify-content: center; border: 0; background: none; padding: 4px; margin-left: -4px; cursor: pointer; color: var(--muted); border-radius: 6px; }
.nav-caret svg { width: 15px; height: 15px; transform: rotate(90deg); transition: transform .2s; }
.has-dropdown .nav-link { padding-right: 2px; }
.nav-item.is-open > .nav-caret svg { transform: rotate(-90deg); }
.nav-item.is-open > .nav-caret { color: var(--primary); }

/* Dropdown paneli */
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 1100; }
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--text); font-size: .93rem; font-weight: 600; white-space: nowrap; }
.dropdown a:hover { background: #eef4fb; color: var(--primary); text-decoration: none; }
.dropdown__all { color: var(--primary) !important; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 12px !important; display: flex !important; align-items: center; gap: 6px; }
.dropdown__all svg { width: 15px; height: 15px; }
.dropdown--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 8px; min-width: 440px; }
.dropdown--wide .dropdown__all { grid-column: 1 / -1; justify-content: flex-start; }

/* Masaüstü: hover ile açılır */
@media (hover: hover) and (min-width: 961px) {
  .nav-item.has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: none; }
  .nav-item.has-dropdown:hover > .nav-link { background: #eef4fb; color: var(--primary); }
  .nav-item.has-dropdown:hover > .nav-caret svg { transform: rotate(-90deg); }
  .nav-item.has-dropdown:hover > .nav-caret { color: var(--primary); }
}
/* Tıklama (klavye/dokunmatik) ile açık durum */
.nav-item.is-open > .dropdown { opacity: 1; visibility: visible; transform: none; }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__actions .btn { padding: 11px 16px; font-size: .92rem; }

.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; color: var(--primary-dark); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 1024px) {
  .header__actions .btn span { display: none; }
  .header__actions .btn { padding: 12px; }
}
@media (max-width: 960px) {
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw);
    background: var(--surface); padding: 86px 18px 30px; transform: translateX(100%);
    transition: transform .28s ease; box-shadow: var(--shadow-lg); overflow-y: auto; z-index: 1100;
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  .primary-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; }
  .nav-link { flex: 1; padding: 15px 8px; font-size: 1.05rem; border-radius: 0; }
  .nav-caret { display: inline-flex; width: 46px; height: 46px; justify-content: center; }
  .nav-caret svg { transform: none; width: 20px; height: 20px; }
  .nav-item.is-open > .nav-caret svg { transform: rotate(90deg); }

  .dropdown, .dropdown--wide {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0 0 10px 10px; min-width: 0; width: 100%; flex-basis: 100%;
    display: none; background: transparent; z-index: auto;
  }
  .dropdown::before { display: none; }
  .nav-item.is-open > .dropdown { display: block; }
  .nav-item.is-open > .dropdown.dropdown--wide { display: grid; grid-template-columns: 1fr; gap: 0; }
  .dropdown a { padding: 10px 10px; font-size: .98rem; }
  .dropdown__all { margin-top: 4px; }

  .nav-toggle { display: inline-flex; z-index: 1200; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,27,68,.5); opacity: 0; visibility: hidden; transition: opacity .28s; z-index: 1050; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* --- Hero --- */
.hero { position: relative; background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 130%); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 82% 18%, rgba(45,124,192,.42), transparent 45%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: var(--space-6) 0; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero__lead { font-size: 1.16rem; color: #d7e6fa; max-width: 46ch; margin-bottom: 1.6em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.8em; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; list-style: none; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #e4eefb; font-weight: 600; }
.hero__trust svg { width: 20px; height: 20px; color: #7fc0f0; flex: none; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: #0a2a5c; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.95); color: var(--primary-dark); padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow); font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.hero__badge svg { width: 26px; height: 26px; color: var(--success); }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__media { order: -1; aspect-ratio: 16/10; }
}

/* --- Kartlar / grid --- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .2s, border-color .2s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bcd3ec; }
.card__icon { width: 52px; height: 52px; border-radius: 13px; background: #e7f0fb; color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card__icon svg { width: 28px; height: 28px; }
.card__img { margin: -26px -26px 20px -26px; border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0; overflow: hidden; aspect-ratio: 16/10; background: #eaf1fb; border-bottom: 1px solid var(--border); }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { font-size: 1.16rem; margin-bottom: .4em; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: .8em; }
.card__link { font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .18s; }
.card:hover .card__link svg { transform: translateX(4px); }

a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { text-decoration: none; }

/* Kompakt link kartları (hizmet/bölge/model listeleri) */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.tile { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 600; color: var(--text); transition: border-color .18s, transform .15s, box-shadow .18s; }
.tile:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--primary); }
.tile svg { width: 20px; height: 20px; color: var(--secondary); flex: none; }
.tile__arrow { margin-left: auto; color: var(--muted); }

/* --- Adım / süreç --- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; position: relative; }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* --- Özellik listesi (neden biz) --- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list svg { width: 24px; height: 24px; color: var(--success); flex: none; margin-top: 1px; }
.feature-list b { display: block; color: var(--primary-dark); }
.feature-list span { color: var(--muted); font-size: .96rem; }

/* --- Split / info bölümleri --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); aspect-ratio: 4/3; background: #eaf1fb; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* --- Ulu Otomotiv kartı --- */
.uluoto { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; box-shadow: var(--shadow); }
.uluoto h2 { color: #fff; margin-bottom: .35em; }
.uluoto p { color: #dbe9fb; margin: 0; max-width: 60ch; }
@media (max-width: 720px) { .uluoto { grid-template-columns: 1fr; text-align: left; } }

/* --- Semptom / sorun listesi --- */
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .symptom-grid { grid-template-columns: 1fr; } }
.symptom { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--secondary); border-radius: var(--radius-sm); padding: 18px 20px; }
.symptom h3 { font-size: 1.04rem; margin-bottom: .25em; }
.symptom p { color: var(--muted); font-size: .94rem; margin: 0; }

/* --- İçerik / makale tipografisi --- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul li::marker { color: var(--secondary); }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.callout { background: #eaf1fb; border: 1px solid #cddffa; border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 18px 20px; margin: 1.5em 0; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--primary); }
.note { background: #fff7ed; border: 1px solid #fde3c2; border-left: 4px solid #e08c33; border-radius: var(--radius-sm); padding: 16px 20px; margin: 1.5em 0; font-size: .96rem; }

/* İçerik yerleşimi (yan sütunlu) */
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 44px; align-items: start; }
@media (max-width: 960px) { .content-layout { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: calc(76px + 16px); display: grid; gap: 20px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar-card h3 { font-size: 1.1rem; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li { margin: 0; border-bottom: 1px solid var(--border); }
.sidebar-card li:last-child { border-bottom: 0; }
.sidebar-card li a { display: block; padding: 9px 0; color: var(--text); font-size: .95rem; font-weight: 600; }
.sidebar-card li a:hover { color: var(--primary); text-decoration: none; }
.sidebar-cta { background: linear-gradient(140deg, var(--primary) 0%, var(--primary-light) 100%); color: #fff; text-align: center; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: #d7e6fa; font-size: .95rem; }
.sidebar-cta .btn { margin-top: 6px; }

/* --- FAQ / accordion --- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; background: none; border: 0; font-family: inherit; font-size: 1.04rem; font-weight: 700; color: var(--primary-dark); padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item__q:hover { background: #f6f9fd; }
.faq-item__q svg { width: 22px; height: 22px; color: var(--secondary); flex: none; transition: transform .25s; }
.faq-item__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-item__a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item__a p { color: var(--muted); margin: 0; padding-bottom: 20px; }
.faq-item__q[aria-expanded="true"] + .faq-item__a { padding-top: 2px; }

/* --- Breadcrumb --- */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 12px 0; margin: 0; font-size: .88rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); }
.breadcrumb a { color: var(--primary-light); font-weight: 600; }
.breadcrumb svg { width: 15px; height: 15px; color: var(--border); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* --- Sayfa başlığı (iç sayfalar) --- */
.page-hero { background: linear-gradient(140deg, var(--primary-dark), var(--primary)); color: #fff; padding: var(--space-5) 0; }
.page-hero h1 { color: #fff; max-width: 20ch; margin-bottom: .4em; }
.page-hero p { color: #d7e6fa; max-width: 62ch; font-size: 1.08rem; margin: 0; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 18px; color: #bcd3ec; font-size: .95rem; }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta svg { width: 18px; height: 18px; color: #7fc0f0; }

/* --- CTA bandı --- */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { color: #d7e6fa; max-width: 56ch; margin: 0 auto 1.4em; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* --- Randevu formu --- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; color: var(--primary-dark); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: #fbfdff; color: var(--text); width: 100%; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(45,124,192,.18); }
.field input:invalid:not(:placeholder-shown) { border-color: #e0b4ad; }
.field__error { color: #c0392b; font-size: .84rem; min-height: 1em; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .field__error { display: block; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 14px; }

/* --- Sabit WhatsApp butonu --- */
.wa-float { position: fixed; right: 18px; bottom: 84px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: var(--whatsapp); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,.45); transition: transform .18s; }
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; }
@media (min-width: 861px) { .wa-float { bottom: 24px; } }

/* --- Mobil alt bar --- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none; grid-template-columns: repeat(4, 1fr); background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(0,27,68,.08); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px 8px; font-size: .72rem; font-weight: 700; color: var(--primary-dark); }
.mobile-bar a:hover { text-decoration: none; }
.mobile-bar svg { width: 22px; height: 22px; }
.mobile-bar a.is-wa { color: var(--whatsapp); }
@media (max-width: 860px) { .mobile-bar { display: grid; } body { padding-bottom: 66px; } .wa-float { bottom: 78px; } }

/* --- Modal --- */
.modal { position: fixed; inset: 0; z-index: 1500; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal[open], .modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,27,68,.55); backdrop-filter: blur(2px); }
.modal__dialog { position: relative; background: var(--surface); border-radius: var(--radius-lg); width: min(560px, 100%); max-height: 90vh; overflow-y: auto; padding: 30px; box-shadow: var(--shadow-lg); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; background: #eef4fb; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--primary-dark); }
.modal__close:hover { background: #dde9f7; }
.modal__close svg { width: 22px; height: 22px; }
.modal h2 { font-size: 1.4rem; }

/* --- Footer --- */
.site-footer { background: var(--primary-dark); color: #b9cbe6; padding: var(--space-6) 0 0; margin-top: var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1em; }
.site-footer a { color: #b9cbe6; }
.site-footer a:hover { color: #fff; }
.footer-brand__name { font-size: 1.3rem; font-weight: 800; color: #fff; }
.footer-brand__name b { color: var(--secondary); }
.footer-brand p { font-size: .95rem; margin-top: 12px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-list a { font-size: .95rem; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: .95rem; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--secondary); flex: none; margin-top: 2px; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--space-5); padding: 20px 0; font-size: .84rem; color: #8fa6c7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a { color: var(--secondary); font-weight: 600; }
.footer-badge { display: inline-flex; align-items: center; gap: 7px; }
.footer-badge svg { width: 16px; height: 16px; }

/* --- Scroll reveal animasyonu --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Yardımcı --- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: var(--space-4); }
.divider { height: 1px; background: var(--border); border: 0; margin: var(--space-5) 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: #e7f0fb; color: var(--primary); font-weight: 600; font-size: .85rem; padding: 6px 13px; border-radius: 999px; }

/* --- 404 --- */
.error-page { text-align: center; padding: var(--space-7) 0; }
.error-page .code { font-size: clamp(4rem, 16vw, 9rem); font-weight: 800; color: var(--primary); line-height: 1; letter-spacing: -.03em; }


/* Layout Fixes */
.checkbox-field { flex-wrap: wrap; }
.checkbox-field .error-msg { flex-basis: 100%; margin-top: -4px; margin-left: 30px; }
.footer__brand a svg, .footer-brand a svg { width: 1.25em; height: 1.25em; vertical-align: -0.25em; margin-left: 0.25em; }
