/* ==========================================================================
   BARLAN OTO LASTİK - FERAH & AYDINLIK MODERN TASARIM (LIGHT THEME)
   Renk Paleti: Temiz Beyaz, Açık Gri, Koyu Tipografi ve Canlı Amber/Mavi
   ========================================================================== */

:root {
  /* Zemin Renkleri */
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfdfe;
  --bg-card-border: #e2e8f0;
  --bg-card-border-hover: #cbd5e1;
  --bg-dark-accent: #0f172a;

  /* Marka & Vurgu Renkleri */
  --primary: #f59e0b;       /* Güvenlik Amber / Sarı */
  --primary-hover: #d97706;
  --primary-dark: #b45309;
  --primary-light: #fef3c7;
  --primary-subtle: #fffbeb;

  --navy: #1e293b;
  --navy-light: #334155;

  --accent-green: #10b981;
  --accent-green-bg: #ecfdf5;

  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;
  --whatsapp-bg: #f0fdf4;

  /* Metin Renkleri */
  --text-main: #0f172a;     /* Okunaklı Koyu Arduvaz */
  --text-heading: #090d16;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-subtle: #94a3b8;

  /* Tipografi */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Manrope', 'Inter', -apple-system, sans-serif;

  /* Yuvarlaklık & Gölgeler */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.12);
  --shadow-primary: 0 8px 24px -4px rgba(245, 158, 11, 0.4);
  --shadow-wa: 0 8px 24px -4px rgba(37, 211, 102, 0.35);

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 76px; /* Mobil sabit bar için boşluk */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

/* Tipografi Kuralları */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   TOP EMERGENCY BAR (FERAH & AYDINLIK)
   ========================================================================== */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--bg-card-border);
  font-size: 0.84rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 50;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.beacon-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 600;
}

.beacon-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
}

.beacon-dot .ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #ef4444;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

.beacon-dot .solid {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ef4444;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .top-bar-actions {
    display: none;
  }
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.top-phone-link:hover {
  color: var(--text-heading);
}

.top-wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--whatsapp-bg);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #15803d;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.76rem;
  transition: var(--transition);
  white-space: nowrap;
}

.top-wa-pill:hover {
  background: var(--whatsapp);
  color: #ffffff;
}

/* ==========================================================================
   NAVIGATION HEADER (FERAH & AYDINLIK)
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 72px;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-badge {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h2 {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  white-space: nowrap;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

@media (min-width: 1040px) {
  .nav-links {
    display: flex;
  }
}

@media (min-width: 1240px) {
  .nav-links {
    gap: 1rem;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-xs);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

@media (min-width: 1240px) {
  .nav-link {
    font-size: 0.92rem;
    padding: 0.4rem 0.6rem;
  }
}

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

.nav-link.active {
  color: var(--primary-dark);
  font-weight: 800;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.header-cta {
  display: none;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .header-cta {
    display: flex;
  }
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 1240px) {
  .btn-header-call {
    font-size: 0.94rem;
    padding: 0.62rem 1.25rem;
    gap: 0.5rem;
  }
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fbbf24 0%, var(--primary) 100%);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-subtle);
  border: 1px solid var(--bg-card-border);
  border-radius: 10px;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1040px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav-panel {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 2px solid var(--primary);
  padding: 1.25rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 39;
  box-shadow: var(--shadow-lg);
}

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

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ==========================================================================
   HERO SECTION (DÜKKAN RESMİ ARKA PLANDA - TEK RESİM)
   ========================================================================== */
.hero-slider-wrapper {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-card-border);
  background-color: #f8fafc;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/gercek_barlan_dukkan.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Ferah Aydınlık Yarı Saydam Katman (Text okunurluğu için) */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.91) 58%, rgba(255, 255, 255, 0.72) 100%);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-slider-overlay {
    background: rgba(255, 255, 255, 0.95);
  }
}

.hero-slider-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 3.5rem 0 3rem;
}

/* Hero İçi Kart */
.hero-glass-card {
  max-width: 780px;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #047857;
  box-shadow: var(--shadow-sm);
}

.status-dot-green {
  width: 9px;
  height: 9px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.hero-title .highlight-brand {
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.hero-title .highlight-brand::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(245, 158, 11, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-phone-prominent {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.2rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.hero-phone-prominent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-phone-prominent .phone-label {
  font-size: 0.825rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.1em;
  display: block;
}

.hero-phone-prominent .phone-number {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--text-heading);
  display: block;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 580px) {
  .hero-actions {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.btn-primary-urgent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  font-size: 1.12rem;
  font-weight: 900;
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition: var(--transition);
  width: 100%;
  max-width: 320px;
}

.btn-primary-urgent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.55);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-whatsapp-urgent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
  padding: 1.05rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
  width: 100%;
  max-width: 320px;
}

.btn-whatsapp-urgent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ae771 0%, #25d366 100%);
}

/* ==========================================================================
   HERO GÜVEN ROZETLERİ (HERO KARTLARI)
   ========================================================================== */
.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hero-badges-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.hero-badges-grid .trust-card {
  padding: 0.95rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.5);
  background: #ffffff;
}

.trust-icon {
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trust-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  white-space: nowrap;
}

.trust-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 0.2rem;
  white-space: nowrap;
}

/* ==========================================================================
   IMAGE CARD WRAPPERS (FOTOĞRAFLI KARTLAR)
   ========================================================================== */
.card-media-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  background: var(--bg-subtle);
  position: relative;
}

.card-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .card-media-wrap img {
  transform: scale(1.05);
}

.card-badge-float {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   PAGE BANNER & BREADCRUMB
   ========================================================================== */
.page-banner {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-main) 100%);
  border-bottom: 1px solid var(--bg-card-border);
  padding: 3rem 0 3.5rem;
  text-align: center;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  background: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--bg-card-border);
}

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

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTIONS & GENEL YAPI
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.65rem;
  background: var(--primary-light);
  padding: 0.3rem 0.95rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.85rem;
  color: var(--text-heading);
}

/* ==========================================================================
   3 ADIMDA YOL YARDIMI (HOW IT WORKS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 24px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #0f172a;
  font-weight: 900;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

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

/* ==========================================================================
   SERVICES GRID (HİZMETLER)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

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

.service-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.service-features li svg {
  color: #16a34a;
  flex-shrink: 0;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-subtle);
  color: var(--text-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition);
}

.service-card:hover .service-action-btn {
  background: var(--primary);
  color: #0f172a;
  border-color: var(--primary);
}

/* ==========================================================================
   HİZMET BÖLGELERİMİZ (REGIONS)
   ========================================================================== */
.regions-container {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.region-col-title {
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.region-col-title svg {
  color: var(--primary-dark);
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.region-tag {
  background: var(--bg-main);
  border: 1px solid var(--bg-card-border);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.region-tag:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ==========================================================================
   GOOGLE DEĞERLENDİRMELERİ & YORUMLAR (5.0 YILDIZ)
   ========================================================================== */
.reputation-banner {
  background: #ffffff;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .reputation-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.rating-score-huge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.score-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.stars-row {
  color: #f59e0b;
  display: flex;
  gap: 0.25rem;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.review-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.35rem;
  line-height: 1.65;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.reviewer-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--text-heading);
}

.reviewer-sub {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================================================
   SSS (FAQ ACCORDION)
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.35rem;
}

/* ==========================================================================
   İLETİŞİM & HARİTA
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.08rem;
  margin-bottom: 0.25rem;
  color: var(--text-heading);
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ==========================================================================
   FOOTER (FERAH & KURUMSAL)
   ========================================================================== */
.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

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

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 380px;
  color: #94a3b8;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   STICKY BOTTOM EMERGENCY BAR (MOBİLDE ALTI SABİT BAR)
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--primary);
  padding: 0.65rem 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
  .sticky-mobile-bar {
    display: none;
  }
}

.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #0f172a;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.sticky-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
