/**
 * Acil Elektrik?im ? Kurumsal teknik servis UI
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Koyu lacivert (hero / section) */
  --navy: #0A1628;
  --navy-light: #0F2847;
  --navy-2: #14315C;
  --navy-grad: linear-gradient(135deg, #0A1628 0%, #0F2847 60%, #14315C 100%);

  --primary: #0F2847;
  --primary-hover: #0A1628;

  /* Amber / enerji vurgusu */
  --amber: #F59E0B;
  --amber-hot: #EAB308;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --amber-grad: linear-gradient(135deg, #F59E0B, #EA7C1E);

  /* ?kincil cyan (ikon / ince ?izgi) */
  --cyan: #22D3EE;

  --urgent: #F59E0B;
  --urgent-hover: #EA7C1E;
  --urgent-grad: linear-gradient(135deg, #F59E0B, #EA7C1E);

  --wa: #1FA855;
  --wa-hover: #188A45;

  --paper: #F7F8FA;
  --paper-2: #EEF0F4;
  --white: #FFFFFF;
  --ink: #0A1628;
  --text: #334155;
  --muted: #64748B;
  --on-dark: #E2E8F0;
  --on-dark-muted: #94A3B8;
  --border: #E4E8EF;
  --border-dark: rgba(255, 255, 255, 0.08);
  --danger: #DC2626;
  --ok: #1FA855;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 14px 32px rgba(15, 23, 42, 0.1);
  --shadow-urgent: 0 8px 22px rgba(245, 158, 11, 0.28);
  --shadow-wa: 0 8px 22px rgba(31, 168, 85, 0.25);
  --shadow-soft: var(--shadow-lg);
  --shadow-glow: 0 20px 50px rgba(10, 22, 40, 0.4);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-xl: 18px;
  --radius-full: 999px;
  --header-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.25s ease;

  --section-py: 3rem;
  --section-py-lg: 5rem;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-weight: 800; line-height: 1.2; }
h2 { font-weight: 700; line-height: 1.3; }
h3 { font-weight: 600; line-height: 1.35; }

p {
  margin: 0 0 1em;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}

a,
button,
.btn-hero-call,
.btn-hero-wa,
.btn-cta-urgent,
.btn-cta-wa,
.btn-area-call,
.btn-area-wa,
.btn-card-call,
.btn-card-detail,
.btn-home-call,
.btn-home-wa,
.btn-header-call,
.service-card,
.home-svc-card,
.home-trust-card,
.area-card-link,
.svc-card,
.home-region-card {
  transition: var(--transition);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

/* Top info bar ? sticky de?il */
.site-topbar {
  --topbar-h: 40px;
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-size: 13px;
  line-height: 1.3;
  min-height: var(--topbar-h);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
}

.site-topbar-inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0;
}

.site-topbar-left,
.site-topbar-right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.45rem 0.65rem;
  min-width: 0;
}

.site-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #CBD5E1;
  text-decoration: none;
  white-space: nowrap;
  min-height: 28px;
  transition: color 0.25s ease;
}

a.site-topbar-item:hover {
  color: #FFFFFF;
}

.site-topbar-ico {
  color: #F59E0B;
  font-size: 12px;
  line-height: 1;
}

.site-topbar-sep {
  color: rgba(203, 213, 225, 0.35);
  user-select: none;
}

.site-topbar-item--mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .site-topbar-item--desktop {
    display: none !important;
  }

  .site-topbar-item--mobile-only {
    display: inline;
  }

  .site-topbar-label {
    font-size: 12px;
  }
}

/* Header sticky ? ana sayfa dahil scroll'da kaybolmaz */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.2);
  padding: 14px 0;
}

body.is-home .site-header--overlay {
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.25);
}

body.is-home .site-header--overlay.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  backdrop-filter: none;
}
.site-header.is-open {
  z-index: 1100;
}

@media (max-width: 768px) {
  :root {
    --header-h: 76px;
  }

  .site-header.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0F172A;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .site-topbar {
    display: none;
  }

  .site-header.is-open .logo,
  .site-header.is-open .header-cta {
    z-index: 1103;
  }

  .site-header.is-open .nav-list {
    width: 100%;
  }

  .site-header.is-open .nav-link {
    width: 100%;
  }
}

.header-container,
.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  min-height: 48px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1102;
}

.logo a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-transform: none;
}

.logo a span {
  color: #FFFFFF;
  margin-left: 0.25em;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 1102;
}

.btn-header-call {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  background: #F59E0B;
  color: #0F172A !important;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0;
  line-height: 1;
  min-height: 44px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
  border: 0;
}

.btn-header-call:hover {
  background: #EAB308;
  color: #0F172A !important;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
}

.btn-header-call--nav {
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  min-height: 48px;
  border-radius: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--primary), var(--navy-light));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1102;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.25s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil menü — header altından açılan panel (logo ile çakışmaz) */
.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  background-color: #0F172A;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem calc(5.5rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s var(--ease), visibility 0.35s;
  will-change: transform;
  z-index: 1101;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.site-header.is-open .site-nav {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 48px;
  padding: 12px 16px;
  color: #e2e8f0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
  background: transparent;
}

.nav-link:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-link.is-active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.nav-item.has-dropdown {
  position: relative;
}

.nav-caret {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.7em;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.nav-item.is-open > .nav-link .nav-caret,
.nav-item.has-dropdown:hover > .nav-link .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: none;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  max-height: none;
  overflow: visible;
}

.nav-item.is-open > .nav-dropdown {
  display: block;
}

.nav-item.is-open > .nav-dropdown--cols {
  display: grid;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  color: #E2E8F0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
}

.nav-dropdown-all a {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #F59E0B;
  font-weight: 650;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-call {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: var(--amber);
  color: var(--navy);
  padding: 0.55rem 1rem;
  min-height: 48px;
}

.btn-call-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  line-height: 1;
}

.btn-call-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-lg {
  min-height: 56px;
  padding-inline: 1.75rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero ? kurumsal */
.hero,
.hero-section {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  background: radial-gradient(circle at top, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
  padding: 90px 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  align-items: center;
}

.hero-slide {
  display: none;
  width: 100%;
}

.hero-slide.is-active {
  display: block;
  animation: riseIn 0.7s var(--ease) both;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 12px;
  height: 12px;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.hero-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active::after {
  background: var(--amber);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.5;
}

.hero-glow {
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  right: -20%;
  top: -20%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16) 0%, transparent 60%);
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 1rem 0 2rem;
  animation: riseIn 0.8s var(--ease) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin: 0 0 24px;
  letter-spacing: 0.3px;
  text-transform: none;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-transform: none;
}

.hero-title,
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 850px;
  letter-spacing: -1px;
  text-transform: none;
  color: var(--white);
}

.hero-title span {
  color: var(--amber);
}

.hero-subtitle,
.hero-lead {
  font-size: 18px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn-hero-call,
.btn-hero-wa {
  flex: 1;
  width: 100%;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
  box-sizing: border-box;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0;
}

.btn-hero-call {
  background-color: var(--urgent);
  color: var(--white);
  box-shadow: var(--shadow-urgent);
}

.btn-hero-wa {
  background-color: var(--wa);
  border: 1px solid transparent;
  color: var(--white);
  box-shadow: var(--shadow-wa);
}

.btn-hero-call:hover {
  background-color: var(--urgent-hover);
  transform: translateY(-2px);
}

.btn-hero-wa:hover {
  background-color: var(--wa-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .hero-title,
  .hero h1 { font-size: 48px; }
  .hero-subtitle,
  .hero-lead { font-size: 18px; }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
}

.section-services {
  background: var(--white);
}

.service-list {
  display: grid;
  gap: 1.75rem;
}

.service-list h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.service-list p {
  margin: 0;
}

.section-cta {
  margin-top: 2rem;
}

.section-why {
  background:
    linear-gradient(160deg, var(--paper) 0%, var(--paper-2) 100%);
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--amber);
  color: var(--muted);
}

.why-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  margin-bottom: 0.15rem;
}

.section-cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.section-cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.section-cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

/* Inner pages */
.page-hero {
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem 0 1.35rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
}

.page-hero p {
  color: var(--text);
  margin: 0;
  max-width: 40rem;
}

.content-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--paper-2);
}

.content-block:last-of-type {
  border-bottom: 0;
}

.content-block h2 {
  font-size: 1.25rem;
  color: var(--navy);
}

.prose h2 {
  margin-top: 1.75rem;
  color: var(--navy);
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 {
  color: var(--navy);
  font-size: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
}

.contact-list span:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  color: var(--navy);
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.form-narrow {
  max-width: 480px;
}

.form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--paper-2);
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #c9d2df;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 29, 54, 0.12);
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-weight: 500;
}

.form-status.is-error { color: var(--danger); }
.form-status.is-ok { color: var(--ok); }

/* 404 */
.section-404 {
  text-align: center;
  min-height: 50vh;
  display: grid;
  align-content: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 700;
  color: var(--amber);
  margin: 0;
  line-height: 1;
}

.section-404 h1 {
  color: var(--navy);
  margin-top: 0.5rem;
}

.section-404 .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

/* Footer (legacy stubs ? as?l stiller altta) */
.site-footer {
  margin-top: auto;
}

.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: 1.75rem;
}

.brand--footer {
  color: inherit;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.footer-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.footer-nav a:hover {
  color: #0062B8;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-contact a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #0062B8;
  font-weight: 600;
}

.footer-bottom {
  display: none;
}

/* Toast */
.toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast.is-ok { background: var(--ok); }
.toast.is-error { background: var(--danger); }

/* Tablet+ */
@media (min-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .header-container,
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .header-cta {
    margin-left: 0;
    order: 3;
  }

  .logo {
    order: 1;
  }

  .site-nav {
    order: 2;
    position: static;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    min-height: 0;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    gap: 0.5rem;
    overflow: visible;
    z-index: auto;
  }

  .nav-toggle {
    display: none;
  }

  .btn-header-call--nav {
    display: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 14px;
    min-height: 40px;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 0;
  }

  .nav-link:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-link.is-active {
    background-color: rgba(255, 255, 255, 0.12);
    border: 0;
    color: #fff;
  }

  .nav-item.has-dropdown:hover > .nav-dropdown,
  .nav-item.has-dropdown:focus-within > .nav-dropdown {
    display: block;
  }

  .nav-item.has-dropdown:hover > .nav-dropdown--cols,
  .nav-item.has-dropdown:focus-within > .nav-dropdown--cols {
    display: grid;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 240px;
    z-index: 1200;
    max-height: none;
    overflow: visible;
    margin-top: 0;
    padding-top: 0.5rem;
  }

  /* Hover k?pr?s?: header ile men? aras?ndaki bo?lukta kapanmas?n */
  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }

  .nav-dropdown--cols {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 0;
    min-width: min(720px, 70vw);
    padding: 0.65rem;
  }

  .nav-dropdown--cols .nav-dropdown-all {
    grid-column: 1 / -1;
  }

  .nav-dropdown a {
    min-height: 40px;
  }

  .nav-dropdown--cols a {
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .hero {
    align-items: center;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .why-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .why-list li {
    border-left: 0;
    border-top: 1px solid var(--border-dark);
    padding: 1rem 0 0;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .form {
    padding: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 0 6.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }
}

/* Mobil Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--navy);
  display: flex;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  min-height: 60px;
}

.mobile-bar-btn.call {
  background-color: var(--urgent);
}

.mobile-bar-btn.whatsapp {
  background-color: var(--wa);
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

/* Masa?st? WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease;
  animation: pulseWa 2s infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  background-color: var(--wa-hover);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (min-width: 769px) {
  .whatsapp-fab {
    display: flex;
  }
}

@media (max-width: 768px) {
  .toast {
    bottom: 76px;
  }

  .btn-header-call span:last-child {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ==========================================
   G?VEN ?ER?D? (TRUST BADGES / PROOF STRIP)
   ========================================== */
.trust-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .trust-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: var(--amber-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.trust-text h3,
.trust-text h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px 0;
  text-transform: none;
  letter-spacing: -0.2px;
}

.trust-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================
   H?ZMET KARTLARI (SERVICES GRID)
   ========================================== */
.services-section {
  padding: 60px 20px;
  background-color: var(--paper);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px 0;
  text-transform: none;
  letter-spacing: -0.6px;
}

.section-title span {
  color: var(--amber);
}

.section-desc {
  color: var(--muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD5E1;
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--navy);
  display: block;
}

.service-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--amber);
  font-size: 42px;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
  text-transform: none;
}

.service-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.service-card-actions {
  display: flex;
  gap: 10px;
}

.btn-card-detail,
.btn-card-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  min-height: 48px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-card-detail {
  background-color: var(--white);
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-card-detail:hover {
  background-color: var(--paper);
  color: var(--navy);
}

.btn-card-call {
  background-color: var(--urgent);
  color: var(--white) !important;
  border: 1px solid transparent;
}

.btn-card-call:hover {
  background-color: var(--urgent-hover);
  color: var(--white) !important;
  border-color: transparent;
}

.section-cta--center {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================
   D?ZELT?LM?? KURUMSAL CTA BANDI
   ========================================== */
.cta-band {
  background: radial-gradient(circle at center, var(--navy-light) 0%, var(--navy) 100%);
  padding: 60px 20px;
  color: var(--white);
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cta-band-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: none;
}

.cta-band-title span {
  color: var(--amber);
}

.cta-band-desc {
  font-size: 15px;
  color: #94A3B8;
  margin: 0 0 28px 0;
  line-height: 1.5;
  font-weight: 400;
}

.cta-band-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  max-width: 520px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .cta-band-buttons {
    flex-direction: row;
    align-items: center;
  }
}

.btn-cta-urgent,
.btn-cta-wa {
  flex: 1;
  width: 100%;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  box-sizing: border-box;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-cta-urgent {
  background-color: var(--urgent);
  color: var(--white) !important;
  border: 1px solid transparent;
  box-shadow: var(--shadow-urgent);
}

.btn-cta-urgent:hover {
  background-color: var(--urgent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.btn-cta-wa {
  background-color: var(--wa);
  border: 1px solid transparent;
  color: var(--white) !important;
  box-shadow: var(--shadow-wa);
}

.btn-cta-wa:hover {
  background-color: var(--wa-hover);
  transform: translateY(-2px);
}

/* ==========================================
   NEDEN B?Z & M??TER? YORUMLARI (SOCIAL PROOF)
   ========================================== */
.proof-section {
  padding: 70px 20px;
  background-color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: var(--paper);
  padding: 24px 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--amber);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.why-list--proof {
  display: grid;
  gap: 1rem;
  margin: 0 0 3.5rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .why-list--proof {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.why-list--proof li {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 1.1rem 1rem;
  color: var(--muted);
}

.why-list--proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.why-list--proof span {
  font-size: 0.92rem;
  line-height: 1.45;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 20px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background-color: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info h3,
.author-info h5 {
  margin: 0;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.author-info span {
  font-size: 12px;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .service-card:hover {
    transform: none;
  }

  .btn-cta-urgent:hover,
  .btn-cta-wa:hover {
    transform: none;
  }
}

/* ==========================================
   ?? SAYFALAR - PAGE HERO
   ========================================== */
.page-hero {
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.page-hero-title,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
  text-transform: none;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
}

.page-hero-title span {
  color: var(--amber);
}

.page-hero-desc,
.page-hero p {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================
   ?? SAYFALAR - GENEL ??ER?K KUTUSU
   ========================================== */
.page-content-section {
  padding: 50px 20px;
  background-color: var(--paper);
}

.page-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.page-box h2,
.page-box h3 {
  font-family: var(--font-display);
  color: var(--navy);
  text-transform: uppercase;
}

.page-box p {
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
}

.page-box .prose ul {
  color: var(--muted);
}

.service-card .prose {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card .prose p {
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.service-card .service-card-title {
  font-size: 1.25rem;
}

/* ==========================================
   ?LET???M SAYFASI & AJAX FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card,
.contact-form-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 193, 7, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  flex-shrink: 0;
}

.contact-info-text h2,
.contact-info-text h5 {
  margin: 0 0 4px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-info-text p,
.contact-info-text a {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
}

.contact-info-text a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.contact-info-text a:hover {
  color: var(--urgent);
}

.contact-form-card .form-group {
  margin-bottom: 18px;
}

.contact-form-card .form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background-color: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.btn-form-submit {
  width: 100%;
  min-height: 52px;
  background-color: var(--amber);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-form-submit:hover {
  background-color: var(--amber-hot);
}

.btn-form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-form-card .form-status {
  margin: 0.85rem 0 0;
  min-height: 1.4em;
  font-weight: 500;
}

.contact-form-card .form-status.is-error { color: var(--urgent); }
.contact-form-card .form-status.is-ok { color: var(--ok); }

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==========================================
   404 SAYFASI (NOT FOUND)
   ========================================== */
.error-page {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--paper);
  min-height: 55vh;
  display: grid;
  align-content: center;
  justify-items: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(72px, 18vw, 96px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 0;
}

.error-code span {
  color: var(--urgent);
}

.error-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin: 10px 0 15px 0;
  text-transform: uppercase;
}

.error-desc {
  color: var(--muted);
  max-width: 450px;
  margin: 0 auto 30px auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-error-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-error-home:hover {
  background-color: var(--navy-light);
  color: var(--white);
}

.error-call {
  width: auto;
  min-width: 180px;
  padding-inline: 22px;
}

/* ==========================================
   FOOTER (light / referans d?zen)
   ========================================== */
.site-footer,
.site-footer.site-footer--light {
  background: #E5E7EB;
  border-top: 1px solid #D1D5DB;
  color: #111827;
  padding: 0;
  margin-top: auto;
  position: relative;
}

.footer-main {
  padding: 3.25rem 1.25rem 2.5rem;
  background: #E5E7EB;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-container--rich {
    grid-template-columns: 1.5fr 1fr 1.1fr 1.15fr;
    gap: 2rem 1.75rem;
  }
}

.footer-logo {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  background: #111;
  color: #fff;
  font-family: var(--font-display, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 2px;
}

.footer-brand__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, "Montserrat", sans-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6B7280;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display, "Montserrat", sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0062B8;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.45;
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #0062B8;
}

.footer-contact-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  color: #9CA3AF;
  display: grid;
  place-items: center;
}

/* Trust strip */
.footer-trust {
  background: #fff;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 1.35rem 1.25rem;
}

.footer-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .footer-trust__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.footer-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 640px) {
  .footer-trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.footer-trust__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-trust__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 98, 184, 0.12);
  color: #0062B8;
  line-height: 0;
  overflow: hidden;
}

.footer-trust__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-trust__list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.footer-trust__list span {
  display: block;
  font-size: 0.78rem;
  color: #6B7280;
  line-height: 1.4;
}

.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.55rem;
  flex-shrink: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E5E7EB;
  color: #374151;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 0;
}

.footer-social a svg {
  display: block;
}

.footer-social a:hover {
  background: #0062B8;
  color: #fff;
}

/* Copyright bar */
.footer-copy {
  background: #000;
  color: #fff;
  padding: 0.95rem 1.25rem;
}

.footer-copy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-credit {
  font-family: var(--font-display, "Montserrat", sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
}

.footer-credit:hover {
  color: #93C5FD;
}

@media (min-width: 576px) {
  .footer-copy__inner {
    flex-direction: row;
    text-align: left;
  }
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.2s ease;
  z-index: 1100;
  line-height: 0;
}

.back-to-top svg {
  display: block;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
  color: #0062B8;
}

@media (min-width: 769px) {
  .back-to-top {
    right: 6.25rem; /* WhatsApp FAB ile ?ak??mas?n */
    bottom: 1.75rem;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 76px; /* mobil sticky bar ?st? */
    right: 1rem;
  }
}

/* Legacy hooks (art?k kullan?lm?yor ama k?r?lmas?n) */
.footer-nap,
.footer-hours,
.footer-subhead,
.footer-call-btn {
  display: none;
}

.footer-brand h2 span {
  color: inherit;
}

/* Kurumsal tipografi ? ba??ran uppercase yumu?atma */
.page-hero-title,
.page-hero h1,
.cta-band-title,
.error-title,
.contact-info-text h2,
.btn-form-submit,
.mobile-bar-btn {
  text-transform: none;
  letter-spacing: -0.3px;
}

.page-hero {
  border-bottom: 1px solid var(--border);
}

.stat-card,
.page-box,
.contact-info-card,
.contact-form-card,
.testimonial-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.site-footer {
  border-top: 1px solid #E5E7EB;
}

/* ?? Hizmet b?lgeleri (il?e / mahalle SEO) ?? */
.area-page {
  background: var(--paper);
  color: var(--ink);
}

.area-container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.area-hero {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.area-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.area-breadcrumb a {
  color: var(--primary, #2563eb);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.area-hero h1 {
  font-size: clamp(1.45rem, 4.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}

.area-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 1.25rem;
  max-width: 62ch;
}

.area-live {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.area-live p,
.area-live strong,
.area-live span {
  color: inherit;
}

.area-live-status {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.area-live-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: area-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes area-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.area-live-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f8fafc !important;
}

.area-live-text strong {
  color: #ffffff !important;
  font-weight: 700;
}

.area-live-meta {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #cbd5e1 !important;
}

.area-live-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn-area-call,
.btn-area-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-area-call {
  background: var(--urgent);
  color: var(--white) !important;
}

.btn-area-wa {
  background: var(--wa);
  color: var(--white) !important;
  border: 1px solid transparent;
}

.btn-area-call:hover,
.btn-area-wa:hover {
  transform: translateY(-1px);
}

.btn-area-call:hover {
  background: var(--urgent-hover);
}

.btn-area-wa:hover {
  background: var(--wa-hover);
}

.area-section,
.area-body {
  padding: 1.75rem 0 2.5rem;
}

.area-section h2,
.area-block h2,
.area-related h2 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.area-section-desc,
.area-block p {
  color: #334155;
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 1rem;
}

.area-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.area-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.area-grid--dense {
  grid-template-columns: 1fr;
}

.area-card-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.area-card-link:hover {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
}

.area-card-link--parent {
  background: #0f172a;
  color: #f8fafc;
  border-color: #0f172a;
}

.area-card-link--parent:hover {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

.area-faq-item {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 0.15rem 0.9rem;
  margin-bottom: 0.55rem;
}

.area-faq-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.area-faq-item summary::-webkit-details-marker {
  display: none;
}

.area-faq-item p {
  margin: 0 0 0.9rem;
  color: #475569;
}

.area-inline-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  color: #1e40af;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .area-live-actions {
    flex-direction: row;
  }

  .btn-area-call,
  .btn-area-wa {
    flex: 1;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-hero h1 {
    max-width: 28ch;
  }
}

@media (min-width: 960px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-grid--dense {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-hero {
    padding-top: 2rem;
  }
}

/* ?? SEO hizmet sayfalar? (/hizmetlerimiz) ?? */
.svc-page {
  background: var(--paper);
}

.svc-container {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.svc-hero,
.svc-detail-hero {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.svc-breadcrumb a {
  color: var(--primary, #2563eb);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.svc-hero h1,
.svc-detail-hero h1 {
  font-size: clamp(1.45rem, 4.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 24ch;
}

.svc-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 1.25rem;
  max-width: 62ch;
}

.svc-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.svc-section,
.svc-body {
  padding: 1.75rem 0 2.5rem;
}

.svc-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.svc-card {
  display: block;
  height: 100%;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.svc-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.svc-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.svc-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

.svc-card-more {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2563eb;
}

.svc-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.svc-block h2 {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.svc-block p {
  color: #334155;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.svc-cross {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 14px;
}

.svc-cross h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: #fff;
}

.svc-cross p {
  margin: 0 0 0.75rem;
  color: #cbd5e1;
}

.svc-cross-link,
.svc-more-link a {
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
}

.svc-more-link a {
  color: #2563eb;
}

@media (min-width: 640px) {
  .svc-hero-actions {
    flex-direction: row;
  }

  .svc-hero-actions .btn-area-call,
  .svc-hero-actions .btn-area-wa {
    flex: 1;
    max-width: 280px;
  }

  .svc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-hero h1,
  .svc-detail-hero h1 {
    max-width: 30ch;
  }
}

@media (min-width: 960px) {
  .svc-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Page layout + sidebar ---- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding: 2rem 0 3rem;
  align-items: start;
}

@media (min-width: 960px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.25rem;
  }

  .page-sidebar {
    position: sticky;
    top: 6.5rem;
  }
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.page-sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  background: #0B2C5F;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(11, 44, 95, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-sidebar__cta:hover {
  background: #004A8C;
  transform: translateY(-1px);
}

.page-sidebar__box {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.15rem 1.2rem 0.85rem;
}

.page-sidebar__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}

.page-sidebar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-sidebar__menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0;
  color: #374151;
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 1px solid #E5E7EB;
  transition: color 0.15s ease;
}

.page-sidebar__menu li:last-child a {
  border-bottom: 0;
}

.page-sidebar__menu a:hover,
.page-sidebar__menu a.is-active {
  color: #0062B8;
  font-weight: 600;
}

.page-sidebar__contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 72px;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff !important;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.page-sidebar__contact:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.page-sidebar__contact--phone {
  background: #8B1E2D;
}

.page-sidebar__contact--wa {
  background: #1B5E3B;
}

.page-sidebar__contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 0;
  overflow: hidden;
}

.page-sidebar__contact-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.page-sidebar__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.page-sidebar__contact-text small {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 500;
}

.page-sidebar__contact-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Hizmet detay hero band */
.svc-band-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 0 2rem;
  background-color: #0F172A;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.4) 100%),
    var(--svc-hero-image, none);
  background-size: cover;
  background-position: center;
  border-bottom: 0 !important;
}

.svc-band-hero--fallback {
  background-image: linear-gradient(120deg, #0F172A 0%, #1e3a5f 50%, #004A8C 100%);
}

.svc-band-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .svc-band-hero {
    min-height: 240px;
    padding: 4rem 0 2.25rem;
  }

  .svc-band-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.svc-band-hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff !important;
  letter-spacing: -0.03em;
}

.svc-band-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.svc-band-hero__crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 40px;
  color: #fff !important;
  text-decoration: none;
}

.svc-band-hero__crumbs a:hover {
  color: #93C5FD !important;
}

.svc-feature-media {
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.svc-feature-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.svc-article__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.svc-article__lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4B5563;
}

.svc-article__section {
  margin-bottom: 1.75rem;
}

.svc-article__section h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
}

.svc-article__section p,
.svc-prose {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #374151;
}

.svc-prose h2,
.svc-prose h3 {
  margin: 1.5rem 0 0.75rem;
  font-weight: 800;
  color: #111;
}

.svc-prose p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.svc-prose strong {
  color: #111;
}

.svc-page--detail {
  background: #FAFAFA;
}

.svc-page--detail .page-layout__main {
  background: #fff;
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.75rem;
  border: 1px solid #E5E7EB;
}

@media (min-width: 768px) {
  .svc-page--detail .page-layout__main {
    padding: 1.75rem 1.75rem 2rem;
  }
}

.svc-container.page-layout {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.about-container.page-layout,
.area-container.page-layout,
.contact-layout.page-layout {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-layout .contact-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .page-layout .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ?? Hakk?m?zda ?? */
.about-page {
  background: var(--paper);
}

.about-container {
  width: min(860px, calc(100% - 2rem));
  margin-inline: auto;
}

.about-hero {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.about-hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #334155;
  margin: 0 0 1.25rem;
  max-width: 42ch;
}

.about-body {
  padding: 1.75rem 0 2.75rem;
}

.about-block {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}

.about-block h2 {
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.about-block > p {
  color: #334155;
  line-height: 1.75;
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.about-cms {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border, #e2e8f0);
}

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-points li {
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
}

.about-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #0f172a;
  font-size: 1rem;
}

.about-points span {
  display: block;
  color: #475569;
  line-height: 1.55;
  font-size: 0.95rem;
}

.about-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  display: grid;
  gap: 0.75rem;
}

.about-steps li {
  padding: 0.85rem 1rem;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 12px;
  line-height: 1.55;
  font-size: 0.95rem;
}

.about-steps strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.about-cta-final {
  border-bottom: none;
  padding-bottom: 0;
}

.about-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  background: #fff;
  color: #0f172a;
  border: 1px solid var(--border, #e2e8f0);
}

@media (min-width: 640px) {
  .about-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-lead {
    max-width: 52ch;
  }
}

/* ?? Ana sayfa d?zeni ?? */
.hero-content--home {
  text-align: center;
  width: min(720px, 100%);
  margin-inline: auto;
}

.hero-brand {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--amber);
}

.hero-meta {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.75);
}

.home-svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.home-svc-card {
  display: block;
  height: 100%;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-svc-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.home-svc-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.home-svc-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}

.home-svc-card span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2563eb;
}

.home-regions {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.home-region-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.home-region-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: #1e40af;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.stats-grid--real .stat-number {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

@media (min-width: 640px) {
  .home-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .home-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
