/* =========================================================
   Çekici Ekspres - Modern Tema
   ========================================================= */
:root {
  --navy: #0b1220;
  --navy-2: #101a2e;
  --navy-3: #1b2a45;
  --amber: #f59e0b;
  --amber-2: #fbbf24;
  --red: #ef4444;
  --red-2: #dc2626;
  --green: #22c55e;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --text: #334155;
  --text-2: #64748b;
  --head: #0f172a;
  --line: #e5eaf2;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--head); line-height: 1.25; font-weight: 800; }
p { margin-bottom: .5rem; }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.center { text-align: center; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- İkonlar ---------- */
i[class^="i-"], svg.icon { width: 1.15em; height: 1.15em; flex: none; }
svg.icon { display: inline-block; vertical-align: -.18em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1.2;
  border: 0; cursor: pointer; transition: .25s ease;
  justify-content: center;
}
.btn-sm { padding: .65rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.1rem; }
.btn-call { background: linear-gradient(135deg, var(--red), var(--red-2)); color: #fff; box-shadow: 0 10px 24px rgba(239, 68, 68, .35); }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(239, 68, 68, .45); }
.btn-wa { background: linear-gradient(135deg, #25d366, #1eb856); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .35); }
.btn-wa:hover { transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Üst şerit ---------- */
.topbar { background: var(--navy); color: #cbd5e1; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; gap: 1rem; }
.topbar a { color: #cbd5e1; }
.topbar a:hover { color: var(--amber); }
.tb-item { display: inline-flex; align-items: center; gap: .4rem; margin-right: 1.2rem; }
.topbar-right { display: flex; align-items: center; gap: .6rem; }
.tb-soc { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.tb-soc:hover { background: var(--amber); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: .3s ease;
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .8rem 0; }
.site-header.scrolled { box-shadow: 0 8px 24px rgba(15,23,42,.08); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-img { height: 46px; width: auto; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  display: inline-flex; align-items: center; justify-content: center; color: var(--navy);
  font-size: 1.4rem; box-shadow: 0 6px 16px rgba(245,158,11,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; color: var(--head); font-size: 1.15rem; }
.brand-tag { font-size: .72rem; color: var(--text-2); font-weight: 600; letter-spacing: .03em; }

.main-nav { display: flex; gap: .25rem; }
.main-nav a {
  padding: .55rem .95rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: .2s;
}
.main-nav a:hover { color: var(--navy); background: #f1f5f9; }
.main-nav a.active { color: #fff; background: var(--navy); }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-cta .btn-call small { display: block; font-size: .68rem; font-weight: 600; opacity: .9; text-align: left; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--navy); border-radius: 12px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #e2e8f0; overflow: hidden; padding: 4.5rem 0 5.5rem; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(245,158,11,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(59,130,246,.15), transparent 60%),
    linear-gradient(135deg, #0b1220, #101a2e 55%, #0b1220);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 26px 26px;
}
.hero-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,158,11,.12); color: var(--amber-2);
  border: 1px solid rgba(245,158,11,.3);
  padding: .45rem 1rem; border-radius: 999px; font-weight: 700; font-size: .85rem;
  margin-bottom: 1.2rem;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -.02em; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--amber); }
.hero-sub { font-size: 1.08rem; color: #b6c2d9; max-width: 560px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; color: #aab6cf; }
.hero-trust i { color: var(--green); }

/* Hero görsel kartı */
.hero-visual { position: relative; }
.hv-card {
  background: linear-gradient(160deg, #16223c, #0e1729);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 1.8rem; position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.hv-top { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: #94a3b8; font-weight: 600; margin-bottom: 1rem; }
.hv-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: pulse 1.4s infinite; }
.hv-phone {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  border-radius: 16px; padding: 1rem; margin-bottom: 1.2rem;
  box-shadow: 0 12px 28px rgba(239,68,68,.4); transition: .25s;
}
.hv-phone:hover { transform: scale(1.02); }
.hv-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.hv-stat { background: rgba(255,255,255,.05); border-radius: 12px; padding: .8rem .4rem; text-align: center; }
.hv-stat strong { display: block; color: var(--amber-2); font-size: 1.25rem; }
.hv-stat span { font-size: .72rem; color: #94a3b8; }
.hv-rating { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.2rem; font-size: .82rem; color: #94a3b8; }
.hv-rating .stars { color: var(--amber); letter-spacing: 2px; }

.hv-chip {
  position: absolute; display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--navy); font-weight: 700; font-size: .85rem;
  padding: .6rem 1rem; border-radius: 999px; box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hv-chip i { color: var(--amber); }
.hv-chip-1 { top: -18px; left: -24px; }
.hv-chip-2 { bottom: -18px; right: -12px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- İstatistik şeridi ---------- */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.stat { display: flex; align-items: center; gap: .9rem; }
.stat i { width: 48px; height: 48px; border-radius: 14px; background: #fff7ed; color: var(--amber); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.stat strong { font-size: 1.6rem; color: var(--head); line-height: 1; display: block; }
.stat span { font-size: .82rem; color: var(--text-2); }

/* ---------- Bölümler ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .6rem;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .8rem; letter-spacing: -.01em; }
.section-head p { color: var(--text-2); }

/* ---------- Hizmet kartları ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.services-grid-full { grid-template-columns: repeat(4, 1fr); }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; transition: .3s ease; position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  transform: scaleX(0); transform-origin: left; transition: .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--amber);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.service-card p { font-size: .92rem; color: var(--text-2); margin-bottom: 1rem; }
.sc-link { font-weight: 700; color: var(--red); font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; }
.sc-link:hover { gap: .6rem; }

/* ---------- Neden biz ---------- */
.why-in { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.why-img {
  aspect-ratio: 4/3.4; border-radius: 24px; background-size: cover; background-position: center;
  background-image: linear-gradient(135deg, var(--navy-3), var(--navy)); position: relative;
  display: flex; align-items: flex-end;
}
.why-img::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 120px; height: 120px;
  border: 3px dashed var(--amber); border-radius: 50%; opacity: .5;
}
.why-badge {
  margin: 1.4rem; background: #fff; border-radius: 16px; padding: 1rem 1.3rem;
  display: inline-flex; align-items: center; gap: .8rem; box-shadow: var(--shadow-lg);
}
.why-badge strong { font-size: 2rem; color: var(--red); line-height: 1; }
.why-badge span { font-size: .82rem; font-weight: 700; color: var(--head); line-height: 1.25; }
.feat-list { display: grid; gap: 1rem; }
.feat {
  display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; transition: .25s;
}
.feat:hover { box-shadow: var(--shadow); border-color: transparent; }
.feat i { width: 46px; height: 46px; flex: none; border-radius: 12px; background: #fff7ed; color: var(--amber); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.feat h4 { font-size: 1rem; margin-bottom: .2rem; }
.feat p { font-size: .88rem; color: var(--text-2); margin: 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

/* ---------- Adımlar ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; transition: .3s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-no { position: absolute; top: 1rem; right: 1.2rem; font-weight: 800; font-size: 2.6rem; color: rgba(15,23,42,.06); }
.step-icon {
  width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 20px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 12px 26px rgba(245,158,11,.35);
}
.step h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.step p { font-size: .92rem; color: var(--text-2); }

/* ---------- Bölgeler ---------- */
.areas-wrap { display: grid; gap: 2rem; }
.area-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.area-group h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.area-group h3::before { content: ""; width: 12px; height: 12px; border-radius: 4px; background: var(--amber); }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  font-size: .85rem; font-weight: 600; color: var(--navy);
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: .45rem .95rem; border-radius: 999px; transition: .2s;
}
.chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.areas-more { text-align: center; padding: .8rem 0; }
.areas-more p { margin-bottom: 1rem; color: var(--text-2); font-weight: 600; }

/* ---------- Galeri ---------- */
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gp-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gp-item:hover img { transform: scale(1.08); }
.gp-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,18,32,.7));
  display: flex; align-items: flex-end; justify-content: center; opacity: 0; transition: .3s;
  padding-bottom: 1.2rem; color: #fff;
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.g-item:hover img { transform: scale(1.06); }

/* ---------- Yorumlar ---------- */
.slider { position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.slide { min-width: 100%; padding: 0 .4rem; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow); text-align: center;
}
.t-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.t-text { font-size: 1.08rem; color: var(--head); font-weight: 500; line-height: 1.7; margin-bottom: 1.4rem; }
.t-user { display: flex; align-items: center; justify-content: center; gap: .8rem; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: var(--amber); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.t-user div { text-align: left; }
.t-user strong { display: block; color: var(--head); font-size: .95rem; }
.t-user span { font-size: .8rem; color: var(--text-2); }
.slider-nav { display: flex; justify-content: center; gap: .7rem; margin-top: 1.5rem; }
.slider-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; color: var(--navy); transition: .2s;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.slider-nav button:hover { background: var(--navy); color: #fff; }

/* ---------- SSS ---------- */
.faq-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.faq-list { display: grid; gap: .8rem; }
.faq-list-wide { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .4rem 1.2rem; transition: .25s; overflow: hidden;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-weight: 700; color: var(--head); padding: .9rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.fq-icon { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--bg-alt); display: inline-flex; align-items: center; justify-content: center; color: var(--navy); transition: .3s; font-size: .8rem; }
.faq-item[open] .fq-icon { background: var(--amber); transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.1rem; color: var(--text-2); font-size: .95rem; }

/* ---------- CTA bandı ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-3)); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,.25), transparent 65%); }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 3rem 0; position: relative; }
.cta-text h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: .5rem; }
.cta-text p { color: #b6c2d9; margin: 0; }
.cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0f1c; color: #94a3b8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding: 4rem 0 2.5rem; }
.f-brand { margin-bottom: 1rem; }
.f-brand .brand-name { color: #fff; }
.f-brand .brand-tag { color: #64748b; }
.f-about p { font-size: .92rem; line-height: 1.7; }
.f-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.f-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: inline-flex; align-items: center; justify-content: center; color: #cbd5e1; transition: .2s; }
.f-social a:hover { background: var(--amber); color: var(--navy); transform: translateY(-3px); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.site-footer ul li { margin-bottom: .65rem; }
.site-footer ul a { font-size: .92rem; transition: .2s; }
.site-footer ul a:hover { color: var(--amber); padding-left: 4px; }
.f-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.f-contact i { color: var(--amber); margin-top: .2rem; }
.f-contact a:hover { padding-left: 0; color: #fff; }
.f-map { color: var(--amber); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.2rem 0; font-size: .85rem; }
.fb-in { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fb-links a:hover { color: var(--amber); }

/* ---------- Mobil aksiyon çubuğu ---------- */
.mobile-actions { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; grid-template-columns: 1fr 1fr; box-shadow: 0 -6px 20px rgba(0,0,0,.15); }
.ma-call, .ma-wa { display: flex; align-items: center; justify-content: center; gap: .5rem; color: #fff; font-weight: 700; padding: .95rem 0; font-size: .95rem; }
.ma-call { background: linear-gradient(135deg, var(--red), var(--red-2)); }
.ma-wa { background: linear-gradient(135deg, #25d366, #1eb856); }

.float-wa {
  position: fixed; right: 22px; bottom: 26px; z-index: 110;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1eb856); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: .25s;
}
.float-wa:hover { transform: scale(1.1) translateY(-3px); }
.float-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,211,102,.5); animation: pulse 2s infinite; }

/* ---------- Sayfa hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #e2e8f0; padding: 3.4rem 0; position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,.2), transparent 65%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: .7rem; }
.page-hero p { color: #b6c2d9; max-width: 720px; font-size: 1.05rem; }
.page-hero-sm { padding: 2.4rem 0; }

.breadcrumb { font-size: .85rem; color: #94a3b8; margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: .3rem; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.c-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: .25s; }
.c-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.c-card i { width: 52px; height: 52px; border-radius: 14px; background: #fff7ed; color: var(--amber); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: .9rem; }
.c-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.c-card p { font-size: .95rem; font-weight: 700; color: var(--navy); }
.c-card p a:hover { color: var(--red); }
.c-card span { font-size: .8rem; color: var(--text-2); }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form-wrap h2 { font-size: 1.4rem; margin-bottom: .3rem; }
.contact-form-wrap > p { color: var(--text-2); margin-bottom: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 700; font-size: .85rem; color: var(--head); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--head); transition: .2s; background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.map-wrap { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }

.alert { padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: .95rem; margin-bottom: 1.2rem; display: flex; gap: .6rem; align-items: center; }
.alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert a { text-decoration: underline; font-weight: 700; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.bc-img { display: block; aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--navy-3); position: relative; }
.bc-date { position: absolute; top: 12px; left: 12px; background: rgba(11,18,32,.85); color: #fff; font-size: .78rem; font-weight: 700; padding: .35rem .8rem; border-radius: 999px; }
.bc-body { padding: 1.4rem; }
.bc-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.bc-body h3 a:hover { color: var(--red); }
.bc-body p { font-size: .9rem; color: var(--text-2); margin-bottom: .8rem; }
.blog-single { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.blog-content p { margin-bottom: 1.2rem; color: var(--text); font-size: 1.02rem; }
.blog-meta { color: var(--text-2); font-size: .88rem; display: flex; align-items: center; gap: .4rem; }
.blog-cta { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; margin-top: 2rem; text-align: center; }
.blog-cta h3 { margin-bottom: .4rem; }
.blog-cta p { color: var(--text-2); margin-bottom: 1.2rem; }
.blog-cta .btn { margin: .3rem; }
.blog-side h3 { font-size: 1rem; margin-bottom: 1rem; }
.side-item { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: .7rem; transition: .2s; }
.side-item:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.side-item span { display: block; font-weight: 700; color: var(--head); font-size: .9rem; line-height: 1.35; }
.side-item small { color: var(--text-2); font-size: .78rem; }

/* ---------- Lokasyon ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.loc-main h2 { font-size: 1.5rem; margin: 1.4rem 0 .8rem; }
.loc-main > p { color: var(--text); }
.loc-list { margin: 1rem 0; }
.loc-list li { display: flex; gap: .7rem; align-items: flex-start; padding: .55rem 0; font-size: .98rem; }
.loc-list i { color: var(--green); margin-top: .3rem; }
.loc-cta { background: linear-gradient(135deg, var(--navy), var(--navy-3)); border-radius: var(--radius); padding: 2rem; text-align: center; margin-top: 1.5rem; }
.loc-cta h3 { color: #fff; margin-bottom: .3rem; }
.loc-cta p { color: #b6c2d9; margin-bottom: 1.2rem; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; position: sticky; top: 100px; }
.side-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.side-links li { border-bottom: 1px solid var(--line); }
.side-links a { display: block; padding: .55rem 0; font-size: .9rem; font-weight: 600; color: var(--text); transition: .2s; }
.side-links a:hover { color: var(--red); padding-left: 6px; }
.loc-actions { margin: 1.5rem 0 0; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 2rem 0; }
.nf-code { font-size: 6rem; font-weight: 800; color: var(--amber); line-height: 1; display: block; }
.notfound h1 { margin-bottom: .5rem; }
.notfound .hero-actions { justify-content: center; }

/* ---------- Boş durum ---------- */
.empty-box { text-align: center; padding: 3rem; color: var(--text-2); background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-box i { font-size: 2.5rem; color: var(--amber); margin-bottom: .8rem; }

/* ---------- Görünüm animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,10,20,.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox button { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.4rem; cursor: pointer; }
.lightbox button:hover { background: var(--red); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .services-grid-full { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-in { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .why-in { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 82vw); height: 100vh;
    background: var(--navy); flex-direction: column; padding: 5.5rem 1.8rem 2rem; gap: .4rem;
    transition: right .35s ease; z-index: 150; box-shadow: -20px 0 60px rgba(0,0,0,.4);
  }
  .main-nav.open { right: 0; }
  .main-nav a { color: #cbd5e1; font-size: 1.05rem; padding: .85rem 1rem; }
  .main-nav a.active { background: var(--amber); color: var(--navy); }
  .nav-toggle { display: inline-flex; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(6,10,20,.6); z-index: 140; opacity: 0; pointer-events: none; transition: .3s; }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .header-cta .btn-call { display: none; }
  .services-grid, .services-grid-full { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-in { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-in { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .blog-single { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .hide-sm { display: none !important; }
}
@media (max-width: 560px) {
  .services-grid, .services-grid-full { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .gallery-preview, .gallery-grid, .contact-cards, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mobile-actions { display: grid; }
  body { padding-bottom: 62px; }
  .float-wa { bottom: 78px; }
  .hero { padding: 3rem 0 4rem; }
  .hv-chip-1 { left: 0; }
  .topbar-right .tb-item { display: none; }
}
