/* ============================================================
   RepairX Salzburg — style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Değişkenleri --- */
:root {
  --red:         #E30613;
  --red-dark:    #CF261A;
  --dark-text:   #171B25;
  --blue:        #066aab;
  --bg:           #F6F8F7;
  --dark-section: #0d1b2a;
  --white:        #ffffff;
  --dark:         #1a1a1a;
  --text:         #555555;
  --border:       #e8e8e8;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --radius:       16px;
  --transition:   all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Butonlar --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-orange {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-orange:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,6,19,0.35);
}

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

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-outline-dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.desktop-btns { display: flex; }
.mobile-btns { display: none !important; margin-top: 20px; }

/* Badge */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
}

/* Section başlıkları */
.section-tag {
  display: inline-block;
  background: rgba(227,6,19,0.12);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto 40px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 0;
  height: 78px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  margin-right: 28px;
}

.nav-links { display: none; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Telefon & WhatsApp ikon butonları */
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-phone {
  color: var(--dark-text);
  border-color: #ccc;
  background: #f5f5f5;
}
.nav-phone:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.nav-whatsapp {
  color: #25D366;
  border-color: #25D366;
  background: #f0fdf4;
}
.nav-whatsapp:hover {
  background: #25D366;
  color: #fff;
}

.nav-cta {
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
}

/* ---- Mobil Sabit Arama Butonu (sol alt) ---- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--red);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(227,6,19,0.4);
  transition: var(--transition);
  color: #fff;
}
.mobile-call-btn:hover {
  background: var(--red-dark);
  transform: scale(1.08);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: rgba(227,6,19,0.08);
  color: var(--red);
}

.mobile-nav .btn {
  margin-top: 8px;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 82px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  /* Dıştan koyu → ortada kırmızı glow → tekrar koyu */
  background:
    radial-gradient(ellipse 90% 140% at 55% 50%, rgba(160,10,22,0.55) 0%, rgba(22,4,8,0.85) 48%, #080306 100%),
    #080306;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 478px;
  padding: 60px 0;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 50%;
  margin-left: 0;
  text-align: left;
}

.hero-image {
  flex: 1;
  max-width: 55%;
  display: flex;
  justify-content: flex-end;
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-image img {
  animation: devicePulse 4s infinite alternate ease-in-out;
}

@keyframes devicePulse {
  0%   { filter: drop-shadow(0 0 10px rgba(227,6,19,0.05)); }
  100% { filter: drop-shadow(0 0 35px rgba(227,6,19,0.35)); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,6,19,0.18);
  backdrop-filter: blur(10px);
  color: #ff6370;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  border: 1px solid rgba(227,6,19,0.35);
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 26px;
}

.hero-title span { color: var(--red); }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   HİZMETLER — 4 KART
   ============================================================ */
.services-section {
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--red);
}

.service-icon-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(227,6,19,0.15); /* Hafif gölge ile premium hava */
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   HAKKINDA (ABOUT)
   ============================================================ */
.about-section {
  padding: 90px 0;
  background: var(--white);
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-text { flex: 1; }

.about-list {
  margin: 26px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--dark);
  font-weight: 500;
}

.about-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../img/icon-check-repairx.webp') center/contain no-repeat;
  flex-shrink: 0;
}

.about-img { flex-shrink: 0; }
.about-img img { width: 340px; }

.address-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border-radius: 12px;
  padding: 18px 22px;
  border-left: 4px solid var(--red);
  margin-bottom: 28px;
}

.address-box svg { flex-shrink: 0; margin-top: 2px; }
.address-box p { font-size: 14px; color: var(--dark); font-weight: 500; line-height: 1.5; }

/* ============================================================
   STANDORT (KONUM) SECTION
   ============================================================ */
.location-section {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #f6f8f7;
}

.map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Subtle left fade so card stays readable */
.map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(180, 0, 10, 0.65) 0%,
    rgba(200, 0, 12, 0.40) 30%,
    rgba(227, 6, 19, 0.15) 55%,
    rgba(227, 6, 19, 0.00) 75%
  );
  z-index: 1;
  pointer-events: none;
}

.map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 25% 50%, rgba(227,6,19,0.05) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.map-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.9) saturate(1.1);
  transform: scale(1.03);
  transition: transform 8s ease;
}

.location-section:hover .map-bg img {
  transform: scale(1.06);
}

.location-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.location-card {
  pointer-events: all;
  position: relative;
  z-index: 10;
  transform: translateY(-10px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 50px rgba(0,0,0,0.10),
    0 40px 80px rgba(0,0,0,0.06);
  margin: 0;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(227, 6, 19, 0.4);
  animation: pulsering 1.8s ease-out infinite;
}

@keyframes pulsering {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.location-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--red);
  text-transform: uppercase;
}

.location-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.location-title span {
  color: var(--red);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e9eef4;
  transition: background 0.2s;
}

.loc-item:hover {
  background: rgba(227, 6, 19, 0.04);
  border-color: rgba(227, 6, 19, 0.18);
}

.loc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(227, 6, 19, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.loc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.loc-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94a3b8;
  text-transform: uppercase;
}

.loc-value {
  font-size: 13.5px;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.4;
}

.red-text {
  color: var(--red) !important;
  font-weight: 600 !important;
}

.btn-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(227, 6, 19, 0.4);
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-route:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.55);
  color: #fff;
}

@media (max-width: 768px) {
  .location-section {
    height: auto;
    padding: 0 0 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  /* Görsel: üstte, alta doğru beyaza solar */
  .map-bg {
    display: block;
    position: relative;
    width: 100%;
    height: 260px;
    flex-shrink: 0;
  }

  .map-bg img {
    object-position: center top;
  }

  /* Sağdan-sola gradient yerine alttan-üste beyaza solan gradient */
  .map-bg::before {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.6) 60%,
      rgba(255,255,255,1) 100%
    );
  }

  .map-bg::after { display: none; }

  .location-container {
    position: relative;
    z-index: 3;
    height: auto;
    justify-content: center;
    padding: 0 16px;
    margin-top: -32px;
  }

  .location-card {
    transform: none;
    max-width: 100%;
    background: #ffffff;
    border-color: rgba(227,6,19,0.15);
  }

  .location-title { font-size: 26px; color: #0f172a; }
}

/* ============================================================
   HİZMET SEÇENEKLERİ (KOYU)
   ============================================================ */
.options-section {
  padding: 90px 0;
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}

.options-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(227,6,19,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.options-section .section-title { color: var(--white); }
.options-section .section-desc  { color: rgba(255,255,255,0.6); }

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.option-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 42px 30px;
  text-align: center;
  transition: var(--transition);
}

.option-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(227,6,19,0.4);
  transform: translateY(-6px);
}

.option-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.option-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.35;
}

/* ============================================================
   DETAYLI TAMİR HİZMETLERİ
   ============================================================ */
.repairs-section {
  padding: 90px 0;
}

.repairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.repair-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.repair-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
  border-color: var(--red);
}

.repair-icon {
  width: 60px;
  height: 60px;
  background: rgba(227,6,19,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.repair-icon img { width: 100%; height: 100%; object-fit: contain; }

.repair-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.repair-card p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-list { margin-top: 46px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(227,6,19,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; }

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg { width: 18px; height: 18px; }

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.review-date { font-size: 12px; color: #999; }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-section);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--red); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
}

.footer-contact-item svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }

.footer-hours {
  margin-top: 6px;
  font-size: 13px;
}

.footer-hours span { display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--red); }

.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(227,6,19,0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================================
   BOOKING FORM – 3 ADIMLI
   ============================================================ */
.booking-section {
  padding: 80px 0;
  background: #fff;
}

.booking-form-wrap {
  max-width: 960px;
  margin: 48px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}

/* Progress */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.bp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bp-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8e8e8;
  color: #999;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bp-step span {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.bp-step.active .bp-circle,
.bp-step.done .bp-circle {
  background: var(--red);
  color: #fff;
}

.bp-step.active span,
.bp-step.done span {
  color: var(--red);
  font-weight: 600;
}

.bp-line {
  flex: 1;
  height: 2px;
  background: #e8e8e8;
  margin: 0 12px;
  margin-bottom: 24px;
  transition: background 0.3s;
  min-width: 40px;
}

.bp-line.done { background: var(--red); }

/* Adım geçiş animasyonları */
@keyframes stepSlideRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepSlideLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step-enter-right { animation: stepSlideRight 0.22s ease forwards; }
.step-enter-left  { animation: stepSlideLeft  0.22s ease forwards; }

/* Step */
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* Form Basics */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label .req { color: var(--red); }
.form-label .opt { color: #aaa; font-weight: 400; text-transform: none; font-size: 13px; }

.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark-text);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus { border-color: var(--red); background: #fff; }
.form-textarea { resize: vertical; min-height: 80px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: #fafafa;
  text-align: center;
}

.brand-card input { display: none; }

.brand-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo svg,
.brand-logo img {
  height: 36px;
  width: auto;
  max-width: 80px;
  filter: grayscale(100%) opacity(0.35);
  transition: filter 0.2s;
}

.brand-card:hover .brand-logo svg,
.brand-card:hover .brand-logo img { filter: grayscale(40%) opacity(0.6); }

.brand-card:has(input:checked) .brand-logo svg,
.brand-card:has(input:checked) .brand-logo img,
.brand-card.selected .brand-logo svg,
.brand-card.selected .brand-logo img { filter: none; }

.brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.2;
}

.brand-card:has(input:checked),
.brand-card.selected {
  border-color: var(--red);
  background: #fff0f1;
  box-shadow: 0 0 0 3px rgba(227,6,19,0.12);
}

.brand-card:has(input:checked) .brand-name,
.brand-card.selected .brand-name { color: var(--red); }

.brand-card:hover { border-color: var(--red); }

/* Problem Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  background: #fafafa;
  text-align: center;
}

.problem-card input { display: none; }

.problem-card svg { color: #888; transition: color 0.2s; }

.problem-card span {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  transition: color 0.2s;
}

.problem-card:has(input:checked),
.problem-card.selected {
  border-color: var(--red);
  background: #fff0f1;
}

.problem-card:has(input:checked) svg,
.problem-card.selected svg { color: var(--red); }

.problem-card:has(input:checked) span,
.problem-card.selected span { color: var(--red); }

.problem-card:hover { border-color: var(--red); }

/* Auftragsart */
.auftragsart-row {
  display: flex;
  gap: 12px;
}

.auftragsart-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  background: #fafafa;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
}

.auftragsart-card input { display: none; }

.auftragsart-card:has(input:checked),
.auftragsart-card.selected {
  border-color: var(--red);
  background: #fff0f1;
  color: var(--red);
}

.auftragsart-card:hover { border-color: var(--red); }

/* DSGVO */
.dsgvo-group { margin-top: 10px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 2px;
}

.checkbox-label input:checked ~ .checkbox-box {
  background: var(--red);
  border-color: var(--red);
}

.checkbox-label input:checked ~ .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.dsgvo-link { color: var(--red); text-decoration: underline; }

/* Step Nav */
.step-nav { display: flex; margin-top: 28px; gap: 12px; }
.step-nav-right  { justify-content: flex-end; }
.step-nav-between { justify-content: space-between; }

.btn-prev {
  background: #fff !important;
  color: var(--dark-text) !important;
  border: 2px solid var(--border) !important;
}
.btn-prev:hover { border-color: var(--dark-text) !important; }

.btn-submit { min-width: 200px; }

/* Success */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.booking-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.booking-success p {
  color: var(--text);
  margin-bottom: 28px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .nav-logo img { height: 46px; margin-right: 20px; }
  .nav-icon-btn { padding: 11px 16px; font-size: 13px; }
  .nav-cta      { padding: 11px 20px; font-size: 13px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { gap: 40px; }
  .about-img img { width: 280px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-call-btn { display: flex; }

  .hero {
    padding-top: 74px;
    min-height: auto;
  }
  .hero-inner { flex-direction: column; padding: 40px 0 60px; gap: 32px; min-height: auto; }
  .hero-text { margin-left: 0; max-width: 100%; text-align: center; }
  .hero-eyebrow { margin: 0 auto 18px; }
  .hero-btns { justify-content: center; width: 100%; }
  .hero-title { font-size: 34px; }
  .hero-image { max-width: 95%; margin: 0 auto; justify-content: center; }
  
  .desktop-btns { display: none !important; }
  .mobile-btns {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 5;
    margin: 10px auto 0;
    width: 97%;
    max-width: 440px;
  }

  .mobile-btns .btn {
    width: 100%;
    justify-content: center;
    border-radius: 50px !important;
    padding: 17px 20px !important;
    font-size: 16.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px;
    text-shadow: none !important;
  }
  .mobile-btns .btn:active { transform: scale(0.97); }

  .mobile-btns .btn-orange {
    background: linear-gradient(135deg, #ff2233 0%, #cc0010 100%) !important;
    box-shadow: 0 4px 18px rgba(227,6,19,0.45) !important;
    border: none !important;
    color: #fff !important;
  }

  .mobile-btns .btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35) !important;
    border: none !important;
    color: #fff !important;
  }

  .mobile-btns .btn-outline-dark {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(8px);
    box-shadow: none !important;
  }

  .services-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .options-grid   { grid-template-columns: 1fr; }
  .repairs-grid   { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid   { grid-template-columns: 1fr; }

  .about-inner { flex-direction: column; }
  .about-img   { order: -1; }

  .booking-form-wrap { padding: 28px 20px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-img img { width: 100%; max-width: 300px; margin: 0 auto; }

  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .repairs-grid  { grid-template-columns: 1fr; }
  .hero-title    { font-size: 30px; }

  .booking-form-wrap { padding: 20px 14px; border-radius: 12px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-step span { display: none; }
  .bp-line { min-width: 20px; }
}
