/* ============================================
   ATAŞEHİR HURDACILIK — hero.css
   Hero: neredeyse tam ekran
   Premium Dark Theme — Kırmızı Vurgu (#C1121F)
   ============================================ */
.hero{
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  padding: 60px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(.25) brightness(.75);
}
.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(620px 420px at 88% 8%, rgba(193,18,31,.28), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.95) 100%);
}
.hero__container{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero__card{
  width: 100%;
  max-width: 700px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 48px 42px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__title{
  margin-top: 18px;
  font-size: clamp(28px, 3.8vw, 46px);
  color: var(--ink);
  line-height: 1.1;
}
.hero__text{
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--steel);
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.hero__actions .btn{
  flex: 1 1 0;
  min-width: 170px;
  justify-content: center;
}
.hero__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero__trust li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.btn-whatsapp{
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover{
  background: #1EBE57;
  border-color: #1EBE57;
  color: var(--white);
}
.hero__trust i{ color: var(--orange); font-size: 13px; }
/* ---------- Responsive ---------- */
@media (max-width: 768px){
  .hero{
    min-height: calc(100dvh - var(--header-h) - 72px);
    padding: 20px 0 40px;
    align-items: flex-start;
  }
  .hero__container{
    padding: 0;
    justify-content: center;
    width: 100%;
  }
  .hero__card{
    padding: 28px 20px 26px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero__actions{ flex-direction: column; }
  .hero__actions .btn{ width: 100%; }
  .hero__trust{ gap: 8px 16px; }
}
@media (max-width: 420px){
  .hero__card{ padding: 22px 16px 22px; }
  .hero__title{ font-size: clamp(22px, 6vw, 30px); }
}