/* ZorGel 7/24 Mobil Lastikci Master CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-red: #DC2626;
  --primary-red-hover: #B91C1C;
  --emergency-amber: #F59E0B;
  --emergency-amber-hover: #D97706;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1EBE57;
  --dark-bg: #0F172A;
  --dark-surface: #1E293B;
  --dark-border: #334155;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-emergency: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
  --shadow-wa: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #F8FAFC;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid var(--emergency-amber);
  outline-offset: 2px;
}

/* Header & Glassmorphism Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #FFFFFF;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-red), var(--emergency-amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--emergency-amber);
  font-weight: 600;
  display: block;
}

/* Navigation Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-call {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-emergency);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(220, 38, 38, 0.5);
}

.btn-wa {
  background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-green-hover));
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-wa);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(37, 211, 102, 0.5);
}

/* Hero Emergency Section & Visual Slider */
.hero-section {
  background: radial-gradient(circle at top right, #1E293B, #0F172A);
  color: #FFFFFF;
  padding: 4rem 1.25rem 5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-actions .btn-wa {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--emergency-amber);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 650px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.hero-trust-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--dark-border);
  padding-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #CBD5E1;
}

/* Quick Emergency Form Card */
.hero-card {
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.hero-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.hero-card-subtitle {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  margin-bottom: 0.35rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #0F172A;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--emergency-amber);
  outline: none;
}

.btn-submit-emergency {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-emergency);
  transition: transform 0.2s;
}

.btn-submit-emergency:hover {
  transform: translateY(-2px);
}

/* Service Cards Section */
.section-padding {
  padding: 5rem 1.25rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--primary-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
}

.service-icon {
  width: 99px;
  height: 99px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Visual Ad / Promo Template Cards (Görsel İlan Şablon Kartları) */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.promo-card {
  background: linear-gradient(145deg, #1E293B, #0F172A);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(220, 38, 38, 0.25);
  border-color: var(--primary-red);
}

.promo-image-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.promo-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-image-box img {
  transform: scale(1.08);
}

.promo-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--primary-red), var(--emergency-amber));
  color: #FFF;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.promo-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.promo-card-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.promo-card-desc {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* How It Works Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--dark-bg);
  color: var(--emergency-amber);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

/* SEF District Service Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.area-chip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.area-chip:hover {
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.15);
  background: #FFF;
}

.area-name {
  font-weight: 800;
  color: var(--text-main);
  font-size: 1.05rem;
}

.area-chip:hover .area-name {
  color: var(--primary-red);
}

.area-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  font-weight: 600;
}

/* FAQs Accordion */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Sticky Bottom Mobile Conversion Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--dark-border);
  padding: 0.75rem 1rem;
  display: none;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }
}

.mobile-sticky-bar .btn-call,
.mobile-sticky-bar .btn-wa {
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem;
}

/* Location Share Helper Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.h-9 {
  height: 4rem !important;
}