/* main.css — bölümler, hamburger panel, filo, iletişim, masaüstü (yayın öncesi minify edilebilir) */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Nav drawer (tam ekran — mobil) */
.nav-drawer[hidden] { display: none; }
.nav-drawer:not([hidden]) { display: block; }
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.nav-drawer:not([hidden]) { pointer-events: auto; }
.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 20rem);
  height: 100%;
  min-height: 100dvh;
  background: var(--gray-900, #151515);
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0 1rem;
  animation: slideIn 0.25s ease;
  box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  overflow-y: auto;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-800, #222);
}
.nav-drawer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
}
.nav-drawer__logo {
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,0.25);
}
.nav-drawer__logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-drawer__title {
  font-family: var(--font-head, "Montserrat", sans-serif);
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}
.nav-close {
  min-width: 48px;
  min-height: 48px;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-close:hover, .nav-close:focus { color: var(--accent); }
.nav-acc { list-style: none; margin: 0; padding: 0.4rem 0; flex: 1; }
.nav-acc__link,
.nav-acc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0.75rem 1rem;
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-acc__toggle {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.nav-acc__link:hover, .nav-acc__link:focus,
.nav-acc__toggle:hover, .nav-acc__toggle:focus {
  background: var(--black, #0a0a0a);
  border-left-color: var(--accent);
  color: var(--accent);
}
.nav-acc__chev {
  margin-left: 0.75rem;
  opacity: 0.85;
  transition: transform 0.18s ease;
}
.nav-acc__toggle[aria-expanded="true"] .nav-acc__chev { transform: rotate(180deg); }
.nav-acc__panel {
  padding: 0.15rem 0 0.5rem;
  border-left: 3px solid rgba(210, 17, 17, 0.2);
}
.nav-acc__sublink {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem 0.55rem 2.1rem;
  color: #d7d7d7;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.nav-acc__sublink:hover, .nav-acc__sublink:focus {
  background: rgba(0,0,0,0.45);
  border-left-color: var(--accent);
  color: #fff;
}
.nav-drawer__meta {
  padding: 0.85rem 0.75rem 0.5rem;
  border-top: 1px solid var(--gray-800, #222);
}
.nav-drawer__meta-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.6rem 0.65rem;
  align-items: center;
  margin-bottom: 0.55rem;
  color: #d9d9d9;
  font-size: 0.95rem;
}
.nav-drawer__meta-ico {
  width: 34px;
  height: 34px;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 17, 17, 0.12);
  color: var(--accent);
}
.nav-drawer__meta a { color: #fff; text-decoration: none; font-weight: 700; }
.nav-drawer__meta a:hover, .nav-drawer__meta a:focus { color: var(--accent); }
.nav-drawer__social {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem 0.25rem;
}
.nav-drawer__social a {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.nav-drawer__social a:hover, .nav-drawer__social a:focus {
  transform: translateY(-1px);
  background: rgba(210, 17, 17, 0.18);
  color: var(--accent);
}
.nav-drawer__phone { margin: 0.5rem 0.75rem 0; }
body.nav-open { overflow: hidden; }

/* Eski sticky CTA kaldırıldı (floating kullanılıyor) */

/* Kurumsal sayfa — kısa hero */
.page-hero {
  position: relative;
  background: radial-gradient(ellipse 90% 60% at 40% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #0b0b0b 0%, #000 100%);
  padding: 0.9rem 1rem 0;
}
.page-hero__toggle {
  position: absolute;
  top: max(0.4rem, env(safe-area-inset-top, 0px));
  right: max(0.65rem, env(safe-area-inset-right, 0px));
  z-index: 3;
}
.page-hero__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0.25rem 0 0.8rem;
}
.page-hero__logo {
  width: var(--hero-logo-w);
  height: var(--hero-logo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}
.page-hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.page-hero__title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(1.45rem, 4.2vw, 2.1rem);
}
.page-hero__lead {
  margin: 0;
  color: #c7c7c7;
  max-width: 60ch;
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
}
.page-hero__actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.page-subnav {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.page-subnav::-webkit-scrollbar { display: none; }
.page-subnav a {
  flex: 0 0 auto;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  color: #1a2744;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(0.68rem, 2.2vw, 0.82rem);
  font-family: var(--font-head, "Montserrat", sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.045em;
  white-space: nowrap;
  border-right: 1px solid #eee;
  -webkit-tap-highlight-color: transparent;
}
.page-subnav a:last-child { border-right: none; }
.page-subnav a[aria-current="page"] { color: var(--accent); }
.page-subnav a:hover, .page-subnav a:focus { background: rgba(30, 91, 163, 0.07); color: var(--accent); }

@media (max-width: 47.99rem) {
  .page-subnav {
    display: none;
  }
  /* Alt menü kalkınca içerik ile bir sonraki bölüm arasında nefes */
  .page-hero {
    padding-bottom: 0.75rem;
  }
}

/* Hamburger: mobil / dar ekranda sabit — sayfa sonunda üste çıkmadan menü */
@media (max-width: 63.99rem) {
  .hero__mast-toggle,
  .page-hero__toggle {
    position: fixed;
    top: max(0.35rem, env(safe-area-inset-top, 0px));
    right: max(0.45rem, env(safe-area-inset-right, 0px));
    z-index: 72;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }
}
body.nav-open .hero__mast-toggle,
body.nav-open .page-hero__toggle {
  visibility: hidden;
  pointer-events: none;
}

@media (min-width: 48rem) {
  .page-hero__inner {
    grid-template-columns: var(--hero-logo-w) 1fr;
    align-items: center;
    gap: 1.25rem;
  }
  .page-hero__toggle { display: none; }
  .page-hero { padding-top: 1.35rem; }
}

/* Hero — slayt (beyaz çerçeve) + hızlı CTA şeridi */
.hero-slider {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0.85rem 0.65rem 0.15rem;
}
.hero-slider__viewport {
  position: relative;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 6px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(255, 255, 255, 0.06),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
  touch-action: pan-y;
}
.hero-slider__track {
  display: flex;
  transition: none;
}
.hero-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  margin: 0;
}
.hero-slider__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
}
@supports not (aspect-ratio: 16 / 10) {
  .hero-slider__img { min-height: 14rem; }
}
.hero-slider__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  font-weight: 600;
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hero-slider__arrow:hover, .hero-slider__arrow:focus {
  background: var(--accent);
  color: #fff;
}
.hero-slider__arrow--prev { left: 0.35rem; }
.hero-slider__arrow--next { right: 0.35rem; }
.hero-slider__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0 0.5rem;
}
.hero-slider__dots button {
  width: 10px;
  height: 10px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.hero-slider__dots button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #666;
}
.hero-slider__dots--light button::after {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.hero-slider__dots--light button[aria-selected="true"]::after {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  transform: scale(1.2);
}
.hero__quick {
  list-style: none;
  margin: 0 auto;
  padding: 1rem 0.75rem 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 56rem;
  align-items: stretch;
}
.hero__quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.7rem 1rem;
  text-decoration: none;
  font-family: var(--font-head, "Montserrat", sans-serif);
  font-weight: 800;
  font-size: clamp(0.82rem, 2.6vw, 0.98rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.35rem;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s, color 0.15s, background 0.15s;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}
.hero__quick-link:active { transform: scale(0.99); }
.hero__quick-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
  flex-shrink: 0;
}
.hero__quick-link--metal {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%), var(--gray-800, #2b2b2b);
  color: #f0f0f0;
  border: 1px solid rgba(210, 17, 17, 0.25);
}
.hero__quick-link--metal:hover, .hero__quick-link--metal:focus {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.hero__quick-link--accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.hero__quick-link--accent:hover, .hero__quick-link--accent:focus {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}
.hero__quick-link--outline {
  background: #fff;
  color: var(--gray-900, #141414);
  border: 2px solid #e4e4e4;
}
.hero__quick-link--outline:hover, .hero__quick-link--outline:focus {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
@media (max-width: 23rem) {
  .hero__quick { grid-template-columns: 1fr; }
}
@media (max-width: 47.99rem) {
  .hero-slider__arrow { display: none; }
  .hero-slider__viewport { border-width: 5px; }
  /* Mobilde slider noktaları ve hızlı butonlar daha kompakt */
  .hero-slider__dots {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    gap: 0.2rem;
    margin-top: 0.65rem;
    padding: 0 0.25rem;
    scrollbar-width: none;
  }
  .hero-slider__dots::-webkit-scrollbar { display: none; }
  .hero-slider__dots button { min-width: 36px; }
  .hero__quick {
    padding: 0.75rem 0.75rem 0.95rem;
    gap: 0.55rem;
  }
  .hero__quick-link {
    min-height: 48px;
    padding: 0.65rem 0.75rem;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 48rem) {
  .hero__quick {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1.1rem 1rem 1.65rem;
  }
  .hero-slider { padding: 1.15rem 1rem 0.2rem; }
  .hero-slider__viewport { border-width: 10px; }
  .hero-slider__arrow--prev { left: 0.75rem; }
  .hero-slider__arrow--next { right: 0.75rem; }
}

/* Bölümler */
.section {
  padding: 2.5rem 1rem 3rem;
  background: var(--black, #0a0a0a);
}
.section--fleet { background: #0d0d0d; }
/* Anasayfa — Kurumsal + Sahada Net: açık yüzey */
.section--corp,
.section--info {
  background: #fff;
}
.section--info {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.section--corp .section__title,
.section--info .section__title {
  color: #0a0a0a;
}
.section--corp .section__lead,
.section--info .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
.section--corp .section__lead strong,
.section--info .section__lead strong {
  color: #0a0a0a;
}
@media (min-width: 48rem) {
  .section--corp .section__lead,
  .section--info .section__lead {
    color: #3a3a3a;
  }
}
.section--corp .corp-item {
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.section--corp .corp-item__icon {
  background: rgba(210, 17, 17, 0.12);
  color: var(--accent);
}
.section--corp .corp-item__title {
  color: #0a0a0a;
}
.section--corp .corp-item__text {
  color: #555;
}
.section--info .info-card {
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}
.section--info .info-card__title {
  color: #0a0a0a;
}
.section--info .info-card__text {
  color: #4a4a4a;
}
.section--corp .corp-item.reveal,
.section--info .info-card.reveal {
  will-change: opacity, transform;
}
.section--steps {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--steps .section__title {
  color: #0a0a0a;
}
.section--steps .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
@media (min-width: 48rem) {
  .section--steps .section__lead {
    color: #3a3a3a;
  }
}
.section--steps .steps__item {
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.section--steps .steps__n {
  background: rgba(210, 17, 17, 0.12);
}
.section--steps .steps__title {
  color: #0a0a0a;
}
.section--steps .steps__text {
  color: #4a4a4a;
}
.section--steps .steps__item.reveal {
  will-change: opacity, transform;
}

.section--faq {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--faq .section__title {
  color: #0a0a0a;
}
.section--faq .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.faq-list__item {
  background: #f4f4f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  padding: 1rem 1.15rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.faq-list__item.reveal {
  will-change: opacity, transform;
}
.faq-list__q {
  font-family: var(--font-head, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  color: #0a0a0a;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.faq-list__a {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Anasayfa — galeri önizleme (açık yüzey) */
.section--home-gallery {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--home-gallery .section__title {
  color: #0a0a0a;
}
.section--home-gallery .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
@media (min-width: 48rem) {
  .section--home-gallery .section__lead {
    color: #3a3a3a;
  }
}
.section--home-gallery .mosaic__item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.section--home-gallery .mosaic__item.reveal {
  will-change: opacity, transform;
}
@media (min-width: 40rem) {
  .section--home-gallery .mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .section--home-gallery .mosaic__item img {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 72rem) {
  .section--home-gallery .mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.section__inner { max-width: 72rem; margin: 0 auto; }
.section__title {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}
.section__lead { color: var(--gray-600, #5c5c5c); margin: 0 0 1.5rem; max-width: 40rem; }
@media (min-width: 48rem) { .section__lead { color: #b0b0b0; } }

.section__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.corp-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.corp-item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1rem;
  background: var(--gray-800, #222);
  border-radius: 0.5rem;
  border: 1px solid rgba(210, 17, 17, 0.2);
}
.corp-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(210, 17, 17, 0.14);
  color: var(--accent);
  font-weight: 800;
  border-radius: 0.4rem;
  font-size: 1.1rem;
}
.corp-item__title { color: #fff; font-size: 1.05rem; margin: 0 0 0.25rem; }
.corp-item__text { margin: 0; color: #aaa; font-size: 0.9rem; }

/* Anasayfa — bilgilendirici mini kartlar */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.info-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(210, 17, 17, 0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.info-card__title { margin: 0 0 0.35rem; color: #fff; font-size: 1.05rem; }
.info-card__text { margin: 0; color: #c7c7c7; font-size: 0.95rem; max-width: 62ch; }
@media (min-width: 48rem) {
  .info-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-card { padding: 1.05rem 1.05rem 1.1rem; }
}

/* Anasayfa — süreç adımları */
.steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.steps__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.steps__n {
  width: 44px;
  height: 44px;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 17, 17, 0.14);
  color: var(--accent);
  font-weight: 900;
  font-family: var(--font-head, "Montserrat", sans-serif);
}
.steps__title { margin: 0 0 0.25rem; color: #fff; font-size: 1.02rem; }
.steps__text { margin: 0; color: #bdbdbd; font-size: 0.95rem; }
@media (min-width: 48rem) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
}

/* Kartlar — mobil: alt alta (tek sütun) */
.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card {
  background: var(--gray-800, #222);
  border: 1px solid rgba(210, 17, 17, 0.28);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.card__title { color: #fff; margin: 0 0 0.4rem; font-size: 1.15rem; }
.card__text { color: #aaa; margin: 0 0 1rem; font-size: 0.9rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  font-family: var(--font-head, "Montserrat", sans-serif);
  -webkit-tap-highlight-color: transparent;
}
.card__link:hover { background: var(--accent-hover); }
@media (min-width: 48rem) {
  .cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 64rem) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

/* Reveal animasyon (scroll) — masaüstü + mobil */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(6px);
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  transition-delay: var(--d, 0ms);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.reveal.reveal--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
}
@media (max-width: 47.99rem) {
  .reveal {
    transform: translate3d(0, 20px, 0);
    filter: blur(4px);
    transition: opacity 0.58s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; transition-delay: 0ms; }
}

/* Anasayfa — 2'li hizmet özeti */
.svc-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.svc-card { min-width: 0; }
.svc-card {
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid rgba(210, 17, 17, 0.26);
  background: linear-gradient(180deg, rgba(43, 43, 43, 0.9), rgba(20, 20, 20, 0.96));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.svc-card__media {
  background:
    radial-gradient(ellipse 60% 60% at 50% 40%, rgba(255,255,255,0.06), transparent 55%),
    rgba(0, 0, 0, 0.18);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}
@media (min-width: 64rem) {
  /* Masaüstünde kartlar küçük kalsın */
  .svc-card__media img { aspect-ratio: 16/9; max-height: 14.5rem; object-fit: cover; }
}
@media (max-width: 47.99rem) {
  /* Mobilde alandan tasarruf: kartlar 2'li yan yana */
  .svc-split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  @media (max-width: 22.5rem) {
    /* Çok dar ekranlarda yine tek kolon */
    .svc-split { grid-template-columns: 1fr; }
  }

  .svc-card__media img {
    /* Dikey fotoğraflarda yan boşluk olmasın */
    aspect-ratio: 3 / 4;
    max-height: clamp(12rem, 32vh, 16rem);
    object-fit: cover;
    object-position: center 45%;
  }
  .svc-card__body { padding: 0.8rem 0.8rem 0.9rem; }
  .svc-card__title { font-size: 1rem; margin-bottom: 0.3rem; }
  .svc-card__text { font-size: 0.88rem; margin-bottom: 0.55rem; }
  .svc-card__list { display: none; }
  .svc-card__actions { gap: 0.45rem; }
  .svc-card__actions .btn-cta { padding: 0.55rem 0.75rem; font-size: 0.9rem; }
}
.svc-card__body {
  padding: 1rem 1rem 1.1rem;
}
.svc-card__title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
}
.svc-card__text {
  margin: 0 0 0.75rem;
  color: #b8b8b8;
  font-size: 0.95rem;
}
.svc-card__list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #d5d5d5;
  font-size: 0.92rem;
}
.svc-card__list li { margin: 0.25rem 0; }
.svc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
@media (min-width: 48rem) {
  .svc-split { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .svc-card__body { padding: 1.1rem 1.15rem 1.25rem; }
}
@media (min-width: 64rem) {
  /* Masaüstü: 4 kart yan yana, daha kompakt */
  .svc-split { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.9rem; }
  .svc-card__body { padding: 0.95rem 1rem 1.05rem; }
  .svc-card__title { font-size: 1.02rem; }
  .svc-card__text { font-size: 0.9rem; margin-bottom: 0.6rem; }
  .svc-card__list { display: none; }
  .svc-card__actions .btn-cta { padding: 0.55rem 0.75rem; font-size: 0.9rem; }
}

/* Hizmetler sayfası — detay + galeri */
.section--svc { background: #0a0a0a; }
.section--svc-alt { background: #070707; }
/* Hizmet detay — açık yüzey (ör. #sepetli, #manlift) */
.section--svc.section--svc-light {
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--svc-light .section__title {
  color: #0a0a0a;
}
.section--svc-light .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
.section--svc-light .section__lead strong {
  color: #0a0a0a;
}
@media (min-width: 48rem) {
  .section--svc-light .section__lead {
    color: #3a3a3a;
  }
}
.section--svc-light .svc-detail__list {
  color: #444;
}
.section--svc-light .svc-gallery__item {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.section--svc-light .svc-note {
  color: #5c5c5c;
}
.svc-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
}
.svc-detail__list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: #d5d5d5;
}
.svc-detail__list li { margin: 0.25rem 0; }
.svc-detail__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.svc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
.svc-gallery__item {
  margin: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(210, 17, 17, 0.22);
  background: #111;
}
.svc-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  /* Dikey saha fotoğraflarında “yan boşluk” hissi oluşmasın */
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 35%;
}
.svc-note { margin: 0.65rem 0 0; color: #888; font-size: 0.85rem; }
@media (min-width: 48rem) {
  .svc-detail { grid-template-columns: 1.05fr 1fr; gap: 1.5rem; }
  .svc-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 48rem) {
  .svc-detail--reverse .svc-detail__content { order: 2; }
  .svc-detail--reverse .svc-detail__media { order: 1; }
  /* Tek görsel kaldığı için daha “hero” dursun */
  .svc-detail__media .svc-gallery { grid-template-columns: 1fr; }
  .svc-detail__media .svc-gallery__item img { aspect-ratio: 4/3; }
}

/* Galeri / büyük foto grid — mavi blur zemin + fleet-page düzeni */
.fleet-page {
  position: relative;
  min-height: 100dvh;
  padding: 0.9rem 1rem 1.25rem;
  background: radial-gradient(ellipse 120% 70% at 40% 10%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(180deg, #071225 0%, #050b14 55%, #000 100%);
  overflow: hidden;
}
.fleet-page::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background-image: url("../images/arac-01.webp");
  background-size: cover;
  background-position: center 35%;
  filter: blur(34px) brightness(0.42) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.85;
  pointer-events: none;
}
.fleet-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 40%, rgba(20, 120, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.fleet-page__toggle {
  position: absolute;
  top: max(0.4rem, env(safe-area-inset-top, 0px));
  right: max(0.65rem, env(safe-area-inset-right, 0px));
  z-index: 5;
}
.fleet-page__top {
  position: relative;
  z-index: 2;
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}
.fleet-page__logo {
  width: var(--hero-logo-w);
  height: var(--hero-logo-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.55));
}
.fleet-page__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.fleet-page__hang {
  width: min(22rem, 92vw);
  margin: 0 auto;
  transform-origin: 50% 0;
  animation: heroHang 5.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .fleet-page__hang { animation: none; }
}
.fleet-page__body {
  position: relative;
  z-index: 2;
  max-width: 78rem;
  margin: 0.9rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
.fleet-page__side {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.85rem;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
.fleet-page__title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: clamp(1.65rem, 4.6vw, 2.5rem);
  line-height: 1.05;
}
.fleet-page__lead {
  margin: 0;
  color: #c8c8c8;
  max-width: 42ch;
  font-size: 0.95rem;
}
.fleet-page__actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.fleet-grid--glow::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 70% 55%, rgba(210,17,17,0.10), transparent 42%),
    radial-gradient(circle at 55% 15%, rgba(80,160,255,0.10), transparent 45%);
  transform: translate3d(-6%, -4%, 0);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(10px);
  animation: fleetGlow 7.5s ease-in-out infinite;
}
.fleet-grid > * { position: relative; z-index: 1; }
@keyframes fleetGlow {
  0%, 100% { transform: translate3d(-6%, -4%, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(6%, 5%, 0) scale(1.04); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .fleet-grid--glow::before { animation: none; }
}
.fleet-tile { margin: 0; }
.fleet-tile img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0.35rem;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}
.fleet-tile img:hover, .fleet-tile img:focus {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.95);
  filter: saturate(1.06) contrast(1.04);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

/* galeri.html — seçilmiş kareler, açık arka plan + lightbox */
.section--gallery {
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--gallery .section__title {
  color: #0a0a0a;
}
.section--gallery .section__lead {
  color: #3a3a3a;
  max-width: 48rem;
}
@media (min-width: 48rem) {
  .section--gallery .section__lead {
    color: #3a3a3a;
  }
}
.section--gallery .section__lead strong {
  color: #0a0a0a;
  font-weight: 700;
}
.section--gallery .gallery-grid {
  margin-top: 1.35rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
  backdrop-filter: none;
}
.section--gallery .gallery-grid.fleet-grid--glow::before {
  display: none;
}
@media (min-width: 48rem) {
  .section--gallery .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem 1.1rem;
  }
}
@media (min-width: 64rem) {
  .section--gallery .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.15rem 1.25rem;
  }
}
.section--gallery .gallery-tile {
  border-radius: 0.55rem;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.section--gallery .gallery-tile__open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: inherit;
  -webkit-tap-highlight-color: transparent;
}
.section--gallery .gallery-tile__open:focus-visible {
  outline: 2px solid rgba(210, 17, 17, 0.9);
  outline-offset: 3px;
}
.section--gallery .gallery-tile.reveal {
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.section--gallery .gallery-tile img {
  border-radius: 0.45rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    filter 0.4s ease,
    border-color 0.35s ease;
}
.section--gallery .gallery-tile img:hover,
.section--gallery .gallery-tile img:focus-visible {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  filter: saturate(1.06) contrast(1.04);
  border-color: rgba(210, 17, 17, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .section--gallery .gallery-tile.reveal {
    transition-duration: 0.01ms;
  }
  .section--gallery .gallery-tile img {
    transition: none;
  }
  .section--gallery .gallery-tile img:hover,
  .section--gallery .gallery-tile img:focus-visible {
    transform: none;
    filter: none;
  }
}

/* galeri.html — tam ekran lightbox (dialog) */
.gallery-lightbox {
  padding: 0;
  margin: 0;
  border: none;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  background: transparent;
  color: #f5f5f5;
}
.gallery-lightbox::backdrop {
  background: rgba(6, 8, 12, 0.92);
}
.gallery-lightbox__shell {
  position: relative;
  box-sizing: border-box;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.97) 0%, rgba(6, 8, 10, 0.98) 100%);
}
.gallery-lightbox__close {
  position: absolute;
  top: max(0.65rem, env(safe-area-inset-top));
  right: max(0.65rem, env(safe-area-inset-right));
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(210, 17, 17, 0.35);
  border-color: rgba(210, 17, 17, 0.55);
  outline: none;
}
.gallery-lightbox__counter {
  position: absolute;
  top: max(0.85rem, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: rgba(210, 17, 17, 0.32);
  border-color: rgba(210, 17, 17, 0.5);
  outline: none;
}
.gallery-lightbox__nav--prev {
  left: max(0.5rem, env(safe-area-inset-left));
}
.gallery-lightbox__nav--next {
  right: max(0.5rem, env(safe-area-inset-right));
}
.gallery-lightbox__stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 3.25rem 0.5rem;
  touch-action: none;
  cursor: grab;
}
.gallery-lightbox__stage.is-dragging {
  cursor: grabbing;
}
.gallery-lightbox__pan {
  transform-origin: center center;
  will-change: transform;
}
.gallery-lightbox__img {
  display: block;
  max-width: min(94vw, 1280px);
  max-height: min(72vh, 880px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.4rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-lightbox__toolbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem max(0.85rem, env(safe-area-inset-bottom));
}
.gallery-lightbox__toolbar button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gallery-lightbox__toolbar button:hover,
.gallery-lightbox__toolbar button:focus-visible {
  background: rgba(210, 17, 17, 0.28);
  border-color: rgba(210, 17, 17, 0.45);
  outline: none;
}
.gallery-lightbox__toolbar #gallery-lightbox-zoom-reset {
  min-width: 4.25rem;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 47.99rem) {
  .gallery-lightbox__stage {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .gallery-lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  .gallery-lightbox__nav--prev { left: 0.25rem; }
  .gallery-lightbox__nav--next { right: 0.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox__pan {
    transition: none !important;
  }
  .gallery-lightbox__close,
  .gallery-lightbox__nav,
  .gallery-lightbox__toolbar button {
    transition: none;
  }
}

@media (min-width: 48rem) {
  .fleet-page__top {
    grid-template-columns: var(--hero-logo-w) 1fr;
    align-items: end;
    gap: 1rem;
  }
  .fleet-page__hang { margin: 0; justify-self: center; }
  .fleet-page__toggle { display: none; }
  .fleet-page__body {
    grid-template-columns: minmax(14rem, 18rem) 1fr;
    gap: 1.25rem;
  }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; padding: 0.85rem; }
}
@media (min-width: 64rem) {
  .fleet-grid { grid-template-columns: repeat(4, 1fr); }
}
/* Filo: swipe galeri */
.fleet { position: relative; max-width: 32rem; margin: 0 auto; }
.fleet__viewport { overflow: hidden; border-radius: 0.75rem; border: 1px solid rgba(210, 17, 17, 0.28); touch-action: pan-y; }
.fleet__track { display: flex; transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); will-change: transform; }
.fleet__slide { flex: 0 0 100%; min-width: 0; }
.fleet__img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 4/5;
}
@supports not (aspect-ratio: 1) {
  .fleet__img { min-height: 20rem; }
}
.fleet__cap { margin: 0; padding: 0.6rem 0.75rem; background: #1a1a1a; color: #e0e0e0; font-size: 0.85rem; }
.fleet__arrow {
  position: absolute; top: 50%; z-index: 2;
  transform: translateY(-50%);
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
  border: none; border-radius: 50%;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fleet__arrow--prev { left: 0.4rem; }
.fleet__arrow--next { right: 0.4rem; }
.fleet__arrow:hover, .fleet__arrow:focus { background: var(--accent); color: #fff; }
.fleet__dots { display: flex; justify-content: center; gap: 0.4rem; margin-top: 0.9rem; }
.fleet__dots button {
  width: 10px; height: 10px; min-width: 48px; min-height: 48px;
  padding: 0; border: none; background: transparent; cursor: pointer; position: relative; -webkit-tap-highlight-color: transparent;
}
.fleet__dots button::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 10px; margin: -5px 0 0 -5px;
  border-radius: 50%; background: #555; transition: background 0.2s, transform 0.2s;
}
.fleet__dots button[aria-selected="true"]::after { background: var(--accent); transform: scale(1.2); }
@media (max-width: 47.99rem) {
  .fleet__arrow { display: none; }
}

/* Referans şeridi */
.section--refs { background: #0d0d0d; }
.ref-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ref-strip__item {
  flex: 1 1 10rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--gray-800, #222);
  border: 1px solid rgba(210, 17, 17, 0.28);
  border-radius: 0.5rem;
  font-family: var(--font-head, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* Görsel galeri — basit mozaik */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.mosaic__item {
  border-radius: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(210, 17, 17, 0.28);
  max-width: 100%;
}
.mosaic__item img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
@media (max-width: 22.5rem) {
  .mosaic { grid-template-columns: 1fr; }
}
@media (min-width: 40rem) {
  .mosaic { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .mosaic__item img { aspect-ratio: 4/3; }
}
@media (min-width: 64rem) {
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic__item:first-child { grid-row: span 1; }
}

/* İletişim */
.contact-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block__title { color: #fff; margin: 0 0 0.4rem; font-size: 1.1rem; }
.contact-block__text, .contact-block__hours { color: #b0b0b0; margin: 0 0 0.5rem; font-size: 0.9rem; }
.map-wrap { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 0.75rem; border: 1px solid rgba(210, 17, 17, 0.28); }
.map-wrap__frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
/* file:// önizleme: iframe yok, bilgi kutusu */
.map-wrap__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  text-align: center;
  box-sizing: border-box;
  background: #eee;
  color: #444;
  font-size: 0.88rem;
  line-height: 1.5;
}
.map-wrap__placeholder p { margin: 0; max-width: 28rem; }
.map-wrap__placeholder strong { color: #111; }
.section--contact .map-wrap__placeholder {
  background: #ececec;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}
.section--contact .map-wrap--local-file {
  border-style: dashed;
}
input, textarea, select { font-size: 1rem; }
@media (min-width: 48rem) {
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: start; }
}

/* iletisim.html — iletişim bölümü (açık / beyaz arka plan) */
.section--contact {
  position: relative;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(210, 17, 17, 0.04) 50%, transparent 60%);
  animation: contactHeroSheen 14s ease-in-out infinite;
}
@keyframes contactHeroSheen {
  0%, 100% { opacity: 0.35; transform: translateX(-4%); }
  50% { opacity: 0.75; transform: translateX(4%); }
}
.section--contact .section__title {
  color: #0a0a0a;
}
.section--contact .section__lead.section__lead--contact {
  max-width: 46rem;
  color: #3a3a3a;
}
.section--contact .section__lead.section__lead--contact strong {
  color: #0a0a0a;
}
@media (min-width: 48rem) {
  .section--contact .section__lead.section__lead--contact {
    color: #3a3a3a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section--contact::before { animation: none; opacity: 0.2; }
}
.section--contact .contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}
@media (min-width: 40rem) {
  .section--contact .contact-channels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.section--contact .contact-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: #141414;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.28s ease;
}
.section--contact .contact-channel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 28%, rgba(210, 17, 17, 0.06) 50%, transparent 72%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.section--contact .contact-channel:hover::after,
.section--contact .contact-channel:focus-visible::after {
  transform: translateX(100%);
}
.section--contact .contact-channel:hover,
.section--contact .contact-channel:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(210, 17, 17, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  outline: none;
}
.section--contact .contact-channel--call { border-color: rgba(210, 17, 17, 0.28); }
.section--contact .contact-channel--wa { border-color: rgba(37, 211, 102, 0.35); }
.section--contact .contact-channel--dir { border-color: rgba(66, 133, 244, 0.28); }
.section--contact .contact-channel__icon {
  font-size: 1.45rem;
  margin-bottom: 0.15rem;
  color: #333;
}
.section--contact .contact-channel--call .contact-channel__icon { color: #d21111; }
.section--contact .contact-channel--wa .contact-channel__icon { color: #128c7e; }
.section--contact .contact-channel--dir .contact-channel__icon { color: #1a73e8; }
.section--contact .contact-channel__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}
.section--contact .contact-channel__label {
  font-family: var(--font-head, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: #0a0a0a;
}
.section--contact .contact-channel__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #252525;
}
.section--contact .contact-layout {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
@media (min-width: 52rem) {
  .section--contact .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: start;
  }
}
.section--contact .contact-panel {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
}
.section--contact .contact-panel__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section--contact .contact-panel__title i { color: rgba(210, 17, 17, 0.9); }
.section--contact .contact-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--contact .contact-facts__item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem 0.85rem;
  align-items: start;
}
.section--contact .contact-facts__ico {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  background: rgba(210, 17, 17, 0.08);
  border: 1px solid rgba(210, 17, 17, 0.22);
  color: #b01010;
  font-size: 1rem;
}
.section--contact .contact-facts__h {
  display: block;
  color: #0a0a0a;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}
.section--contact .contact-facts__t {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #444;
}
.section--contact .contact-facts__t a {
  color: #b01010;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.section--contact .contact-facts__t a:hover,
.section--contact .contact-facts__t a:focus-visible {
  color: #050505;
}
.section--contact .contact-panel--mapcol .map-wrap--contact {
  margin-bottom: 0.65rem;
}
.section--contact .map-wrap {
  border-color: rgba(0, 0, 0, 0.1);
}
.section--contact .map-wrap__note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #555;
}
.section--contact .contact-map-link {
  display: inline-flex;
  align-self: flex-start;
}
@media (prefers-reduced-motion: reduce) {
  .section--contact .contact-channel { transition: none; }
  .section--contact .contact-channel::after { display: none; }
  .section--contact .contact-channel:hover,
  .section--contact .contact-channel:focus-visible { transform: none; }
}

.site-footer {
  background: #0b0f2b;
  padding: 2.25rem 1rem calc(1.35rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__addr {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  max-width: 48rem;
  margin: 0 auto 1.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #e4e4e4;
  border-radius: 0.5rem;
  border: 1px solid rgba(210, 17, 17, 0.22);
  background: rgba(0, 0, 0, 0.2);
}
.site-footer__addr-ico {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #ff8a8a;
}
.site-footer__addr strong {
  color: #fff;
  font-weight: 700;
}
@media (min-width: 64rem) { .site-footer { padding-bottom: 1.35rem; } }
.site-footer__inner { max-width: 72rem; margin: 0 auto; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.site-footer__col {
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.site-footer__col.reveal--in {
  opacity: 1;
  transform: translateY(0);
}
.site-footer__title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.site-footer__list a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  position: relative;
  padding-left: 0.65rem;
}
.site-footer__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(210, 17, 17, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.site-footer__list a:hover,
.site-footer__list a:focus {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(210, 17, 17, 0.75);
  text-underline-offset: 3px;
}
.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 1.35rem 0 1rem;
}
.site-footer__note {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 78ch;
}
.site-footer__note strong { color: #fff; }
.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}
@media (min-width: 48rem) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 2.2rem;
  }
}
@media (min-width: 64rem) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem 2.2rem;
  }
  .site-footer__col {
    padding-right: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }
  .site-footer__col:last-child {
    border-right: none;
    padding-right: 0;
  }
  .site-footer__list a { font-size: 0.9rem; }
}

/* Form / input — 16px iOS odak zoom önleme (eklenirse) */
form input, form textarea, form select { min-height: 48px; font-size: 1rem; }

/* Masaüstü: hero mast içi hamburger gizli */
@media (min-width: 64rem) {
  .hero__mast-toggle { display: none; }
  .hero__mast-inner {
    grid-template-columns: var(--hero-logo-w) minmax(0, 1fr) minmax(5.5rem, 8.5rem);
    grid-template-areas: "pad hang crane";
    align-items: end;
    gap: 0.35rem 0.85rem;
    padding: 0.2rem 0.65rem 0.45rem;
  }
  .hero__mast-pad {
    display: block;
    grid-area: pad;
  }
  .hero__hang {
    grid-area: hang;
    max-width: min(26rem, 38vw);
    margin: 0 auto;
    justify-self: center;
  }
  .hero__crane {
    grid-area: crane;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 0.2rem;
    margin-top: 0;
  }
  .hero__crane-svg {
    max-width: 5.75rem;
    width: 100%;
  }
  .hero__subnav {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    padding-left: calc(var(--hero-logo-w) + max(0.35rem, env(safe-area-inset-left, 0px)) + 1.25rem);
    padding-right: 1.25rem;
  }
  .hero__subnav a {
    border-right: 1px solid #eee;
    flex: 0 0 auto;
    padding: 0.62rem 0.95rem;
    font-size: 0.74rem;
  }
  .hero-slider { max-width: 60rem; }
  .section { padding: 3.5rem 1.5rem 4rem; }
  .section__lead { font-size: 1.05rem; }
  .corp-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .fleet { max-width: 42rem; }
  .fleet__arrow { display: block; }
}

@media (orientation: portrait) and (max-width: 63.99rem) {
  .fleet__img { object-position: center 25%; }
}

@media (min-width: 48rem) and (max-width: 63.99rem) {
  .hero__mast-inner {
    grid-template-columns: var(--hero-logo-w) minmax(0, 1fr) minmax(4.5rem, 6.5rem);
    grid-template-areas: "pad hang crane";
  }
  .hero__mast-pad { display: block; }
  .hero__hang { grid-area: hang; }
  .hero__crane {
    grid-area: crane;
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
  }
  .hero__subnav {
    padding-left: calc(var(--hero-logo-w) + max(0.35rem, env(safe-area-inset-left, 0px)) + 0.85rem);
    padding-right: 1rem;
  }
}

/* Hizmet noktaları — anasayfa grid (altın-sarı hücreler) */
.section--service-locs {
  background: #000;
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
}
.section--service-locs .section__title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}
.section--service-locs .section__lead {
  color: #b8b8b8;
  max-width: 48rem;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin-top: 1rem;
  perspective: 900px;
}
@media (min-width: 30rem) {
  .loc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 48rem) {
  .loc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.4rem; }
}
@media (min-width: 64rem) {
  .loc-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.45rem; }
}
.loc-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.45rem 0.35rem;
  background: #e6c23a;
  color: #0a0a0a;
  font-family: var(--font-head, "Montserrat", sans-serif);
  font-weight: 800;
  font-size: clamp(0.62rem, 1.35vw, 0.78rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0.1rem;
  /* reveal ile uyumlu; hover’da filter kullanma (blur animasyonu ile çakışmasın) */
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.section--service-locs .loc-cell.reveal {
  transform: translateY(14px) rotateX(8deg) scale(0.96);
}
.section--service-locs .loc-cell.reveal.reveal--in {
  transform: translateY(0) rotateX(0deg) scale(1);
}
.section--service-locs .loc-cell.reveal--in:hover {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.38), 0 10px 22px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
  background: #f0d65a;
}
.section--service-locs .loc-cell.reveal:not(.reveal--in):hover {
  transform: translateY(14px) rotateX(8deg) scale(0.96);
  box-shadow: none;
}
.loc-cell:active { transform: scale(0.98); }
.section--service-locs .loc-cell.reveal--in:active { transform: scale(0.98); }
.loc-cell:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.loc-cell--primary {
  background: #fff;
  color: #0a0a0a;
  border-color: rgba(0, 0, 0, 0.12);
}
.section--service-locs .loc-cell--primary.reveal--in:hover {
  background: #fff7e6;
}
@media (prefers-reduced-motion: reduce) {
  .section--service-locs .loc-grid { perspective: none; }
  .section--service-locs .loc-cell.reveal,
  .section--service-locs .loc-cell.reveal.reveal--in {
    transform: none;
  }
}

/* Bölge landing — hero altı tek görsel */
.section--loc-spot {
  background: #0a0a0a;
  padding-bottom: 2rem;
}
.loc-spot__inner {
  max-width: 52rem;
  margin: 0 auto;
}
.loc-spot__lead {
  color: #c8c8c8;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  margin-top: 0.25rem;
}
.loc-spot__figure {
  margin: 1.25rem 0 0;
  padding: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(210, 17, 17, 0.28);
  background: #111;
}
.loc-spot__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.loc-spot__navlinks {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
}
.loc-spot__navlinks a {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: none;
}
.loc-spot__navlinks a:hover { text-decoration: underline; }

/* Odak noktaları */
a:focus-visible, button:focus-visible, .btn-cta:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}
