/* ============================================================
   ALP TAŞIMACILIK — Ana Sayfa Özel Stilleri
   ============================================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  color: var(--color-white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  animation: heroKenBurns 16s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
  }
}

@media (max-width: 575.98px) {
  .hero-media img {
    object-position: 63% 55%;
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 20, 15, 0.75) 0%,
    rgba(9, 20, 15, 0.55) 42%,
    rgba(9, 20, 15, 0.82) 100%
  );
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: left;
  padding-top: clamp(130px, 24vh, 260px);
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-top: clamp(110px, 20vh, 180px);
  }
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-stat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
}

.hero-stat span {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg) var(--space-xl);
  }
}

.hero h1 {
  font-family: "Playfair Display", "Poppins", serif;
  color: var(--color-white);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero p.lead {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: var(--space-xl);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-xs);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-cue .scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.4; }
}

/* ---- Hero Sonrası Buzlu Cam Geçişi ---- */
.section#hizmetler {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(190%) blur(20px);
  -webkit-backdrop-filter: saturate(190%) blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 -16px 40px rgba(16, 32, 26, 0.1);
}

@media (max-width: 767.98px) {
  .section#hizmetler {
    margin-top: -36px;
  }
}

/* ---- Hizmet Kartları ---- */
.service-card .card-media {
  aspect-ratio: 16 / 11;
}

.service-icon-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}

/* ---- Neden Biz ---- */
.why-us-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-primary);
  text-align: center;
  max-width: 180px;
}

@media (max-width: 575.98px) {
  .why-us-badge {
    right: 0.5rem;
    bottom: -1rem;
    max-width: 150px;
    padding: var(--space-sm);
  }
}

.why-us-badge .stat-number {
  color: var(--color-white);
}

.why-us-badge .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* ---- Logo Slider (Referanslar) ---- */
.logo-slider-wrap {
  padding-block: var(--space-lg);
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 96px;
}

.logo-slide-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-gray-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.05rem 1.75rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.logo-slide-inner i {
  font-size: 1.05rem;
  color: var(--color-brand-red);
}

.logo-slide:hover .logo-slide-inner {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-red-light);
}

/* ---- Yorum Kartları ---- */
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  height: 100%;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #f5a623;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-dark);
}

.review-author span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.review-google-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* ---- CTA Bandı ---- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  padding: var(--space-xl) clamp(1.5rem, 5vw, 4rem);
  color: var(--color-white);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(201, 162, 75, 0.25), transparent 45%);
}

.cta-band .row {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}
