/* ═══════════════════════════════════════════════
   PEAK DETAILING — SPLIT HERO
   Sol: metin paneli | Sağ: görsel
═══════════════════════════════════════════════ */

.hero-split {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  background: var(--blk);
}

/* ── Sol panel ─────────────────────────────── */
.hero-split-left {
  position: relative;
  z-index: 2;
  width: 44%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 120px 52px 44px 52px;
  background: var(--blk);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.hero-split-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 52px;
  right: 52px;
  height: 2px;
  background: var(--or);
}
.hero-split-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 52px;
  right: 52px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── İç gruplar ────────────────────────────── */
.hs-top {
  display: flex;
  flex-direction: column;
}
.hs-bottom {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Kicker ────────────────────────────────── */
.hs-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(14px, 2vh, 24px);
}
.hs-kicker-line {
  width: 28px;
  height: 1px;
  background: var(--or);
  flex-shrink: 0;
}
.hs-kicker-text {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
}

/* ── Ana başlık ────────────────────────────── */
.hs-title {
  font-family: var(--font-head);
  font-size: clamp(72px, 7.8vw, 130px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: clamp(20px, 3.5vh, 40px);
}
.hs-title em {
  font-style: normal;
  color: var(--or);
  display: block;
}

/* ── Alt metin ─────────────────────────────── */
.hs-sub {
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
  max-width: 420px;
  margin-top: clamp(16px, 3vh, 40px);
  margin-bottom: clamp(20px, 3vh, 36px);
}

/* ── Mobil-only öğeler (yalnızca ≤600px'te görünür) ── */
.hs-mobile-cta { display: none; }

/* ── CTA ───────────────────────────────────── */
.hs-works-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s;
}
.hs-works-link:hover { color: var(--white); }
.hs-works-arrow {
  display: inline-block;
  transition: transform 0.25s;
}
.hs-works-link:hover .hs-works-arrow { transform: translateX(5px); }

/* ── İletişim şeridi ───────────────────────── */
.hs-contact-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: clamp(16px, 2.5vh, 22px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hs-phone {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  line-height: 1;
}
.hs-phone:hover { color: var(--or); }

.hs-strip-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hs-strip-info {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Scroll göstergesi ─────────────────────── */
.hs-scroll {
  position: absolute;
  bottom: 56px;
  right: -44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hs-scroll-text {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
}
.hs-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: hs-scroll-pulse 2s ease-in-out infinite;
}
@keyframes hs-scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── Sağ panel ─────────────────────────────── */
.hero-split-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-split-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.15) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}
.hero-split-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,8,8,0.65) 70%, #080808 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Sağ alt etiket ────────────────────────── */
.hs-tag {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  background: rgba(8,8,8,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hs-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
}
.hs-tag-text {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-split-left { width: 48%; padding: 0 44px 48px; }
  .hero-split-left::before { left: 44px; right: 44px; }
}

@media (max-width: 1024px) {
  .hero-split { flex-direction: column; height: auto; min-height: 100svh; }
  .hero-split-left {
    width: 100%; order: 2;
    padding: 40px 24px 48px;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .hero-split-left::before { left: 24px; right: 24px; }
  .hero-split-right { order: 1; height: 56vw; min-height: 280px; max-height: 480px; flex: none; width: 100%; }
  .hs-title { font-size: clamp(52px, 13vw, 80px); }
  .hs-scroll { display: none; }
}

@media (max-width: 480px) {
  .hs-ctas { flex-direction: column; align-items: flex-start; }
  .hs-btn-primary, .hs-btn-ghost { width: 100%; text-align: center; }
}

/* === mobil-rotus (auto) === */
@media (max-width: 380px) {
  .hs-contact-strip { flex-wrap: wrap; gap: 8px 0; }
  .hs-phone { font-size: 16px; padding-right: 14px; margin-right: 14px; }
}

/* ═══════════════════════════════════════════════
   MOBİL HERO — immersive full-bleed (telefon + tablet ≤1024px)
   Masaüstü düzeni (>1024px) DEĞİŞMEZ.
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* ── Bölüm: tam ekran sahne ── */
  .hero-split {
    display: block;
    position: relative;
    height: 100svh;
    min-height: 560px;
    max-height: 880px;
  }

  /* ── Görsel: tam ekran arka plan ── */
  .hero-split-right {
    position: absolute;
    inset: 0;
    order: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    flex: none;
    z-index: 0;
  }
  .hero-split-fallback { object-position: center 50%; }

  /* Okunabilirlik scrim'i: ÜSTTE koyu (başlıklar bina cephesi üzerinde),
     ORTADA açık (turuncu peak tabelası görünsün), ALTTA koyu (eylemler) */
  .hero-split-right::before {
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(8,8,8,0.78) 0%,
      rgba(8,8,8,0.58) 17%,
      rgba(8,8,8,0.24) 31%,
      rgba(8,8,8,0.14) 44%,
      rgba(8,8,8,0.46) 60%,
      rgba(8,8,8,0.82) 80%,
      #080808 100%
    );
  }
  .hero-split-right::after { display: none; }

  /* "Premium Auto Detailing" rozeti — sade kalsın, gizle */
  .hs-tag { display: none; }

  /* ── Metin paneli: görselin üzerine, alta yasla ── */
  .hero-split-left {
    position: relative;
    z-index: 2;
    order: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    justify-content: space-between;
    gap: 20px;
    padding: calc(112px + env(safe-area-inset-top)) 26px calc(34px + env(safe-area-inset-bottom)) 26px;
  }
  .hero-split-left::before,
  .hero-split-left::after { display: none; }

  /* ── Üst grup: yalnızca kicker + başlık (cephe üzerinde, tabelanın üstünde) */
  .hs-top { gap: 0; }
  .hs-top .hs-sub { display: none; }   /* alt metin mobilde alta taşındı */
  .hs-kicker { margin-bottom: 11px; gap: 10px; }
  .hs-kicker-line { width: 20px; }
  .hs-kicker-text { font-size: 9px; letter-spacing: 0.2em; }

  .hs-title {
    font-size: clamp(46px, 13.5vw, 62px);
    line-height: 0.92;
    margin-bottom: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.55);
  }

  /* ── Alt grup: yalnızca eylemler (alt metin mobilde kaldırıldı) ── */
  .hs-bottom { gap: 16px; }

  /* Birincil CTA — Randevu Al */
  .hs-mobile-cta {
    order: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 16px 24px;
    background: var(--or);
    color: #080808;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 12px 34px rgba(232,93,31,0.30);
    transition: background 0.22s ease, transform 0.12s ease;
  }
  .hs-mobile-cta:active { transform: scale(0.985); background: #ff6b2b; }
  .hs-mobile-cta-arr { font-size: 17px; line-height: 1; font-weight: 700; }

  /* İletişim şeridi — tıkla-ara telefon (CTA'nın hemen altında) */
  .hs-contact-strip {
    order: 2;
    padding-top: 0;
    border-top: none;
  }
  .hs-phone { font-size: 17px; }
  .hs-strip-info { font-size: 9.5px; }

  /* Çalışmalarımızı Gör — üçüncül, sade */
  .hs-works-link {
    order: 3;
    align-self: flex-start;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
  }
}
