/* ═══════════════════════════════════════════════════════
   HASARLI OTO — Design System
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ────────────────────────────────────────── */
:root {
  --navy:         #1E293B;
  --navy-dark:    #0F172A;
  --navy-light:   #334155;
  --gold:         #F59E0B;
  --gold-light:   #FBBF24;
  --gold-pale:    #FEF3C7;
  --cream:        #F8FAFC;
  --white:        #FFFFFF;
  --text:         #0F172A;
  --text-muted:   #64748B;
  --border:       #E2E8F0;
  --border-dark:  #CBD5E1;
  --ph-bg:        #FFF3CD;
  --ph-border:    #F0C040;
  --ph-text:      #7A5C00;
  --green-wa:     #25D366;

  --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --pad-section:  clamp(64px, 9vw, 120px);
  --pad-x:        clamp(20px, 5vw, 48px);
  --max-w:        1200px;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 10px rgba(15,23,42,.07);
  --shadow-md:    0 8px 32px rgba(15,23,42,.12);
  --shadow-lg:    0 20px 60px rgba(15,23,42,.18);
  --ease:         cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}
em { font-style: italic; color: var(--gold); }
p { max-width: 68ch; text-align: left; }

/* ─── LAYOUT ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--pad-section); }
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); position: relative; overflow: hidden; }

/* ─── SCROLL PROGRESS ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(245,158,11,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(245,158,11,.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15,23,42,.25);
}
.btn-navy:hover {
  background: var(--navy-light);
  box-shadow: 0 8px 24px rgba(15,23,42,.35);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 55ch;
  margin-inline: auto;
}
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }

/* ─── PLACEHOLDER STYLES ────────────────────────────── */
.ph-inline {
  background: var(--ph-bg);
  border: 1px dashed var(--ph-border);
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--ph-text);
  font-size: .875em;
}
.ph-text { color: var(--ph-text) !important; }
.ph-tag {
  display: inline-block;
  background: var(--ph-border);
  color: var(--ph-text);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 4px;
}
.ph-tag-dark {
  display: inline-block;
  background: rgba(245,158,11,.15);
  border: 1px dashed var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  margin-top: 6px;
}
.ph-card { border: 1.5px dashed var(--ph-border) !important; background: rgba(255,243,205,.12) !important; }
.ph-stat { border: 1.5px dashed rgba(245,158,11,.3) !important; }

/* ─── HEADER ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.header.scrolled {
  background: rgba(10,15,28,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.0625rem;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { margin-left: auto; }
.nav-links {
  display: flex;
  gap: 8px;
}
.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10,15,28,.98);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.mobile-menu.open {
  max-height: 480px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 12px var(--pad-x) 24px;
}
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-tel {
  margin-top: 8px;
  color: var(--gold-light) !important;
  border-bottom: none;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(to right, rgba(15,23,42,0.85) 25%, rgba(15,23,42,0.25) 60%, rgba(15,23,42,0.4) 100%),
    url('../img/hero-bg.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: #334155;
  bottom: -100px; left: -80px;
}

.hero-slash {
  position: absolute;
  width: 3px;
  height: 70%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  right: 35%;
  top: 15%;
  opacity: .2;
  transform: rotate(15deg);
}

.hero-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(200px, 30vw, 400px);
  color: rgba(255,255,255,.03);
  right: -2%;
  bottom: -5%;
  line-height: 1;
  user-select: none;
  letter-spacing: -.05em;
}

.hero-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.eyebrow-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.6); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.025em;
}

.hero-desc {
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.68);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 52ch;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
}
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
}
.hero-stat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(245,158,11,.4);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-num sup { font-size: .65em; }
.hero-stat-label {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

/* Hero slogan */
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 11px 18px;
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.30);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: clamp(.875rem, 1.4vw, 1rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
  max-width: 100%;
}
.hero-slogan strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05em;
}
.hero-slogan svg { color: var(--gold); flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
  z-index: 1;
}
.hero-scroll:hover { color: rgba(255,255,255,.7); }
.hero-scroll-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  animation: bounceDown 1.6s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(8px) rotate(45deg); }
}

/* ─── HAKKIMIZDA ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-p:last-of-type { margin-bottom: 28px; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-block {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.stat-block:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

/* ─── HİZMETLER ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background .3s, color .3s;
}
.service-card:hover .service-icon {
  background: var(--gold-pale);
  color: var(--gold);
}
.ph-icon {
  background: var(--ph-bg) !important;
  color: var(--ph-text) !important;
  font-size: 1.5rem;
  font-weight: 700;
}
.service-title {
  font-size: 1.1rem;
  color: var(--navy);
}
.service-desc {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--gold-light); }
.service-card-ph { border: 1.5px dashed var(--ph-border); background: var(--ph-bg); }

/* ─── NEDEN BİZ ──────────────────────────────────────── */
.neden-bg-number {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(180px, 28vw, 360px);
  color: rgba(255,255,255,.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -.05em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 36px 32px;
  background: transparent;
  transition: background .3s;
}
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(245,158,11,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .3s;
}
.feature-item:hover .feature-icon { background: rgba(245,158,11,.25); }
.feature-title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 100%;
}

/* ─── HAKKIMIZDA — güncel ────────────────────────────── */
.about-promise-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 14px 0 18px;
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.about-hook {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.2;
}
.about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: #1db954;
  box-shadow: 0 8px 24px rgba(37,211,102,.42);
}

/* ─── HANGİ ARAÇLARI ALIYORUZ ───────────────────────── */
.hizmet-intro-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--navy);
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 48px;
}
.hizmet-intro-banner svg {
  flex-shrink: 0;
  color: var(--gold);
}
.hizmet-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hizmet-type-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.hizmet-type-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.hizmet-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.hizmet-type-card:hover::after { transform: scaleX(1); }
.hizmet-type-icon {
  color: var(--gold);
  margin-bottom: 4px;
}
.hizmet-type-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.hizmet-type-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  text-align: left;
}

/* ─── SÜREÇ ──────────────────────────────────────────── */
.surec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 56px;
}
.surec-line {
  position: absolute;
  top: 40px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 8px,
    transparent 8px, transparent 18px
  );
  z-index: 0;
  pointer-events: none;
}
.surec-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 32px;
  position: relative;
  z-index: 1;
}
.surec-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(15,23,42,.22);
  border: 3px solid var(--gold-pale);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.surec-step:hover .surec-num {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(15,23,42,.3);
}
.surec-icon {
  color: var(--navy-light);
  margin-bottom: 14px;
  opacity: .7;
}
.surec-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.surec-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}
.surec-cta {
  text-align: center;
}

/* ─── ANLAŞMALI FİRMALAR ─────────────────────────────── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.logos-grid-centered {
  grid-template-columns: repeat(3, minmax(160px, 220px));
  justify-content: center;
}
.logo-slot {
  border-radius: var(--radius-md);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-slot:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.logo-slot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.partner-logo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .3s var(--ease);
}
.logo-slot:hover .partner-logo { filter: grayscale(0%); }

/* ─── GALERİ SLIDER ──────────────────────────────────── */
.section-slider {
  background: var(--navy-dark);
  padding-block: clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.slider-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}
.slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  position: relative;
  height: clamp(320px, 50vw, 560px);
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px) clamp(28px, 4vw, 48px);
  background: linear-gradient(to top, rgba(10,14,30,.95) 0%, rgba(10,14,30,.4) 70%, transparent 100%);
  color: var(--white);
}
.slide-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.slide-caption p {
  font-size: clamp(.9rem, 1.6vw, 1.0625rem);
  color: rgba(255,255,255,.85);
  max-width: 52ch;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .2s, transform .2s;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-btn:hover {
  background: rgba(245,158,11,.82);
  border-color: transparent;
}
.slider-btn:hover { transform: translateY(-50%) scale(1.1); }
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─── HARITA EMBED ────────────────────────────────────── */
.contact-map-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}
.contact-logo-card {
  background: transparent;
  border: none;
  padding: 0 0 4px;
  margin-top: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}
.contact-map-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  flex-shrink: 0;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  height: 340px;
  flex-shrink: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── ŞEHİRLER ───────────────────────────────────────── */
.cities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy);
  color: rgba(255,255,255,.75);
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .25s, color .25s, transform .2s;
}
.city-pill:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.city-pill-bursa {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
}
.city-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(10,15,28,.3);
  padding: 1px 6px;
  border-radius: 20px;
}
.cities-note {
  text-align: center;
  font-size: .9375rem;
  color: var(--text-muted);
  max-width: none;
}
.inline-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--navy); }

/* ─── SSS ────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-heading { position: sticky; top: 100px; }
.faq-sub {
  font-size: .9375rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 30ch;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s, border-color .2s, transform .3s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }

details[open] .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
details[open] .faq-icon::before,
details[open] .faq-icon::after { background: var(--white); }
details[open] .faq-q { color: var(--gold); }

.faq-a {
  padding-bottom: 20px;
}
.faq-a p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 65ch;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* ─── İLETİŞİM ───────────────────────────────────────── */
.section-navy-contact {
  background: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(245,158,11,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon-wa { background: rgba(37,211,102,.15); color: var(--green-wa); }
.contact-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 3px;
}
.contact-value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color .2s;
}
.contact-value:hover { color: var(--gold-light); }
.maps-open-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold-light);
  opacity: .85;
  transition: opacity .2s;
}
.maps-open-link:hover { opacity: 1; }
.contact-247 {
  color: var(--gold-light);
  font-weight: 600;
  font-size: .9375rem;
}

/* Form */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  font-size: .9375rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 80px; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius-md);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ph-map {
  background: var(--ph-bg);
  border: 2px dashed var(--ph-border);
}
.map-ph-icon { font-size: 2rem; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy-dark); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.logo-light .logo-name { color: var(--white); }
.footer-tagline {
  font-size: .9375rem;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 36ch;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: var(--navy-dark); }
.footer-heading {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-block: 20px;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 15px 26px 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.65); }
}

/* ─── PHONE FLOAT ────────────────────────────────────── */
.tel-float {
  position: fixed;
  bottom: 106px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 26px 15px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(245,158,11,.35);
  box-shadow: 0 4px 20px rgba(15,23,42,.45);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.tel-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,23,42,.6);
}

/* ─── SCROLL TO TOP ──────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 178px;
  right: 24px;
  z-index: 800;
  width: 48px;
  height: 48px;
  background: rgba(15,23,42,.82);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* ─── FİYAT KARŞILAŞTIRMA GRİDİ ─────────────────────── */
.price-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 20px;
  align-items: start;
}
.price-compare-col {
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-compare-standard {
  background: var(--white);
  border: 1.5px solid var(--border);
}
.price-compare-premium {
  background: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(245,158,11,.18), var(--shadow-lg);
  transform: translateY(-10px);
}
.price-compare-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-compare-head-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.5rem;
}
.price-compare-standard .price-compare-head-icon { background: var(--cream); }
.price-compare-premium .price-compare-head-icon  { background: rgba(245,158,11,.15); }
.price-compare-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.price-compare-standard .price-compare-col-title { color: var(--text); }
.price-compare-premium .price-compare-col-title  { color: var(--gold-light); font-size: 1.0625rem; }
.price-compare-verdict {
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: inline-block;
}
.price-compare-standard .price-compare-verdict { background: var(--cream); color: var(--text-muted); }
.price-compare-premium .price-compare-verdict  { background: rgba(245,158,11,.15); color: var(--gold-light); }
.price-compare-rows { display: flex; flex-direction: column; }
.price-compare-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .875rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.price-compare-standard .price-compare-row { color: var(--text-muted); }
.price-compare-premium .price-compare-row  { color: rgba(255,255,255,.78); border-bottom-color: rgba(255,255,255,.08); }
.price-compare-row:last-child { border-bottom: none; }
.pc-check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-cross  { color: var(--text-muted); opacity: .45; flex-shrink: 0; margin-top: 1px; }

/* ─── GARANTİ CALLOUT (İÇ SAYFALAR) ─────────────────── */
.guarantee-callout {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-block: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.guarantee-callout::before {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 160px; height: 160px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(50px);
  opacity: .07;
  pointer-events: none;
}
.guarantee-callout-icon {
  width: 42px; height: 42px;
  background: rgba(245,158,11,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-callout h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 5px;
  line-height: 1.3;
}
.guarantee-callout p {
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: none;
}
.guarantee-callout strong { color: var(--white); }

/* ─── TAAHHÜT ŞERİDİ (HAKKIMIZDA) ──────────────────── */
.taahhut-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(245,158,11,.09);
  border: 1px solid rgba(245,158,11,.28);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.taahhut-strip-icon {
  width: 46px; height: 46px;
  background: rgba(245,158,11,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.taahhut-strip h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 3px;
  line-height: 1.3;
}
.taahhut-strip p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0;
  max-width: none;
  line-height: 1.6;
}
.taahhut-strip strong { color: var(--white); }

@media (max-width: 768px) {
  .price-compare-grid { grid-template-columns: 1fr; }
  .price-compare-premium { transform: none; }
  .taahhut-strip { flex-direction: column; gap: 12px; }
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp .75s var(--ease) forwards;
}
.delay-0 { animation-delay: .1s; }
.delay-1 { animation-delay: .25s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .55s; }
.delay-4 { animation-delay: .7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── İÇ SAYFA LAYOUT ────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-top: 120px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .1;
  width: 400px; height: 400px;
  background: var(--gold);
  top: -100px; right: -80px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .8125rem;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.breadcrumb-current { color: var(--gold-light); }

/* Page content */
.page-content { padding-block: var(--pad-section); }
.page-article {
  max-width: 800px;
  margin-inline: auto;
}
.page-article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.page-article h2:first-child { margin-top: 0; }
.page-article h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}
.page-article p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-article ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.page-article ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.page-article ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.page-article .highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-block: 28px;
}
.page-article .highlight-box p { margin-bottom: 0; color: var(--text); }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 24px; margin-block: 28px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 1rem;
}
.step-body p { font-size: .9375rem; color: var(--text-muted); margin-bottom: 0; }

/* CTA Band */
.cta-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 300px; height: 300px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .1;
}
.cta-band-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band-text p {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 0;
}
.cta-band-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* Related links */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.related-card-title {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
}
.related-card-desc {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.related-card-arrow {
  color: var(--gold);
  font-size: .875rem;
  font-weight: 700;
  margin-top: auto;
}

/* Sidebar layout for service/city pages */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.sidebar { position: sticky; top: 100px; }
.sidebar-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.sidebar-box h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-box ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-box ul li { border-bottom: none !important; }
.sidebar-box ul a {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.sidebar-box ul a:hover { color: var(--gold); }
.sidebar-box ul a::before {
  content: '→';
  color: var(--gold);
  font-size: .8rem;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-bottom: 16px;
  max-width: 100%;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }

/* District pills for city pages */
.districts-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 16px;
}
.district-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8125rem;
  color: var(--navy);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cta-band { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}
@media (max-width: 640px) {
  .page-hero { padding-top: 96px; padding-bottom: 48px; }
  .page-hero-btns { flex-direction: column; }
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .animate-up { opacity: 1; transform: none; }
  .fade-in { opacity: 1; transform: none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
  .hero-stat-card { min-width: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 1px; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .surec-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .surec-line { display: none; }
  .hizmet-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-inner { gap: 8px; }
  .logo-img { height: 40px; }
  .logo-sub { display: none; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-slogan { display: block; }
  .hero-slogan svg { display: inline-block; vertical-align: middle; margin-right: 6px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .hizmet-types-grid { grid-template-columns: 1fr; }
  .surec-grid { grid-template-columns: 1fr; gap: 40px; }
  .surec-step { padding-bottom: 0; }
  .hizmet-intro-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .about-btns { flex-direction: column; }
  .about-btns .btn { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map-col { justify-content: flex-start; }
  .map-embed { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}

@media (max-width: 768px) {
  .slider-btn { width: 40px; height: 40px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .logos-grid-centered { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid-centered { grid-template-columns: repeat(2, 1fr); }
  .slider-btn { display: none; }
  .wa-label { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .tel-label { display: none; }
  .tel-float { padding: 16px; border-radius: 50%; bottom: 108px; }
  .scroll-top { bottom: 180px; }
}
