/**
 * Yaptırt - Ana Stil Dosyası
 * Oto Servis Yönetim Sistemi
 * Cross-browser uyumlu
 */

/* ============================================
   GENEL AYARLAR VE DEĞİŞKENLER
   ============================================ */
:root {
  /* Logo kırmızısı ile uyumlu ana palet (Red 400 → 900) */
  --primary-color: #dc2626; /* Logo kırmızısı — ana vurgu */
  --primary-dark: #991b1b; /* Koyu bordo — hover/aktif */
  --primary-light: #f87171; /* Açık kırmızı — subtle vurgu */
  --primary-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);

  --secondary-color: #1e293b;
  --secondary-gradient: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);

  /* Accent Colors */
  --accent-color: #f59e0b;
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

  /* Status Colors */
  --success-color: #10b981;
  --success-gradient: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  --danger-color: #ef4444;
  --danger-gradient: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  --warning-color: #f59e0b;
  --info-color: #dc2626;

  /* Background Colors */
  --light-bg: #f8fafc;
  --light-bg-alt: #f1f5f9;
  --dark-bg: #1e293b;
  --gradient-bg: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  --hero-gradient: linear-gradient(
    135deg,
    #fef2f2 0%,
    #fee2e2 50%,
    #fecaca 100%
  );

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Border & Shadows */
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-colored: 0 10px 40px -10px rgba(220, 38, 38, 0.5);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

/* ============================================
   HEADER VE NAVİGASYON
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  /* Masaüstünde logo (120px) header'dan (110px) taştığı için kırpılır.
     DİKKAT: mobilde bu kural @media içinde "visible" yapılır — mobil menü
     .header-container'a göre top:100% ile konumlandığından hidden olursa
     menü açılır ama kırpıldığı için görünmez. */
  overflow: hidden;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Header Container - Tek Satır */
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 110px;
  gap: 1rem;
  position: relative;
}

/* Logo - Sol Taraf */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 120px;
  max-height: 120px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  will-change: transform, filter;
  filter: drop-shadow(0 4px 10px rgba(239, 68, 68, 0.25))
    drop-shadow(0 0 18px rgba(239, 68, 68, 0.18));
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease;
  animation:
    logoEntrance 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    logoBreathe 4.2s ease-in-out 1.2s infinite;
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 6px 14px rgba(239, 68, 68, 0.45))
    drop-shadow(0 0 28px rgba(239, 68, 68, 0.55)) brightness(1.05)
    saturate(1.15);
  animation-play-state: paused;
}

.logo:active .logo-img {
  transform: scale(1.02) rotate(-1deg);
  transition-duration: 0.12s;
}

/* Header scroll edilince logo biraz küçülüp kompakt olur */
.header.scrolled .logo-img {
  height: 95px;
  filter: drop-shadow(0 3px 8px rgba(239, 68, 68, 0.22))
    drop-shadow(0 0 14px rgba(239, 68, 68, 0.15));
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(-12px) rotate(-6deg);
    filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0)) blur(4px);
  }
  60% {
    opacity: 1;
    filter: drop-shadow(0 8px 22px rgba(239, 68, 68, 0.55))
      drop-shadow(0 0 32px rgba(239, 68, 68, 0.4)) blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0);
    filter: drop-shadow(0 4px 10px rgba(239, 68, 68, 0.25))
      drop-shadow(0 0 18px rgba(239, 68, 68, 0.18));
  }
}

@keyframes logoBreathe {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 4px 10px rgba(239, 68, 68, 0.25))
      drop-shadow(0 0 18px rgba(239, 68, 68, 0.18));
  }
  50% {
    transform: scale(1.025);
    filter: drop-shadow(0 6px 14px rgba(239, 68, 68, 0.38))
      drop-shadow(0 0 26px rgba(239, 68, 68, 0.32));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-img {
    animation: none;
    transition: none;
  }
  .logo:hover .logo-img {
    transform: none;
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.logo-text span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.25rem;
  position: relative;
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-bg);
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-link.youtube:hover {
  background: #ff0000;
}
.social-link.whatsapp:hover {
  background: #25d366;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

@keyframes navMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil menü açıkken arka plan kaymasın */
body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu.active {
    animation: none;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 62vh;
  height: auto;
  display: flex;
  align-items: center;
  background: #0a1628;
  position: relative;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 3rem;
}

/* Tam ekran video arka planı */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/*
 * Portrait videoyu landscape hero'ya yay (YouTube tekniği):
 * min-width/min-height + absolute center → her aspect ratio'da tam kaplama
 */
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* İçeriği okunabilir kılan karanlık gradyan katmanı */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 15, 40, 0.88) 0%,
      rgba(8, 20, 55, 0.72) 50%,
      rgba(5, 15, 40, 0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 40%,
      transparent 70%,
      rgba(0, 0, 0, 0.4) 100%
    );
}

/* Dot pattern kaldırıldı - video arka plan */
.hero::before {
  display: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: #86efac;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: #f87171;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature i {
  color: #86efac;
}

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

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ses aç/kapat butonu — hero alt ortası */
.video-sound-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  z-index: 3;
}

.video-sound-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Hologram Logo Efekti */
.hero-logo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-width: 450px;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4));
  animation:
    hologramFloat 6s ease-in-out infinite,
    hologramGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Hologram Efekt Katmanları */
.hero-logo-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: hologramPulse 4s ease-in-out infinite;
  z-index: 1;
}

.hero-logo-container::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: hologramPulse 4s ease-in-out infinite 2s;
  z-index: 0;
}

/* Hologram Animasyonları */
@keyframes hologramFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes hologramGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.4))
      drop-shadow(0 0 40px rgba(220, 38, 38, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.6))
      drop-shadow(0 0 60px rgba(220, 38, 38, 0.3))
      drop-shadow(0 0 80px rgba(220, 38, 38, 0.15));
  }
}

@keyframes hologramPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

.hero-gif-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-gif {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f87171;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
}

.btn-outline-white {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: white;
}

.btn-outline-white:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-accent {
  background: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background: #d97706;
}

.btn-success {
  background: var(--success-color);
  color: white;
}

.btn-success:hover {
  background: #059669;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   SECTION GENEL
   ============================================ */
.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HİZMETLER
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: var(--radius-md);
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ============================================
   NASIL ÇALIŞIR
   ============================================ */
.how-it-works {
  background: #f8fafc;
  color: var(--text-primary);
}

.how-it-works .section-title {
  color: var(--text-primary);
}

.how-it-works .section-description {
  color: var(--text-secondary);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(26, 86, 219, 0.3);
  color: white;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ============================================
   RANDEVU FORMU
   ============================================ */
.appointment-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
}

.appointment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.appointment-info {
  padding: 1rem 0;
}

.appointment-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.appointment-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-card-content h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 0.15rem;
}

.info-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.appointment-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 140px;
  align-self: start;
}

/* ============================================
   RANDEVU FORMU ACCORDION (Yanıp sönen başlık)
   ============================================ */
.form-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 60%, #991b1b 100%);
  color: #fff;
  text-align: left;
  font-family: inherit;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  animation: formTogglePulse 2.2s ease-in-out infinite;
}

.form-toggle:hover {
  transform: translateY(-1px);
}

.form-toggle:active {
  transform: translateY(0);
}

.form-toggle-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: formToggleIconPulse 1.6s ease-in-out infinite;
}

.form-toggle-text {
  flex: 1;
  min-width: 0;
}

.form-toggle-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.15rem;
  letter-spacing: 0.01em;
  animation: formToggleTitleBlink 1.4s ease-in-out infinite;
}

.form-toggle-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.form-toggle-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease;
}

.form-toggle:hover .form-toggle-arrow {
  background: rgba(255, 255, 255, 0.3);
}

/* Açıldığında — pulse durur, renk koyulaşır, ok döner */
.form-toggle.open {
  background: linear-gradient(135deg, #7f1d1d 0%, #1e293b 100%);
  animation: none;
}

.form-toggle.open .form-toggle-icon,
.form-toggle.open .form-toggle-title {
  animation: none;
}

.form-toggle.open .form-toggle-arrow {
  transform: rotate(180deg);
}

.form-toggle.open .form-toggle-text p::after {
  content: " — kapatmak için tıklayın";
}

/* Yanıp sönen ring glow */
@keyframes formTogglePulse {
  0%,
  100% {
    box-shadow:
      0 10px 24px rgba(220, 38, 38, 0.25),
      0 0 0 0 rgba(220, 38, 38, 0.55);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(220, 38, 38, 0.4),
      0 0 0 16px rgba(220, 38, 38, 0);
  }
}

@keyframes formToggleIconPulse {
  0%,
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.3);
  }
}

@keyframes formToggleTitleBlink {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  }
  50% {
    opacity: 0.85;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
  }
}

/* Accordion gövdesi */
.form-collapse {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.75rem;
  transition:
    max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease 0.05s,
    padding 0.4s ease;
}

.form-collapse.open {
  max-height: 4000px;
  opacity: 1;
  padding: 1.5rem 1.75rem 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .form-toggle,
  .form-toggle-icon,
  .form-toggle-title {
    animation: none !important;
  }
  .form-collapse {
    transition: none;
  }
}

/* ============================================
   ARAÇ TAKİP MİNİ WİDGET (Randevu Al altı)
   ============================================ */
.tracking-widget {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.08);
}

.tracking-widget-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.tracking-widget-header > i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tracking-widget-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
}

.tracking-widget-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.tracking-widget-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.6rem;
}

.tracking-widget-form .form-control {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.tracking-widget-form .btn {
  white-space: nowrap;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.tracking-widget .tracking-result:not(:empty) {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .tracking-widget-form {
    grid-template-columns: 1fr;
  }
  .appointment-form-wrapper {
    position: static;
  }
  .form-toggle {
    padding: 1.1rem 1.25rem;
    gap: 0.75rem;
  }
  .form-toggle-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .form-toggle-title {
    font-size: 1.1rem;
  }
  .form-toggle-text p {
    font-size: 0.8rem;
  }
  .form-collapse.open {
    padding: 1.1rem 1.25rem 1.25rem;
  }
}

/* ============================================
   FORM ELEMANLARI
   ============================================ */
.form-group {
  margin-bottom: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
}

.form-label.required::after {
  content: "*";
  color: var(--danger-color);
  margin-left: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.phone-input-wrapper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  transition: var(--transition);
}
.phone-input-wrapper:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.phone-prefix {
  padding: 0.625rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--light-bg);
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  user-select: none;
}
.phone-input-wrapper .form-control {
  border: none;
  border-radius: 0;
  box-shadow: none;
  flex: 1;
}
.phone-input-wrapper .form-control:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check-input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.375rem;
}

/* ============================================
   ARAÇ TAKİP
   ============================================ */
.tracking-section {
  background: white;
}

.tracking-container {
  max-width: 800px;
  margin: 0 auto;
}

.tracking-form {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.tracking-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.tracking-result {
  display: none;
}

.tracking-result.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tracking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.tracking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.tracking-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.tracking-code {
  display: inline-block;
  background: var(--light-bg);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--primary-color);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-badge.pending {
  background: #fef3c7;
  color: #92400e;
}
.status-badge.contacted {
  background: #fef3c7;
  color: #78350f;
}
.status-badge.confirmed {
  background: #e2e8f0;
  color: #334155;
}
.status-badge.in_progress {
  background: #fee2e2;
  color: #991b1b;
}
.status-badge.completed {
  background: #d1fae5;
  color: #065f46;
}
.status-badge.delivered {
  background: #dcfce7;
  color: #166534;
}
.status-badge.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.tracking-timeline {
  margin-top: 2rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: 2px solid white;
}

.timeline-item.completed .timeline-dot {
  background: var(--success-color);
}

.timeline-item.current .timeline-dot {
  background: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.2);
}

.timeline-content {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.timeline-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   GALERİ
   ============================================ */
.gallery-section {
  background: var(--light-bg);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background: white;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--primary-color);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.gallery-item img,
.gallery-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.gallery-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.footer-logo-img {
  /* Şeffaf PNG — koyu footer üstünde kırmızı parıltı ile vurgula */
  filter: drop-shadow(0 6px 16px rgba(239, 68, 68, 0.35))
    drop-shadow(0 0 24px rgba(239, 68, 68, 0.25));
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.35s ease;
  will-change: transform, filter;
}

.footer-logo:hover .footer-logo-img,
.footer-logo-img:hover {
  transform: scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 8px 22px rgba(239, 68, 68, 0.55))
    drop-shadow(0 0 34px rgba(239, 68, 68, 0.45)) brightness(1.08);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ============================================
   WHATSapp Butonu
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   ALERT VE BİLDİRİMLER
   ============================================ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.alert-warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.alert-info {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

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

  .steps-container::before {
    display: none;
  }

  .appointment-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  /* iOS zoom önleme - tüm input/select/textarea 16px+ */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Mobil header — logo rengiyle uyumlu, kompakt */
  .header {
    background: linear-gradient(180deg, #fff5f5 0%, #fee2e2 100%);
    border-bottom: 2px solid rgba(220, 38, 38, 0.18);
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.08);
    /* KRİTİK: mobil menü header'ın altına (top:100%) açılıyor.
       overflow:hidden burada menüyü tamamen kırpıp görünmez yapıyordu —
       buton "açılıyor" gibi davranıp ekranda hiçbir şey çıkmıyordu.
       Mobilde logo 75px / header 85px olduğu için kırpmaya gerek yok. */
    overflow: visible;
  }

  .header.scrolled {
    box-shadow: 0 4px 18px rgba(220, 38, 38, 0.18);
  }

  .header-container {
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    min-height: 85px;
    padding: 0.4rem 0.5rem;
    gap: 0;
    line-height: 0;
  }

  .logo {
    order: 1;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    line-height: 0;
    flex-grow: 0;
    flex-shrink: 0;
  }

  .logo-img {
    height: 75px;
    max-width: 100%;
    width: 100%;
    display: block;
    /* Mobilde glow ve breathe animasyonunu kapat — alan küçülsün */
    animation: none;
    filter: drop-shadow(0 2px 6px rgba(220, 38, 38, 0.25));
  }

  .logo:hover .logo-img {
    transform: none;
    filter: drop-shadow(0 3px 8px rgba(220, 38, 38, 0.35));
  }

  .header.scrolled .logo-img {
    height: 68px;
  }

  .footer-logo img {
    height: 95px;
    max-width: 190px;
  }

  /* nav elementi mobilde yer kaplamasın; menü absolute olarak açılır */
  .header-container > nav {
    position: static;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    /* .header-container mobilde line-height:0 veriyor — menüde sıfırlanmalı,
       aksi halde menü açılır ama satırlar üst üste binip boş görünür. */
    line-height: 1.5;
    border-top: 1px solid rgba(220, 38, 38, 0.15);
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    /* Uzun menülerde ekran taşmasın (dvh: mobil tarayıcı adres çubuğu payı) */
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    display: flex;
    animation: navMenuDrop 0.18s ease-out both;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    width: 100%;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link.active,
  .nav-menu .nav-link:hover {
    background: rgba(220, 38, 38, 0.07);
    color: var(--primary-color);
  }

  .nav-menu .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .mobile-menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    order: 3;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    /* 44x44 dokunma alanı — eskiden ~24px idi ve dokunuşlar sık sık ıskalıyordu */
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 1;
    border-radius: var(--radius-sm);
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .mobile-menu-btn:active {
    background: rgba(220, 38, 38, 0.1);
  }

  .mobile-menu-btn[aria-expanded="true"] {
    color: var(--primary-color);
  }

  .header-actions {
    display: none;
  }

  /* Mobilde hero tam ekran değil, yarı boyut — overlay ekranı doldurmasın */
  .hero {
    height: auto;
    min-height: 55vh;
    padding-top: 130px;
    padding-bottom: 2rem;
  }

  .hero-video-bg {
    height: 100%;
  }

  .hero-video-bg video {
    /* iOS Safari için -webkit- prefix */
    -webkit-transform: translate(-50%, -50%);
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-logo-container {
    max-width: 350px;
    padding: 1rem;
  }

  .hero-logo {
    max-width: 320px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tracking-inputs {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .appointment-info h2 {
    font-size: 1.5rem;
  }

  .info-cards {
    gap: 0.5rem;
  }

  /* Müşteri Yorumları - Tablet */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 60vh;
    padding-top: 114px;
    padding-bottom: 1.5rem;
  }

  .header-container {
    padding: 0 0.4rem;
  }

  .logo-img {
    height: 70px;
    max-width: 220px;
  }

  .header.scrolled .logo-img {
    height: 62px;
  }

  .tracking-form {
    padding: 1.5rem 1rem;
  }

  .appointment-form-wrapper {
    padding: 1rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .hero-logo-container {
    max-width: 280px;
    padding: 0.5rem;
  }

  .hero-logo {
    max-width: 250px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MÜŞTERİ YORUMLARI
   ============================================ */
.reviews-section {
  background: var(--light-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-info {
  flex: 1;
}

.review-info h4 {
  margin: 0 0 0.15rem 0;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.75rem;
}

.review-stars i {
  margin-right: 1px;
}

.review-source {
  font-size: 1.25rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Sosyal Medya Section */
.social-section {
  background: white;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
