/* ==========================================================================
   ELEKTRİK SERVİSİ - MODERN & HIGH-CONVERSION DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-dark: #070a12;
  --bg-primary: #0b1120;
  --bg-secondary: #0f172a;
  --bg-card: rgba(17, 24, 39, 0.85);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --electric-amber: #f59e0b;
  --electric-yellow: #fbbf24;
  --electric-light: #fef3c7;
  --electric-glow: rgba(245, 158, 11, 0.25);

  --brand-cyan: #0284c7;
  --brand-cyan-light: #38bdf8;
  --brand-blue: #2563eb;

  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.3);
  --whatsapp-green: #25d366;

  --emergency-red: #ef4444;
  --emergency-glow: rgba(239, 68, 68, 0.3);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(245, 158, 11, 0.4);
  --border-accent: rgba(56, 189, 248, 0.3);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 35px -5px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--electric-glow);
  --shadow-glow-green: 0 0 25px var(--accent-green-glow);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* Background Ambient Lighting */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

body::after {
  content: '';
  position: fixed;
  bottom: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Badges & Text Utilities */
.badge-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-electric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--electric-yellow);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--accent-green);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 1.8s infinite;
}

.pulse-dot.red {
  background-color: var(--emergency-red);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseRed 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   TOP EMERGENCY TICKER BAR
   ========================================================================== */
.top-ticker-bar {
  background: #060911;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 7px 0;
  font-size: 0.82rem;
  position: relative;
  z-index: 100;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ticker-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  white-space: nowrap;
}

.ticker-highlight {
  color: var(--electric-yellow);
  font-weight: 700;
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.ticker-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  transition: var(--transition-fast);
}

.ticker-phone-link:hover {
  background: var(--electric-amber);
  color: #000;
}

.ticker-phone-link svg {
  color: var(--electric-amber);
}

.ticker-phone-link:hover svg {
  color: #000;
}

.ticker-area-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: #cbd5e1;
}

.ticker-hours-badge {
  font-size: 0.78rem;
  color: #64748b;
}

/* ==========================================================================
   HEADER & NAVIGATION (DERLİ TOPLU & MODERN DÜZEN)
   ========================================================================== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #080d1a;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
}

.header-main.scrolled {
  background: #050811;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(245, 158, 11, 0.4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

/* Brand / Logo */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

/* Menu links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: var(--electric-yellow);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.4);
}

/* Nav Actions (Buttons) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-nav-wa span {
  display: none;
}

.btn-nav-wa svg {
  width: 22px;
  height: 22px;
}

.btn-nav-wa:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all 0.25s ease;
  animation: subtlePulse 2.5s infinite;
  flex-shrink: 0;
}

.btn-nav-phone span {
  display: none;
}

.btn-nav-phone svg {
  width: 20px;
  height: 20px;
}

.btn-nav-phone:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
  color: #000;
}

/* Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-electric {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #070a12;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-electric:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
  color: #000;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2beb75 0%, #159c8d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-pulse {
  animation: subtlePulse 2.5s infinite;
}

@keyframes subtlePulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(30, 41, 59, 0.7) 0%, rgba(7, 10, 18, 0.95) 100%), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.7) 0%, rgba(7, 10, 18, 0.92) 80%, var(--bg-dark) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 660px;
}

.hero-badges-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-title .highlight-yellow {
  background: linear-gradient(120deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-yellow);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.3;
}

/* Hero Quick Wizard Card (Right Column) */
.hero-wizard-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
}

.hero-wizard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--electric-amber), transparent);
}

.wizard-header {
  margin-bottom: 24px;
  text-align: center;
}

.wizard-title {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
}

.wizard-subtitle {
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.custom-select, .custom-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
}

.custom-select:focus, .custom-input:focus {
  border-color: var(--electric-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.custom-select option {
  background: #0f172a;
  color: #fff;
}

/* ==========================================================================
   WIZARD STATUS CARD (DERLİ TOPLU & OKUNABİLİR CANLI BİLGİ KUTUSU)
   ========================================================================== */
.wizard-status-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.status-card-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.status-badge-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-badge-text {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #34d399;
}

.status-eta-tag {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--electric-yellow);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.status-card-body {
  display: block;
}

.status-card-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0;
}

.status-card-text strong {
  color: #fff;
  font-weight: 700;
}

.wizard-btn-submit {
  width: 100%;
}

/* ==========================================================================
   SAFETY WARNING ALERT SECTION
   ========================================================================== */
.section-safety-alert {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.alert-card-emergency {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

.alert-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.alert-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emergency-red);
  flex-shrink: 0;
}

.alert-heading {
  font-size: 1.1rem;
  color: #fecaca;
  margin-bottom: 4px;
}

.alert-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

.alert-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.alert-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-padding {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-subtitle {
  color: var(--electric-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #fff;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES (NELER YAPIYORUZ) SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--electric-amber), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-yellow);
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
  background: var(--electric-amber);
  color: #000;
  transform: scale(1.08);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.service-feature-item svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--electric-yellow);
}

.service-card:hover .service-btn svg {
  transform: translateX(4px);
  transition: var(--transition-fast);
}

/* ==========================================================================
   ABOUT & WHY US (HAKKIMIZDA) SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.about-media-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 16px;
}

.floating-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--electric-yellow);
  line-height: 1;
}

.floating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-feature-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.about-feature-box h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-feature-box h4 svg {
  color: var(--electric-amber);
}

.about-feature-box p {
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   COVERAGE AREA & RADAR (HİZMET BÖLGELERİMİZ)
   ========================================================================== */
.coverage-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.coverage-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.coverage-notice-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #fef08a;
  font-weight: 600;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.district-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.district-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-3px);
}

.district-info {
  display: flex;
  flex-direction: column;
}

.district-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.district-eta {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.district-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* ==========================================================================
   PROCESS (NASIL ÇALIŞIYORUZ) SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-amber), var(--brand-cyan));
  z-index: 0;
  opacity: 0.3;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.process-step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--electric-amber);
  color: var(--electric-yellow);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.process-card-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
}

.process-card-desc {
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ==========================================================================
   GALLERY (YAPTIĞIMIZ ÇALIŞMALAR) SECTION
   ========================================================================== */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--electric-amber);
  border-color: var(--electric-amber);
  color: #000;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 10, 18, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--electric-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gallery-title {
  font-size: 1.15rem;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

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

.lightbox-content {
  max-width: 900px;
  max-height: 80vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ==========================================================================
   STATISTICS COUNTERS SECTION
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(7, 10, 18, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.15);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--electric-yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number-suffix {
  font-size: 2.2rem;
  color: var(--electric-amber);
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* ==========================================================================
   TESTIMONIALS (MÜŞTERİ YORUMLARI) SECTION
   ========================================================================== */
.reviews-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.review-card,
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.review-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--electric-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 158, 11, 0.12);
}

.review-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars,
.testimonial-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.review-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.review-badge-verified svg {
  width: 12px;
  height: 12px;
}

.review-quote,
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
  position: relative;
}

.review-author,
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.review-avatar,
.author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  border-radius: 50%;
  border: 2px solid var(--electric-amber);
  object-fit: cover;
  background: rgba(245, 158, 11, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block;
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-district,
.author-location {
  font-size: 0.82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.author-location span,
.author-district span {
  color: var(--electric-yellow);
  font-weight: 600;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.review-date {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 3px;
}

/* Rating Summary Box */
.rating-summary-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.rating-summary-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-amber), var(--electric-yellow), var(--accent-green));
}

.rating-score-main {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--electric-yellow);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.rating-stars-badge {
  color: #fbbf24;
  font-size: 2rem;
  letter-spacing: 2px;
}

.rating-metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.rating-metric-item strong {
  color: var(--electric-yellow);
  font-size: 1.05rem;
}

@media (max-width: 1024px) {
  .reviews-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .reviews-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rating-summary-box {
    padding: 26px 18px;
  }
  .rating-score-main {
    font-size: 2.6rem;
  }
  .rating-stars-badge {
    font-size: 1.6rem;
  }
  .rating-metrics-row {
    gap: 14px;
    flex-direction: column;
  }
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brands-section {
  padding: 50px 0;
  background: rgba(11, 17, 32, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.brands-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 30px;
}

/* Brands row styles are defined in BRANDS SECTION at the end of this file */

/* ==========================================================================
   FAQ (SIKÇA SORULAN SORULAR) SECTION
   ========================================================================== */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition-fast);
}

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

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-yellow);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--electric-amber);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 26px;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-info-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-yellow);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.contact-detail-val a:hover {
  color: var(--electric-yellow);
}

.hours-table {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-secondary);
}

.hours-time {
  color: #fff;
  font-weight: 600;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 440px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-main {
  background: #04070e;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #94a3b8;
  margin: 16px 0 22px;
  max-width: 360px;
}

.footer-col-title {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--electric-amber);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--electric-yellow);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--electric-yellow);
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING EMERGENCY ACTION BAR (MOBILE & DESKTOP QUICK ACCESS)
   ========================================================================== */
.floating-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
}

.floating-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.floating-btn-call {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.floating-btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Scroll To Top Button */
.btn-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-subtle);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.btn-scroll-top:hover {
  background: var(--electric-amber);
  color: #000;
  transform: translateY(-3px);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1180px) {
  .nav-menu {
    gap: 2px;
  }
  .nav-link {
    font-size: 0.86rem;
    padding: 6px 9px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .navbar {
    height: 66px;
    gap: 10px;
  }
  .nav-brand {
    flex-shrink: 1;
    min-width: 0;
  }
  .nav-logo {
    height: 36px;
    max-width: 150px;
    width: auto;
  }
  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    background: #080d1a;
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    gap: 12px;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    z-index: 998;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

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

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  /* Mobile: preserve original mobile pill buttons */
  .btn-nav-wa {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .btn-nav-wa span {
    display: none;
  }

  .btn-nav-phone {
    width: auto !important;
    height: 38px;
    padding: 0 12px;
    gap: 6px;
    border-radius: var(--radius-full) !important;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .btn-nav-phone span {
    display: inline;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar {
    height: 62px;
    gap: 8px;
  }

  .nav-logo {
    height: 32px;
    max-width: 130px;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-nav-wa {
    width: 36px;
    height: 36px;
  }

  .btn-nav-phone {
    width: auto !important;
    height: 36px;
    padding: 0 10px;
    gap: 5px;
    border-radius: var(--radius-full) !important;
  }

  .btn-nav-phone span {
    font-size: 0.76rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .btn {
    max-width: 100%;
  }

  .about-grid,
  .about-media-wrapper,
  .about-content {
    min-width: 0;
    max-width: 100%;
  }

  .about-image {
    height: auto;
    max-height: 420px;
  }

  .service-card {
    min-width: 0;
    padding: 22px 16px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero-content,
  .hero-wizard-card {
    min-width: 0;
    max-width: 100%;
  }

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

  .hero-trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    min-width: 0;
  }

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

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

  .process-grid::before {
    display: none;
  }

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

  .coverage-box {
    padding: 24px 14px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .district-card {
    min-width: 0;
    padding: 14px 16px;
  }

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

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .contact-info-card,
  .contact-info-panel,
  .contact-form-card {
    min-width: 0;
    max-width: 100%;
    padding: 24px 16px !important;
  }

  .contact-detail-row {
    min-width: 0;
  }

  .contact-detail-val {
    word-break: break-word;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .floating-mobile-bar {
    display: block;
  }

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

  .alert-card-emergency {
    flex-direction: column;
    text-align: center;
  }

  .alert-left {
    flex-direction: column;
  }

  .alert-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .alert-action-btn {
    width: 100%;
  }

  .about-badge-floating {
    position: static;
    margin-top: 16px;
  }

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

  .about-mission-vision,
  .about-content > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
    min-width: 0;
  }

  .stat-number-wrap {
    font-size: 2.2rem;
  }

  .stat-number-suffix {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.82rem;
  }

  .comparison-section,
  section[style*="padding: 40px"] {
    padding: 24px 14px !important;
  }

  table {
    min-width: 460px;
  }

  .table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .blog-detail-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .article-main,
  .article-sidebar {
    min-width: 0;
    max-width: 100%;
  }

  .article-main {
    padding: 24px 16px;
  }

  .sidebar-widget {
    padding: 20px 16px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    gap: 6px;
  }

  .nav-logo {
    height: 30px;
    max-width: 120px;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-nav-wa {
    width: 34px;
    height: 34px;
  }

  .btn-nav-phone {
    height: 34px;
    padding: 0 9px;
    gap: 5px;
  }

  .btn-nav-phone svg {
    width: 14px;
    height: 14px;
  }

  .btn-nav-phone span {
    font-size: 0.74rem;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

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

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .contact-form-card div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 350px) {
  .nav-logo {
    max-width: 105px;
    height: 28px;
  }

  .btn-nav-phone {
    padding: 0 6px;
  }

  .btn-nav-phone span {
    font-size: 0.7rem;
  }

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

  .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .about-feature-box {
    padding: 12px 10px;
    min-width: 0;
  }

  .service-card {
    padding: 18px 12px;
    min-width: 0;
  }
}

/* ==========================================================================
   SUBPAGE & BLOG SYSTEM STYLES (ÇOK SAYFALI YAPI & BLOG)
   ========================================================================== */

/* Subpage Header Banner */
.page-header-banner {
  background: radial-gradient(circle at 50% 20%, rgba(30, 41, 59, 0.8) 0%, rgba(7, 10, 18, 0.98) 100%), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0 50px;
  position: relative;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.75) 0%, rgba(7, 10, 18, 0.95) 100%);
  z-index: 0;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb-nav a {
  color: #94a3b8;
  transition: var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--electric-yellow);
}

.breadcrumb-sep {
  color: #64748b;
}

.breadcrumb-current {
  color: var(--electric-yellow);
  font-weight: 700;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.page-banner-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Blog Toolbar & Search */
.blog-toolbar {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.blog-search-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: #fff;
  padding: 14px 24px 14px 50px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-search-input:focus {
  border-color: var(--electric-amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.blog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.blog-categories-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-category-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-category-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.blog-category-btn.active {
  background: var(--electric-amber);
  border-color: var(--electric-amber);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.blog-category-count {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.blog-stats-bar {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Blog Grid & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--electric-yellow);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--electric-yellow);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-read-more-btn {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--electric-yellow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card:hover .blog-read-more-btn svg {
  transform: translateX(4px);
  transition: transform 0.2s ease;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.page-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.page-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-btn.active {
  background: var(--electric-amber);
  border-color: var(--electric-amber);
  color: #000;
}

/* Blog Detail Page */
.blog-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 60px 0;
}

.article-main {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.article-header {
  margin-bottom: 30px;
}

.article-featured-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  border: 1px solid var(--border-subtle);
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.article-content h2 {
  font-size: 1.65rem;
  color: #fff;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.article-content h3 {
  font-size: 1.3rem;
  color: var(--electric-yellow);
  margin: 28px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

.article-content ul, .article-content ol {
  margin: 16px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-content ul li {
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.alert-box-warning {
  background: rgba(239, 68, 68, 0.12);
  border-left: 4px solid var(--emergency-red);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  color: #fecaca;
  font-size: 0.95rem;
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-widget-title {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-service-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  text-align: center;
  padding: 28px 22px;
}

.sidebar-service-cta h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}

.sidebar-service-cta p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Service Detail Block (hizmetler.html) */
.service-deep-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-deep-item:nth-child(even) {
  direction: rtl;
}

.service-deep-item:nth-child(even) > * {
  direction: ltr;
}

.service-deep-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-detail-wrapper {
    grid-template-columns: 1fr;
  }
  .service-deep-item, .service-deep-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-main {
    padding: 24px 18px;
  }
  .page-banner-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   BRANDS SECTION (MARKALAR VE KALİTE GÜVENCESİ)
   ========================================================================== */
.brands-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(7, 10, 18, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-yellow), transparent);
}

.brands-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.brands-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.brands-grid,
.brands-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}

.brand-item {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 98px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.25);
  border-color: var(--electric-yellow);
  background: rgba(245, 158, 11, 0.08);
}

.brand-item img {
  max-width: 130px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-item:hover img {
  transform: scale(1.08);
}

.brand-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.brand-item:hover .brand-item-label {
  color: var(--electric-yellow);
}

.brand-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.brand-badge-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-badge-pill strong {
  color: var(--electric-yellow);
}

@media (max-width: 992px) {
  .brands-grid,
  .brands-row {
    gap: 10px;
  }
  .brand-item {
    padding: 10px 8px;
    height: 84px;
  }
  .brand-item img {
    max-width: 100px;
    max-height: 36px;
  }
}

@media (max-width: 640px) {
  .brands-section {
    padding: 30px 14px;
  }
  .brands-title {
    font-size: 1.35rem;
  }
  .brands-grid,
  .brands-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .brand-item {
    flex: 0 0 140px;
    width: 140px;
    height: 76px;
    padding: 8px 12px;
  }
  .brand-item img {
    max-width: 100px;
    max-height: 32px;
  }
}
