/* =========================================================
   Nakliyat Bizden — Ana Stil Dosyası
   ========================================================= */

:root {
  --navy-950: #0A1329;
  --navy-900: #0F1B3C;
  --navy-800: #16264F;
  --navy-700: #203263;
  --accent: #FF7A30;
  --accent-dark: #E85D04;
  --accent-light: #FFE4D2;
  --ink: #14181F;
  --gray-600: #5B6472;
  --gray-400: #8891A0;
  --gray-200: #E4E8EE;
  --gray-100: #EEF1F5;
  --gray-50: #F7F8FA;
  --white: #FFFFFF;
  --success: #1E9E5A;
  --danger: #D92D20;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(15, 27, 60, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 27, 60, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 27, 60, 0.18);
  --font-head: 'Manrope', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; margin: 0 0 .5em; color: var(--navy-950); }
p { line-height: 1.7; color: var(--gray-600); margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff;
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.ic-sm { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }
.icon { width: 24px; height: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(255,122,48,.35); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--light:hover { background: rgba(255,255,255,.22); }
.btn--outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn--outline:hover { background: var(--navy-900); color: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-950); color: rgba(255,255,255,.85); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; }
.topbar__contact { display: flex; gap: 22px; }
.topbar__contact a { display: inline-flex; align-items: center; opacity: .9; }
.topbar__contact a:hover { color: var(--accent); }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { opacity: .8; }
.topbar__social a:hover { opacity: 1; color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy-900); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 24px rgba(10,19,41,.18);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 21px; color: #fff; }
.brand__mark {
  display: inline-flex; width: 42px; height: 42px; flex-shrink: 0; color: #fff !important;
  background: linear-gradient(150deg, #FF8F4D 0%, var(--accent) 55%, var(--accent-dark) 100%);
  border-radius: 12px; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(255,122,48,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.brand__mark .icon, .brand__mark .ic-brand { width: 25px; height: 21px; color: #fff; }
.brand__text em { font-style: normal; color: var(--accent); }

.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav__head, .main-nav__foot { display: none; }
.ic-navmob { display: none; }
.main-nav a { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.82); font-weight: 600; font-size: 15px; padding: 8px 0; position: relative; line-height: 1; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent);
  transition: width .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.ic-toggle-open, .ic-toggle-close { width: 26px; height: 26px; }
.ic-toggle-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-toggle-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-toggle-close { display: block; }

/* ---------- Flash ---------- */
.flash-stack { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.flash { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14px; }
.flash--success { background: #E7F8EE; color: var(--success); border: 1px solid #BEEBD1; }
.flash--error { background: #FDECEC; color: var(--danger); border: 1px solid #F6C6C4; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: radial-gradient(120% 140% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: #fff; padding: 88px 0 140px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 75%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,122,48,.15); color: var(--accent);
  border: 1px solid rgba(255,122,48,.35); padding: 7px 16px; border-radius: 100px; font-weight: 700; font-size: 13px; margin-bottom: 20px;
}
.hero h1 { color: #fff; font-size: clamp(32px, 4.2vw, 52px); max-width: 640px; }
.hero h1 span { color: var(--accent); }
.hero__lead { color: rgba(255,255,255,.78); font-size: 17px; max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__trust div { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-weight: 600; font-size: 14px; }
.hero__trust .icon { color: var(--accent); }

/* Teklif kart formu */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); color: var(--ink);
}
.quote-card h3 { font-size: 19px; margin-bottom: 4px; }
.quote-card p.sub { font-size: 13px; margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--navy-900); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; background: var(--gray-50); transition: border-color .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-card .btn { margin-top: 6px; }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: 10px; text-align: center; }

/* ---------- Section basics ---------- */
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--gray { background: var(--gray-50); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow { display: inline-block; color: var(--accent); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }
.section-head p { font-size: 16px; }
.section-head.left { text-align: left; margin: 0 0 40px; }

/* ---------- Neden biz / özellikler ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-quick-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy-900); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card__icon .icon { color: var(--accent); }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin: 0; }

/* ---------- Hizmetler teaser ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; padding: 32px 26px; border-radius: var(--radius-md); background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom; transition: transform .25s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card__icon .icon { color: var(--accent-dark); }
.service-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.service-card p { font-size: 13.5px; margin-bottom: 14px; }
.service-card__text { font-size: 13.5px; color: var(--gray-600); }
.service-card__text p { margin-bottom: 10px; }
.service-card__text ul, .service-card__text ol { margin: 0; padding-left: 20px; }
.service-card__text li { margin-bottom: 6px; font-weight: 500; font-size: 13px; }
.service-card a { font-size: 13.5px; font-weight: 700; color: var(--navy-900); display: inline-flex; align-items: center; gap: 4px; }
.service-card a .icon { width: 16px; height: 16px; transition: transform .2s; }
.service-card a:hover .icon { transform: translateX(3px); }

/* ---------- Süreç adımları ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { text-align: center; padding: 0 18px; position: relative; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy-900); color: var(--accent); font-family: var(--font-head);
  font-weight: 800; font-size: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; position: relative; z-index: 2;
}
.process-step h3 { font-size: 16px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; }
.process-line {
  position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: repeating-linear-gradient(90deg, var(--gray-200) 0 8px, transparent 8px 16px);
}

/* ---------- İstatistik şeridi ---------- */
.stats-strip { background: var(--navy-950); color: #fff; padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid .num { font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--accent); }
.stats-grid .label { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 4px; }

/* ---------- Hakkımızda blok ---------- */
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-media { position: relative; width: 100%; }
.about-media__inner { position: relative; display: block; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--navy-800); }
.about-media__inner img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -22px; right: -22px; background: #fff; border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
}
.about-badge .icon { width: 34px; height: 34px; color: var(--accent); }
.about-badge strong { display: block; font-family: var(--font-head); font-size: 20px; color: var(--navy-950); }
.about-badge span { font-size: 12px; color: var(--gray-600); }
.about-list { margin: 24px 0; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--navy-950); font-size: 15px; }
.about-list .icon { color: var(--success); flex-shrink: 0; margin-top: 2px; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--gray-100); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,19,41,.75) 100%);
  opacity: 0; transition: opacity .25s ease; display: flex; align-items: flex-end; padding: 14px; color: #fff; font-weight: 700; font-size: 13px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-empty { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.gallery-empty .icon { width: 48px; height: 48px; margin: 0 auto 16px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(10,19,41,.92); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; background: rgba(255,255,255,.12); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ---------- Placeholder (hizmetler/blog) ---------- */
.placeholder-block { text-align: center; padding: 110px 24px; }
.placeholder-block .icon-wrap {
  width: 84px; height: 84px; border-radius: 24px; background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
}
.placeholder-block .icon-wrap .icon { width: 38px; height: 38px; }
.placeholder-block h1 { font-size: 28px; margin-bottom: 12px; }
.placeholder-block p { max-width: 460px; margin: 0 auto 28px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(120deg, var(--navy-800), var(--navy-950)); color: #fff; padding: 52px 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,.75); margin: 0; }
.cta-strip__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer { margin-bottom: 16px; }
.footer-col h3 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 24px; font-size: 12.5px; flex-wrap: wrap; gap: 8px; }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  z-index: 90; animation: pulse-wa 2.4s infinite;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
@keyframes pulse-wa { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ---------- Sayfa üstü başlık şeridi (iç sayfalar) ---------- */
.page-hero { background: var(--navy-900); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero__inner { position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); margin: 0; }

/* ---------- İletişim sayfası ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card { width: 100%; box-sizing: border-box; background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: #fff; font-size: 20px; }
.contact-info-card p { color: rgba(255,255,255,.7); }
.contact-info-list { margin-top: 26px; display: grid; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .ic-wrap { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,122,48,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-list .ic-wrap .icon { color: var(--accent); width: 20px; height: 20px; }
.contact-info-list strong { display: block; color: #fff; font-size: 14.5px; }
.contact-info-list span { font-size: 13.5px; color: rgba(255,255,255,.65); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; margin-top: 26px; border: 0; width: 100%; height: 220px; }
.form-card { width: 100%; box-sizing: border-box; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }

/* ---------- Admin genel (login vb ortak) ---------- */
.admin-shell { min-height: 100vh; display: flex; }

/* ---------- Nav dropdown ---------- */
.has-dropdown { position: relative; }
.ic-caret { width: 13px; height: 13px; transform: rotate(90deg); transition: transform .2s ease; }
.has-dropdown:hover .ic-caret { transform: rotate(270deg); }
.dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px;
  display: flex; gap: 32px; min-width: 460px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; z-index: 200;
}
.has-dropdown:hover .dropdown-panel, .has-dropdown.is-open .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-panel--single { min-width: 240px; }
.dropdown-col { display: flex; flex-direction: column; gap: 4px; min-width: 190px; }
.dropdown-col__title { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-dark); margin-bottom: 6px; }
.dropdown-col a { color: var(--navy-950); font-weight: 600; font-size: 14px; padding: 7px 8px; border-radius: 8px; }
.dropdown-col a:hover { background: var(--gray-50); color: var(--accent-dark); }

/* ---------- FAQ / Accordion ---------- */
.accordion { display: grid; gap: 12px; max-width: 780px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: #fff; overflow: hidden; }
.accordion-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head);
  font-weight: 700; font-size: 15.5px; color: var(--navy-950);
}
.accordion-item__q .ic-plus { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform .25s ease; }
.accordion-item.is-open .ic-plus { transform: rotate(45deg); }
.accordion-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-item__a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--gray-600); line-height: 1.7; }
.accordion-item.is-open .accordion-item__a { max-height: 500px; }
.faq-cta { text-align: center; margin-top: 32px; }

/* ---------- Prose / sozlesme sayfalari ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: 20px; margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16.5px; margin-top: 22px; }
.prose p { font-size: 15px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--gray-600); }
.prose li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; }
.prose strong { color: var(--navy-950); }
.prose .updated-note { font-size: 13px; color: var(--gray-400); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose table th, .prose table td { padding: 10px 14px; border: 1px solid var(--gray-200); font-size: 14px; text-align: left; }
.prose table th { background: var(--gray-50); font-family: var(--font-head); }

/* ---------- Belge / sertifika kartlari ---------- */
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.doc-card { width: 100%; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; background: #fff; text-align: center; }
.doc-card__img { aspect-ratio: 3/4; background: var(--gray-100); overflow: hidden; }
.doc-card__img img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.doc-card__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--gray-400); padding: 16px; }
.doc-card__placeholder .icon { width: 30px; height: 30px; }
.doc-card__placeholder span { font-size: 12px; }
.doc-card__label { padding: 12px; font-size: 13px; font-weight: 700; color: var(--navy-950); }

/* ---------- Blog kartlari ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { width: 100%; display: block; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img { aspect-ratio: 16/10; background: var(--gray-100); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__img--placeholder { display: flex; align-items: center; justify-content: center; color: var(--gray-400); }
.blog-card__body { padding: 20px; }
.blog-card__date { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-400); font-weight: 600; margin-bottom: 8px; }
.blog-card__body h3 { font-size: 16.5px; margin-bottom: 8px; color: var(--navy-950); }
.blog-card__body p { font-size: 13.5px; color: var(--gray-600); margin-bottom: 14px; }
.blog-card__more { font-size: 13px; font-weight: 700; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Zaman cizelgesi (sistem nasil calisir) ---------- */
.timeline { max-width: 760px; margin: 0 auto; display: grid; gap: 0; }
.timeline-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; position: relative; padding-bottom: 40px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step__dot {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy-900); color: var(--accent); display: flex;
  align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 20px; z-index: 1;
}
.timeline-step:not(:last-child)::before {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: -6px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--gray-200) 0 8px, transparent 8px 16px);
}
.timeline-step__body h3 { font-size: 17px; margin-bottom: 6px; }
.timeline-step__body p { margin: 0; font-size: 14.5px; }

/* ---------- Fiyat faktorleri ---------- */
.factor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.factor-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 26px; text-align: center; }
.factor-card .factor-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.factor-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.factor-card p { font-size: 13.5px; margin: 0; }
.price-note {
  background: var(--gray-50); border: 1px dashed var(--gray-200); border-radius: var(--radius-md); padding: 22px 26px;
  font-size: 14px; color: var(--gray-600); margin-top: 32px; display: flex; gap: 14px; align-items: flex-start;
}
.price-note .icon { color: var(--accent); flex-shrink: 0; }

/* ---------- Musteri yorumlari bos durum ---------- */
.testimonial-empty {
  text-align: center; max-width: 520px; margin: 0 auto; padding: 56px 30px; border: 1px dashed var(--gray-200);
  border-radius: var(--radius-lg); background: var(--gray-50);
}
.testimonial-empty .icon-wrap {
  width: 64px; height: 64px; border-radius: 20px; background: var(--accent-light); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.testimonial-empty .icon-wrap .icon { width: 30px; height: 30px; }

/* ---------- Talep formu ---------- */
.request-form { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.request-form fieldset { border: none; padding: 0; margin: 0 0 30px; }
.request-form fieldset:last-of-type { margin-bottom: 0; }
.request-form legend {
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--navy-950); padding: 0 0 16px;
  display: flex; align-items: center; gap: 10px; width: 100%; border-bottom: 1px solid var(--gray-200); margin-bottom: 20px;
}
.request-form legend .icon { color: var(--accent); }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.checkbox-pill {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--navy-950);
  transition: border-color .2s, background .2s;
}
.checkbox-pill:has(input:checked) { border-color: var(--accent); background: var(--accent-light); }
.checkbox-pill input { accent-color: var(--accent); width: 16px; height: 16px; }
.request-steps { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.request-steps span { font-size: 12.5px; font-weight: 700; color: var(--gray-400); padding: 7px 16px; border-radius: 100px; background: var(--gray-100); }

/* ---------- Turkiye Haritasi + Fiyat Hesaplayici ---------- */
.map-calc-section { background: var(--navy-950); padding: 90px 0; position: relative; overflow: hidden; }
.map-calc-section::before {
  content: ''; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-calc-section .section-head h2, .map-calc-section .section-head p { color: #fff; }
.map-calc-section .section-head p { color: rgba(255,255,255,.65); }
.map-calc-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.map-calc-left { width: 100%; display: flex; flex-direction: column; gap: 20px; }

.tr-map-wrap {
  position: relative; min-width: 0; width: 100%; background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 20px;
  aspect-ratio: 1.65 / 1; overflow: hidden; box-shadow: var(--shadow-lg);
}

.map-info-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 26px 28px; flex: 1;
}
.map-info-card h3 { color: #fff; font-size: 17px; margin-bottom: 14px; }
.map-info-card ul { display: grid; gap: 14px; }
.map-info-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.75); }
.map-info-card li .ic-wrap {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(255,122,48,.15); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.map-info-card li .ic-wrap .icon { width: 17px; height: 17px; color: var(--accent); }
.map-info-card li strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.tr-map { position: relative; width: 100%; height: 100%; }
.tr-map.has-route .tr-dot:not(.is-from):not(.is-to) { opacity: .35; }
.tr-dot {
  position: absolute; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0; transition: all .2s ease; z-index: 2;
}
.tr-dot:hover { background: #fff; transform: scale(1.8); }
.tr-dot.is-from, .tr-dot.is-to {
  width: 12px; height: 12px; margin: -6px 0 0 -6px; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,122,48,.25); animation: dot-pulse 1.6s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100% { box-shadow: 0 0 0 5px rgba(255,122,48,.25); } 50% { box-shadow: 0 0 0 9px rgba(255,122,48,.08); } }
.tr-map-line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.tr-map-route { fill: none; stroke: var(--accent); stroke-width: .4; vector-effect: non-scaling-stroke; }
.tr-map-tooltip {
  position: absolute; transform: translate(-50%, -140%); background: #fff; color: var(--navy-950); padding: 6px 12px;
  border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .15s ease; z-index: 5; box-shadow: var(--shadow-md);
}
.tr-map-tooltip span { display: block; font-weight: 500; color: var(--gray-600); font-size: 11px; }
.tr-map-tooltip.is-visible { opacity: 1; }
.tr-map-caption { position: absolute; left: 24px; bottom: 18px; color: rgba(255,255,255,.5); font-size: 12px; z-index: 3; }
.ic-back { transform: rotate(180deg); }

.tr-route-view { position: absolute; inset: 0; z-index: 6; }
.tr-route-view iframe { width: 100%; height: 100%; border: 0; display: block; }
.tr-route-view__back {
  position: absolute; top: 14px; left: 14px; display: flex; align-items: center; gap: 6px; background: #fff;
  color: var(--navy-950); border: none; border-radius: 100px; padding: 9px 16px 9px 12px; font-size: 12.5px; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow-md); z-index: 7;
}
.tr-route-view__back:hover { background: var(--gray-50); }

.calc-card { min-width: 0; width: 100%; background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.calc-card h3 { font-size: 18px; margin-bottom: 4px; }
.calc-card > p { font-size: 13px; margin-bottom: 20px; }
.calc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.calc-services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 4px 0 18px; }
.calc-services label { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--navy-950); }
.calc-services input { accent-color: var(--accent); }
.calc-result { margin-top: 18px; padding: 18px 20px; background: var(--gray-50); border: 1px dashed var(--gray-200); border-radius: var(--radius-md); text-align: center; }
.calc-result__amount { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--navy-950); }
.calc-result__meta { font-size: 12.5px; color: var(--gray-600); margin-top: 2px; }
.calc-result__note { font-size: 11.5px; color: var(--gray-400); margin: 10px 0 0; }
.calc-error { color: var(--danger); font-size: 13px; font-weight: 600; }
.calc-cta { margin-top: 14px; }

/* ---------- Il / Bolge sayfalari ---------- */
.il-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.il-meta span { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); font-size: 13.5px; font-weight: 600; }
.il-meta .icon { color: var(--accent); }

.il-search {
  max-width: 480px; margin: 0 auto 48px; display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1.5px solid var(--gray-200); border-radius: 100px; padding: 14px 22px; box-shadow: var(--shadow-sm);
}
.il-search .icon { color: var(--gray-400); flex-shrink: 0; }
.il-search input { border: none; outline: none; flex: 1; font-size: 15px; font-family: var(--font-body); background: transparent; }

.il-region-block { margin-bottom: 40px; }
.il-region-block:last-child { margin-bottom: 0; }
.il-region-title { font-size: 15px; color: var(--accent-dark); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; font-weight: 800; }

.ilce-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ilce-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 100px; background: var(--gray-50);
  border: 1px solid var(--gray-200); font-size: 13px; font-weight: 600; color: var(--navy-950);
}
.ilce-badge .icon { width: 13px; height: 13px; color: var(--gray-400); }
a.ilce-badge--link { transition: all .18s ease; }
a.ilce-badge--link:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
a.ilce-badge--link:hover .icon { color: var(--accent); }

/* ---------- Illustration 1: Rota (anasayfa Hakkimizda yanindaki gorsel) ---------- */
.illus-route {
  position: absolute; inset: 0; background: linear-gradient(155deg, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  overflow: hidden;
}
.illus-route::before {
  content: ''; position: absolute; inset: 0; opacity: .1;
  background-image: radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 22px 22px;
}
.illus-route__mark { position: absolute; right: -30px; bottom: -30px; width: 220px; height: 187px; color: rgba(255,255,255,.05); --logo-knockout: var(--navy-950); }
.illus-route__path { position: absolute; inset: 0; width: 100%; height: 100%; }
.illus-route__path path {
  fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 2 10;
  animation: illus-dash 18s linear infinite;
}
@keyframes illus-dash { to { stroke-dashoffset: -200; } }
.illus-dot {
  position: absolute; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,122,48,.22); animation: dot-pulse 1.8s ease-in-out infinite;
}
.illus-dot--start { left: 17%; top: 88%; }
.illus-pin {
  position: absolute; width: 40px; height: 40px; margin: -20px 0 0 -20px; border-radius: 50%; background: #fff; display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md);
}
.illus-pin .icon { width: 20px; height: 20px; color: var(--accent-dark); }
.illus-pin--end { left: 78%; top: 11%; }
.illus-chip {
  position: absolute; width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.illus-chip .icon { width: 24px; height: 24px; color: #fff; }
.illus-chip--1 { top: 14%; left: 12%; transform: rotate(-8deg); }
.illus-chip--2 { top: 46%; right: 14%; transform: rotate(6deg); }
.illus-chip--3 { bottom: 16%; left: 20%; transform: rotate(-4deg); }

/* ---------- Illustration 2: Guven rozetleri (Hakkimizda sayfasi gorseli) ---------- */
.illus-cluster {
  position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 30%, var(--navy-700) 0%, var(--navy-950) 75%);
  overflow: hidden;
}
.illus-cluster::before {
  content: ''; position: absolute; inset: 0; opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 26px 26px;
}
.illus-cluster__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.illus-cluster__lines line { stroke: rgba(255,255,255,.22); stroke-width: .5; stroke-dasharray: 3 3; }
.illus-cluster__ring {
  position: absolute; top: 50%; left: 50%; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
}
.illus-cluster__center {
  position: absolute; top: 50%; left: 50%; width: 86px; height: 86px; margin: -43px 0 0 -43px; border-radius: 50%;
  background: linear-gradient(150deg, #FF8F4D, var(--accent) 55%, var(--accent-dark)); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(255,122,48,.12), var(--shadow-lg);
}
.illus-cluster__center .icon { width: 38px; height: 38px; color: #fff; }
.illus-cluster__badge {
  position: absolute; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(6px); border-radius: 100px; padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow-md);
}
.illus-cluster__badge .ic-wrap {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,122,48,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.illus-cluster__badge .icon { width: 13px; height: 13px; color: var(--accent); }
.illus-cluster__badge span { font-size: 11.5px; font-weight: 700; color: #fff; white-space: nowrap; }
.illus-cluster__badge--1 { top: 8%; left: 6%; }
.illus-cluster__badge--2 { top: 8%; right: 6%; }
.illus-cluster__badge--3 { bottom: 10%; left: 4%; }
.illus-cluster__badge--4 { bottom: 10%; right: 4%; }

/* ---------- Bildirim modali (form gonderimleri) ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,19,41,.6); backdrop-filter: blur(3px); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal-box {
  position: relative; background: #fff; border-radius: var(--radius-lg); padding: 40px 36px 32px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg); transform: scale(.92) translateY(10px); transition: transform .25s ease;
}
.modal-overlay.is-open .modal-box { transform: scale(1) translateY(0); }
.modal-box__close {
  position: absolute; top: 14px; right: 14px; background: var(--gray-50); border: none; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gray-600);
}
.modal-box__close:hover { background: var(--gray-100); }
.modal-box__close .icon { width: 16px; height: 16px; }
.modal-box__icon {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.modal-box__icon .icon { width: 32px; height: 32px; }
.modal-box__icon--success { background: #E7F8EE; color: var(--success); }
.modal-box__icon--error { background: #FDECEC; color: var(--danger); }
.modal-box__title { font-size: 19px; margin-bottom: 8px; }
.modal-box__text { font-size: 14.5px; margin-bottom: 24px; }

/* ---------- Hizli Yanit Botu (sol alt) ---------- */
#cb-container { position: fixed; bottom: 24px; left: 24px; z-index: 950; }

#cb-toggle-button {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-950));
  box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center;
  position: relative; color: #fff; transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
#cb-toggle-button:hover { transform: scale(1.07); }
#cb-toggle-button:active { transform: scale(.94); }
.cb-toggle-ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--accent); opacity: 0;
  animation: cbPulseRing 2.8s ease-out infinite;
}
@keyframes cbPulseRing { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.7); opacity: 0; } }
#cb-container.is-open .cb-toggle-ring { animation: none; opacity: 0; }
#cb-icon-chat, #cb-icon-close {
  position: absolute; display: flex; transition: opacity .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
}
#cb-icon-chat .icon, #cb-icon-close .icon { width: 24px; height: 24px; }
#cb-icon-close { opacity: 0; transform: rotate(-90deg) scale(.5); }
#cb-container.is-open #cb-icon-chat { opacity: 0; transform: rotate(90deg) scale(.5); }
#cb-container.is-open #cb-icon-close { opacity: 1; transform: rotate(0) scale(1); }

#cb-cta-bubble {
  position: absolute; bottom: 74px; left: -4px; background: var(--navy-950); color: #fff; font-size: 12.5px;
  font-weight: 600; padding: 10px 16px 10px 10px; border-radius: 12px; border-bottom-left-radius: 3px;
  box-shadow: var(--shadow-md); white-space: nowrap; opacity: 0; transform: translateY(10px) scale(.95);
  transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); pointer-events: none;
  display: flex; align-items: center; gap: 9px;
}
.cb-cta-icon {
  width: 32px; height: 32px; border-radius: 9px; background: var(--accent); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cb-cta-icon .ic-brand { width: 18px; height: 15px; color: #fff; }
#cb-cta-bubble.visible { opacity: 1; transform: translateY(0) scale(1); }
#cb-container.is-open #cb-cta-bubble { opacity: 0 !important; transform: translateY(10px) scale(.95) !important; }

#cb-widget {
  position: absolute; bottom: 74px; left: 0; width: 360px; height: 540px; max-height: 76vh;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: scale(.92) translateY(16px);
  transform-origin: bottom left; pointer-events: none;
  transition: opacity .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1);
}
#cb-container.is-open #cb-widget { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }

.cb-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; position: relative;
}
.cb-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), #fff, var(--accent)); opacity: .5; }
.cb-header-left { display: flex; align-items: center; gap: 12px; }
.cb-avatar {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(145deg, #FF8F4D, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center;
}
.cb-avatar .ic-brand { width: 20px; height: 17px; color: #fff; }
.cb-header-left strong { display: block; color: #fff; font-family: var(--font-head); font-size: 14px; }
.cb-header-sub { color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cb-close-icon { color: rgba(255,255,255,.55); cursor: pointer; display: flex; padding: 4px; transition: .2s; }
.cb-close-icon .icon { width: 16px; height: 16px; }
.cb-close-icon:hover { color: #fff; transform: scale(1.12); }

#cb-chat-window {
  flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px;
  scroll-behavior: smooth; background: var(--gray-50);
}
#cb-chat-window::-webkit-scrollbar { width: 4px; }
#cb-chat-window::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }

.cb-msg { max-width: 86%; padding: 10px 13px; font-size: 13.5px; line-height: 1.6; border-radius: 14px; animation: cbSlide .3s ease forwards; word-wrap: break-word; }
@keyframes cbSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cb-msg-bot { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--gray-200); border-top-left-radius: 4px; }
.cb-msg-bot a { color: var(--accent-dark); font-weight: 700; }
.cb-msg-user { align-self: flex-end; background: var(--navy-900); color: #fff; border-bottom-right-radius: 4px; font-weight: 500; }
.cb-msg-bot.cb-typewriter::after { content: ''; display: inline-block; width: 2px; height: 12px; margin-left: 2px; background: var(--accent); vertical-align: -1px; animation: cbCursorBlink .8s steps(1) infinite; }
.cb-msg-typing { align-self: flex-start; background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; border-top-left-radius: 4px; padding: 12px 16px; display: flex; gap: 5px; }
.cb-typing-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; animation: cbTypingPulse 1.4s ease-in-out infinite; opacity: .35; }
.cb-typing-dot:nth-child(2) { animation-delay: .18s; }
.cb-typing-dot:nth-child(3) { animation-delay: .36s; }
@keyframes cbTypingPulse { 0%,70%,100% { transform: scale(1); opacity: .35; } 35% { transform: scale(1.4); opacity: 1; } }
@keyframes cbCursorBlink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }

#cb-suggestions { padding: 10px 14px 12px; background: #fff; border-top: 1px solid var(--gray-200); flex-shrink: 0; }
#cb-suggestions.cb-hidden { display: none; }
.cb-suggestions-label { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.cb-suggestions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.cb-chip {
  background: var(--accent-light); border: 1px solid transparent; color: var(--accent-dark); font-size: 11px;
  font-weight: 700; padding: 8px 10px; border-radius: 9px; cursor: pointer; transition: all .2s ease; text-align: center;
  font-family: var(--font-body);
}
.cb-chip:hover { background: var(--accent); color: #fff; }

.cb-footer { padding: 12px 14px 14px; background: #fff; border-top: 1px solid var(--gray-200); flex-shrink: 0; }
.cb-input-wrap { display: flex; align-items: center; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 4px; transition: border-color .2s ease; }
.cb-input-wrap:focus-within { border-color: var(--accent); }
#cb-input { flex: 1; border: none; background: transparent; padding: 9px 12px; font-size: 13.5px; outline: none; color: var(--ink); font-family: var(--font-body); }
#cb-input::placeholder { color: var(--gray-400); }
#cb-send-button { width: 32px; height: 32px; border-radius: 50%; border: none; background: transparent; color: var(--gray-400); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s ease; flex-shrink: 0; }
#cb-send-button .icon { width: 15px; height: 15px; }
#cb-send-button:disabled { opacity: .4; cursor: default; }
#cb-send-button:not(:disabled) { color: var(--accent); }
#cb-send-button:not(:disabled):hover { background: var(--accent-light); }
.cb-disclaimer { text-align: center; font-size: 9.5px; color: var(--gray-400); margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.cb-disclaimer .icon { width: 10px; height: 10px; }

@media (max-width: 480px) {
  #cb-container { bottom: 16px; left: 16px; }
  #cb-toggle-button { width: 52px; height: 52px; }
  #cb-widget { width: calc(100vw - 32px); left: 0; bottom: 66px; height: 74vh; }
  #cb-cta-bubble { bottom: 60px; font-size: 11.5px; }
}

/* ---------- Reveal animasyonu ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 480px; }
  .feature-grid, .contact-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .doc-grid, .factor-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .map-calc-grid { grid-template-columns: 1fr; }
  .tr-map-wrap { aspect-ratio: 2.4 / 1; }
}

@media (max-width: 860px) {
  .topbar__contact a:nth-child(2) { display: none; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(340px, 86vw); background: var(--navy-950);
    padding: 0; transform: translateX(100%); transition: transform .3s ease; z-index: 95;
    box-shadow: -12px 0 40px rgba(0,0,0,.3); display: flex; flex-direction: column;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav::-webkit-scrollbar { width: 0; height: 0; }

  .main-nav__head {
    display: flex; align-items: center; justify-content: space-between; padding: 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08); flex-shrink: 0;
  }
  .brand--drawer { font-size: 18px; }
  .main-nav__close {
    background: rgba(255,255,255,.08); border: none; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; flex-shrink: 0;
  }
  .main-nav__close .icon { width: 18px; height: 18px; }
  .main-nav__close:hover { background: rgba(255,255,255,.16); }

  .main-nav ul { flex-direction: column; gap: 2px; padding: 14px 14px; overflow-y: auto; flex: 1; }
  .main-nav a {
    display: flex; align-items: center; gap: 12px; padding: 13px 12px; font-size: 15.5px; font-weight: 600;
    border-radius: 10px; border-bottom: none; position: relative;
  }
  .ic-navmob { display: block; width: 18px; height: 18px; color: rgba(255,255,255,.45); flex-shrink: 0; }
  .main-nav a.active, .main-nav a:active { background: rgba(255,122,48,.12); color: #fff; }
  .main-nav a.active .ic-navmob { color: var(--accent); }
  .main-nav a::after { display: none; }
  .has-dropdown > a { justify-content: flex-start; }
  .has-dropdown > a .ic-caret { margin-left: auto; }
  .nav-toggle { display: flex; }
  .site-header__actions .btn--accent { display: none; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .process-line { display: none; }
  .has-dropdown .ic-caret { display: block; width: 15px; height: 15px; color: rgba(255,255,255,.4); transform: rotate(90deg); }
  .has-dropdown.is-open > a .ic-caret { transform: rotate(270deg); color: var(--accent); }
  .dropdown-panel {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; display: none;
    box-shadow: none; padding: 4px 0 10px 16px; min-width: 0; width: 100%; max-width: 100%; background: transparent;
    flex-direction: column; gap: 14px; box-sizing: border-box; margin-top: 2px;
    border-left: 2px solid rgba(255,122,48,.25); margin-left: 24px;
  }
  .has-dropdown.is-open .dropdown-panel {
    display: flex; transform: none; left: auto; top: auto;
  }
  .dropdown-col { min-width: 0; width: 100%; gap: 2px; }
  .dropdown-col__title { font-size: 10.5px; margin-bottom: 2px; }
  .dropdown-col a {
    color: rgba(255,255,255,.65); word-break: break-word; font-size: 14px; font-weight: 500; padding: 8px 10px;
  }
  .dropdown-col a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .dropdown-col__title { color: var(--accent); }
  .main-nav, .dropdown-panel, .has-dropdown { max-width: 100%; overflow-x: hidden; }

  .main-nav__foot {
    display: block; flex-shrink: 0; padding: 16px 20px 22px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.15);
  }
  .main-nav__contact { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; }
  .main-nav__contact a { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.65); }
  .main-nav__contact a:hover { color: var(--accent); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar__inner { padding: 8px 18px; }
  .hero { padding: 48px 0 90px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .feature-grid, .services-grid, .contact-quick-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section { padding: 60px 0; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-info-card, .form-card { padding: 26px; }
  .about-badge { position: static; margin-top: -40px; margin-left: 16px; width: fit-content; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .doc-grid, .factor-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .request-form { padding: 24px; }
  .timeline-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-step__dot { width: 44px; height: 44px; font-size: 16px; }
  .timeline-step:not(:last-child)::before { left: 21px; top: 44px; }
  .map-calc-section { padding: 56px 0; }
  .calc-row-2, .calc-services { grid-template-columns: 1fr; }
  .calc-card { padding: 22px; }
  .tr-map-wrap { aspect-ratio: 3 / 2; padding: 14px; }
  .illus-cluster__badge { padding: 8px; border-radius: 50%; }
  .illus-cluster__badge .ic-wrap { width: 22px; height: 22px; }
  .illus-cluster__badge span { display: none; }
  .illus-chip { width: 42px; height: 42px; }
  .illus-chip .icon { width: 20px; height: 20px; }
}
