/* Inter değişken font - Türkçe alt küme (~36 KB), kendi sunucumuzda barındırılır.
   Ayrı bir istek olmasın diye style.css'in içine gömülüdür.
   Yeniden üretmek için: python3 build_fonts.py */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fontlar/inter-tr.woff2') format('woff2');
}

/* ==========================================================================
   Marmara Taksi - Marmaraereğlisi / Tekirdağ
   Tema: Derin lacivert + turkuaz (Marmara denizi) + amber taksi vurgusu
   Yaklaşım: mobile-first. Tüm media query'ler min-width ile büyütür.
   ========================================================================== */

:root {
  /* Renkler */
  --navy-900: #061a33;
  --navy-800: #0b2545;
  --navy-700: #133860;
  --navy-600: #1d4f80;
  --teal-500: #12b8a6;
  --teal-400: #21d3bd;
  --teal-300: #7fe7da;
  --teal-050: #e6faf7;
  --amber-500: #ffbf1f;
  --amber-600: #e5a500;
  --amber-050: #fff7e0;
  --green: #25d366;
  --ink: #10243c;
  --body: #47566b;
  --muted: #6b7a8f;
  --line: #dde5ee;
  --surface: #ffffff;
  --surface-alt: #f3f7fb;

  /* Ölçüler */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.06);
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.18);
  --max-width: 1180px;
  --gutter: 18px;
  /* Mobil alt aksiyon barının yüksekliği (body padding'i için) */
  --actionbar-h: 68px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Kapali cekmece menu (position: fixed, saga otelenmis) belgeye yatay tasma
     ekliyor; body'deki overflow-x sabit konumlu ogeyi kirpmiyor. "clip" kaydirma
     kabi olusturmadigi icin sticky header'i bozmadan tasmayi keser. */
  overflow-x: clip;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  /* Mobil alt bar içeriği kapatmasın */
  padding-bottom: calc(var(--actionbar-h) + env(safe-area-inset-bottom, 0px));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-700);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(1.75rem, 6vw, 3rem);
}

h2 {
  font-size: clamp(1.4rem, 4.4vw, 2.125rem);
}

h3 {
  font-size: clamp(1.075rem, 3.2vw, 1.3rem);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 48px 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Üst şerit
   ========================================================================== */

.topline {
  background: var(--navy-900);
  color: #cfe0f0;
  font-size: 0.8125rem;
}

.topline .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  padding-top: 9px;
  padding-bottom: 9px;
  text-align: center;
}

.topline a {
  color: #cfe0f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topline a:hover {
  color: var(--teal-300);
}

.topline__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 0 rgba(33, 211, 189, 0.7);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(33, 211, 189, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(33, 211, 189, 0);
  }
}

.topline__sep {
  display: none;
  opacity: 0.35;
}

/* Telefon numaraları arasına her ekran boyutunda ayırıcı */
.topline__phones {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.topline__dash {
  opacity: 0.4;
}

/* ==========================================================================
   Header + mobil çekmece menü
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11, 37, 69, 0.97);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--amber-500), var(--amber-600));
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(255, 191, 31, 0.32);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand__name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand__sub {
  font-size: 0.6875rem;
  color: var(--teal-300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 51, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 950;
}

.nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 320px);
  background: var(--navy-800);
  z-index: 960;
  padding: 84px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -20px 0 50px rgba(6, 26, 51, 0.4);
}

.nav.is-open {
  transform: translateX(0);
}

.nav a {
  color: #dbe7f3;
  font-weight: 600;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav a:hover,
.nav a[aria-current='page'] {
  background: rgba(33, 211, 189, 0.14);
  color: #fff;
}

.nav__cta {
  margin-top: 18px;
  background: var(--amber-500) !important;
  color: var(--navy-900) !important;
  text-align: center;
  font-weight: 800 !important;
  border-bottom: 0 !important;
  border-radius: var(--radius-pill) !important;
}

.nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   Butonlar
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(255, 191, 31, 0.35);
}

.btn--whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--teal-500);
  color: var(--teal-500);
}

.icon-wa {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% 4%, rgba(18, 184, 166, 0.28) 0%, rgba(18, 184, 166, 0) 55%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #e7f0f9;
  padding: 44px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 211, 189, 0.22), transparent 68%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: normal;
  color: var(--teal-300);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(33, 211, 189, 0.14);
  border: 1px solid rgba(33, 211, 189, 0.4);
  color: var(--teal-300);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__lead {
  font-size: 1.0625rem;
  color: #b9cee2;
  max-width: 46ch;
  margin-bottom: 26px;
}

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

.hero__actions .btn {
  flex: 1 1 190px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: #a9c1d8;
}

.hero__trust strong {
  color: #fff;
}

.hero__stars {
  color: var(--amber-500);
  letter-spacing: 2px;
}

/* Hero görseli: eğimli çerçeve + turkuaz halka */
.hero__visual {
  position: relative;
  margin-inline: auto;
  max-width: 460px;
  width: 100%;
}

.hero__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(33, 211, 189, 0.5);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.hero__chip {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy-800);
  border-radius: var(--radius);
  padding: 11px 15px;
  box-shadow: var(--shadow);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__chip span {
  font-size: 1.3rem;
}

.hero__chip small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.6875rem;
}

.hero__chip--tl {
  left: -6px;
  bottom: 22px;
}

.hero__chip--br {
  display: none;
}

/* Dalga ayırıcı */
.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 52px;
  z-index: 1;
  display: block;
}

.wave path {
  fill: var(--surface);
}

/* ==========================================================================
   Bölüm başlıkları
   ========================================================================== */

.section-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head__kicker {
  display: inline-block;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head p {
  margin-top: 10px;
  color: var(--muted);
}

.section--alt {
  background: var(--surface-alt);
}

/* ==========================================================================
   Özellik kartları (sol turkuaz aksan çubuğu)
   ========================================================================== */

.features {
  display: grid;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--teal-050);
  color: var(--teal-500);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Hizmet kartları
   ========================================================================== */

.services {
  display: grid;
  gap: 16px;
}

.service {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--navy-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--teal-300);
}

.service:hover::before {
  transform: scaleX(1);
}

.service__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: var(--teal-300);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.service h3 {
  margin-bottom: 8px;
}

.service p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 0.9375rem;
}

.service__link:hover {
  gap: 11px;
  transition: gap 0.2s ease;
}

/* ==========================================================================
   Adımlar (nasıl çalışır)
   ========================================================================== */

.steps {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 22px 22px;
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 22px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--amber-500), var(--amber-600));
  color: var(--navy-900);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.075rem;
  box-shadow: 0 6px 16px rgba(255, 191, 31, 0.35);
}

.step h3 {
  margin: 14px 0 6px;
  font-size: 1.0625rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* ==========================================================================
   Bölge listeleri (chip)
   ========================================================================== */

.areas-block {
  margin-bottom: 30px;
}

.areas-block__title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.0625rem;
  margin-bottom: 15px;
  color: var(--navy-800);
}

.areas-block__title::before {
  content: '';
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: var(--teal-500);
  flex-shrink: 0;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
  transition: all 0.18s ease;
}

.area:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
}

.section--alt .area {
  background: var(--surface);
}

/* ==========================================================================
   CTA bandı
   ========================================================================== */

.cta {
  position: relative;
  background:
    radial-gradient(90% 120% at 12% 0%, rgba(18, 184, 166, 0.3) 0%, rgba(18, 184, 166, 0) 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #fff;
  text-align: center;
  padding: 52px 0;
  overflow: hidden;
}

.cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta p {
  color: #b3c9de;
  max-width: 52ch;
  margin: 0 auto 26px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta__actions .btn {
  flex: 1 1 220px;
  max-width: 340px;
}

.cta__alt {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal-300);
  font-weight: 700;
  font-size: 0.9375rem;
  border-bottom: 1px dashed rgba(127, 231, 218, 0.5);
  padding-bottom: 2px;
}

/* ==========================================================================
   Galeri
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery figure:hover img {
  transform: scale(1.07);
}

/* ==========================================================================
   Hakkımızda / içerik ikili düzen
   ========================================================================== */

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

.split__body h2 {
  margin-bottom: 14px;
}

.split__body p {
  margin-bottom: 14px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-050);
  color: var(--teal-500);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-800);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: var(--shadow);
  letter-spacing: -0.01em;
}

.phone-cta:hover {
  background: var(--navy-700);
}

.phone-cta span {
  font-size: 1.4rem;
}

.phone-cta small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phone-alt {
  display: inline-block;
  margin-top: 12px;
  margin-left: 4px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

.phone-alt:hover {
  color: var(--teal-500);
}

/* ==========================================================================
   Sayfa başlığı (iç sayfalar)
   ========================================================================== */

.page-hero {
  position: relative;
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(18, 184, 166, 0.26) 0%, rgba(18, 184, 166, 0) 58%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  padding: 40px 0 64px;
  text-align: center;
  overflow: hidden;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: #b3c9de;
  max-width: 60ch;
  margin: 0 auto;
}

.page-hero .hero__actions {
  justify-content: center;
  margin-top: 24px;
}

.page-hero .hero__actions .btn {
  flex: 1 1 180px;
  max-width: 280px;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--muted);
  padding-top: 14px;
  padding-bottom: 14px;
}

.breadcrumb a {
  color: var(--teal-500);
}

.breadcrumb span {
  color: var(--muted);
}

/* ==========================================================================
   Uzun içerik (lokasyon / bilgi sayfaları)
   ========================================================================== */

.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.25rem, 3.6vw, 1.6rem);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--teal-500);
}

.prose h3 {
  margin: 24px 0 10px;
}

.prose p {
  margin-bottom: 14px;
}

.prose > ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.prose > ul > li {
  position: relative;
  padding-left: 26px;
}

.prose > ul > li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
}

.prose a {
  color: var(--teal-500);
  font-weight: 600;
  border-bottom: 1px solid rgba(18, 184, 166, 0.3);
}

.prose a:hover {
  border-bottom-color: var(--teal-500);
}

.prose ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
}

.prose strong {
  color: var(--ink);
}

/* Bilgi kutusu */
.callout {
  background: var(--teal-050);
  border: 1px solid rgba(18, 184, 166, 0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0;
}

.callout--amber {
  background: var(--amber-050);
  border-color: rgba(255, 191, 31, 0.4);
}

.callout p:last-child {
  margin-bottom: 0;
}

/* İçerik görseli */
.media-figure {
  margin: 26px 0;
}

.media-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  cursor: zoom-in;
}

.media-figure figcaption {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* Yakın bölge linkleri */
.nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

/* SSS akordiyon */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq details[open] {
  border-color: var(--teal-300);
}

.faq summary {
  cursor: pointer;
  padding: 17px 46px 17px 20px;
  font-weight: 700;
  color: var(--navy-800);
  position: relative;
  list-style: none;
  font-size: 1rem;
  line-height: 1.45;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-050);
  color: var(--teal-500);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.faq details[open] summary::after {
  content: '−';
  background: var(--teal-500);
  color: #fff;
}

.faq details > p,
.faq__body {
  padding: 0 20px 18px;
  color: var(--body);
  font-size: 0.9375rem;
}

/* ==========================================================================
   İletişim
   ========================================================================== */

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--navy-800);
  color: var(--teal-300);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--muted);
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--teal-500);
}

.map-card {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 18px;
}

.map-card__adres {
  color: var(--body);
  margin-bottom: 16px;
  line-height: 1.6;
}

.map-card__adres strong {
  color: var(--ink);
}

.map-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-card__actions .btn {
  flex: 1 1 150px;
}

.btn--teal {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 10px 26px rgba(18, 184, 166, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  background: var(--navy-900);
  color: #a9c1d8;
  padding: 48px 0 26px;
  font-size: 0.9375rem;
}

.footer__grid {
  display: grid;
  gap: 30px;
}

.footer h4 {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer ul {
  display: grid;
  gap: 9px;
}

.footer a {
  color: #a9c1d8;
}

.footer a:hover {
  color: var(--teal-300);
}

.footer__brand .brand {
  margin-bottom: 14px;
}

.footer__brand p {
  max-width: 42ch;
}

.footer__bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: #7e97b0;
  display: grid;
  gap: 8px;
  text-align: center;
}

/* ==========================================================================
   Mobil alt aksiyon barı (yüzen butonlar yerine)
   ========================================================================== */

.actionbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 880;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(11, 37, 69, 0.1);
}

.actionbar .btn {
  padding: 13px 12px;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 51, 0.94);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  max-width: 1000px;
  max-height: 100%;
  margin: 0;
  text-align: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Yardımcılar
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

/* ==========================================================================
   ≥ 560px - küçük tabletler / büyük telefonlar
   ========================================================================== */

@media (min-width: 560px) {
  :root {
    --gutter: 24px;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat__num {
    font-size: 1.75rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__chip--br {
    display: flex;
    right: -6px;
    top: 26px;
  }

  .topline__sep {
    display: inline;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    text-align: left;
  }
}

/* ==========================================================================
   ≥ 900px - masaüstü
   ========================================================================== */

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  section {
    padding: 72px 0;
  }

  .topline .container {
    justify-content: space-between;
    text-align: left;
  }

  /* Mobil çekmece yerine yatay menü */
  .nav-toggle,
  .nav__close,
  .nav-scrim {
    display: none !important;
  }

  .nav {
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    overflow: visible;
    box-shadow: none;
  }

  .nav a {
    border-bottom: 0;
    padding: 9px 13px;
    font-size: 0.9375rem;
  }

  .nav a[aria-current='page'] {
    background: transparent;
    color: var(--teal-300);
  }

  .nav__cta {
    margin-top: 0;
    margin-left: 10px;
    padding: 10px 20px !important;
  }

  .actionbar {
    display: none;
  }

  .hero {
    padding: 70px 0 120px;
  }

  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
  }

  .hero__visual {
    max-width: none;
  }

  .wave {
    height: 80px;
  }

  .stats {
    margin-top: -52px;
  }

  .stat {
    padding: 26px 16px;
  }

  .services {
    grid-template-columns: repeat(3, 1fr);
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
  }

  .features .feature {
    flex-direction: column;
  }

  .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 36px;
  }

  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .page-hero {
    padding: 60px 0 90px;
  }

  .gallery {
    gap: 14px;
  }
}

/* ==========================================================================
   ≥ 1100px
   ========================================================================== */

@media (min-width: 1100px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .hero__lead {
    font-size: 1.125rem;
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Yazdırma */
@media print {
  .header,
  .topline,
  .actionbar,
  .nav,
  .cta,
  .footer {
    display: none !important;
  }

  body {
    padding-bottom: 0;
    color: #000;
  }
}
