/* ==========================================================================
   MENDERES ELEKTRİK - Modern, Responsive & High-Performance Design System
   7/24 Acil Elektrikçi & Menderes Esnafı
   Telefon: 0551 555 97 00
   ========================================================================== */

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

:root {
  /* Color Palette - Electric & Dark Premium */
  --bg-dark: #090d16;
  --bg-card: #111827;
  --bg-card-hover: #172033;
  --bg-card-light: #1e293b;
  --bg-surface: #0f172a;
  
  --primary: #f59e0b;
  --primary-glow: rgba(245, 158, 11, 0.4);
  --primary-light: #fbbf24;
  --primary-dark: #d97706;

  --secondary: #0284c7;
  --secondary-light: #38bdf8;
  --secondary-glow: rgba(56, 189, 248, 0.35);

  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.35);
  --accent-red: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-electric: rgba(245, 158, 11, 0.3);

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

  /* Shadows & Glass */
  --glass-bg: rgba(17, 24, 39, 0.75);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.5);
  --shadow-electric: 0 0 25px rgba(245, 158, 11, 0.25);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(245, 158, 11, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(56, 189, 248, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  padding-bottom: 72px; /* Space for mobile bottom bar */
}

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

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

img, svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Top Emergency Bar */
.top-bar {
  background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 50%, #1e1b4b 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 0.875rem;
  padding: 7px 0;
  color: var(--text-muted);
}

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

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fef08a;
  font-weight: 700;
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.35);
}

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

@keyframes pulse {
  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 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-weight: 600;
}
.top-link:hover {
  color: var(--primary-light);
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 28px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ==========================================================================
   DROPDOWN MENU - HİZMETLERİMİZ
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.8;
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

/* Invisible bridge for seamless hover experience */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 590px;
  background: rgba(13, 19, 32, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.1);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}

.dropdown-item:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dropdown-item-text {
  display: flex;
  flex-direction: column;
}

.dropdown-item-text strong {
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.3;
}

.dropdown-item:hover .dropdown-item-text strong {
  color: var(--primary-light);
}

.dropdown-item-text small {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.dropdown-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.dropdown-footer a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown-footer a:hover {
  color: #ffffff;
}

/* Mobile Drawer Submenu Accordion */
.drawer-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 10px 0;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-dropdown-btn.active .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.drawer-submenu.open {
  max-height: 520px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.drawer-sublink {
  font-size: 0.88rem;
  color: #cbd5e1;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
}

.drawer-sublink:hover {
  color: var(--primary-light);
  background: rgba(245, 158, 11, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header-call {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #090d16;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .btn-header-call {
    display: inline-flex;
  }
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #000000;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  padding: 10px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: #0f172a;
  z-index: 2000;
  padding: 30px 24px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.8);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}
.drawer-link:hover, .drawer-link.active {
  color: var(--primary-light);
  transform: translateX(3px);
}

/* Drawer Contact Card */
.drawer-contact-card {
  margin-top: 24px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.drawer-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-light);
  background: rgba(245, 158, 11, 0.1);
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.drawer-contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.drawer-contact-phone svg {
  color: var(--primary);
}

.drawer-contact-phone:hover {
  color: var(--primary-light);
}

.drawer-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.drawer-action-btn:active {
  transform: scale(0.97);
}

.drawer-btn-call {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #090d16;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.drawer-btn-call:hover {
  filter: brightness(1.08);
}

.drawer-btn-wa {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.drawer-btn-wa:hover {
  filter: brightness(1.08);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 55px 0 70px;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(245, 158, 11, 0.14) 0%, rgba(9, 13, 22, 0) 70%),
              linear-gradient(180deg, #090d16 0%, #0f172a 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0b0f19;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.55);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.25);
  transition: var(--transition);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: #34d399;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
  color: #ffffff;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

.hero-feat-item svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

/* Hero Right Card / Quick Action Box */
.hero-card {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 158, 11, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-status {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.quick-call-box {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  margin-bottom: 18px;
}

.quick-call-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.quick-call-number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-light);
  letter-spacing: 0.5px;
  display: block;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.hero-card-list li svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

/* Service Region Quick Search in Hero / Section */
.region-search-bar {
  position: relative;
  margin-top: 10px;
}

.region-search-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 14px 18px 14px 44px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.region-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Emergency Banner Ticker */
.emergency-strip {
  background: linear-gradient(90deg, #b45309 0%, #d97706 50%, #b45309 100%);
  color: #ffffff;
  padding: 14px 0;
  box-shadow: var(--shadow-md);
}

.emergency-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.emergency-text {
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.emergency-btn {
  background: #090d16;
  color: #fbbf24;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: var(--transition);
}

.emergency-btn:hover {
  background: #ffffff;
  color: #090d16;
}

/* Section Common Styling */
.section {
  padding: 75px 0;
  position: relative;
}

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

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

.section-badge {
  display: inline-block;
  color: var(--primary-light);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@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: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-electric);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), var(--shadow-electric);
  background: var(--bg-card-hover);
}

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

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

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

.service-features-list {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li svg {
  color: var(--accent-green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--primary-light);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.service-action-btn:hover {
  background: var(--primary);
  color: #090d16;
  border-color: var(--primary);
}

/* Why Choose Us & Esnaf Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

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

.trust-card-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .trust-card-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
}

.trust-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-3px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.trust-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Neighborhoods / Hizmet Bölgeleri Grid */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

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

.neighborhood-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.neighborhood-card:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

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

.neighborhood-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

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

.neighborhood-card svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.neighborhood-card:hover svg {
  opacity: 1;
  transform: translateX(3px);
}

/* Process Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-electric);
  transform: translateY(-4px);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #090d16;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* FAQ Accordion */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--bg-card-hover);
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
  color: var(--primary-light);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 20px;
}

/* Testimonials / Google Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #fbbf24;
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-text {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-light);
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.reviewer-loc {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 25px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

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

.contact-info-item a:hover {
  color: var(--primary-light);
}

.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
}

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

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

.form-control {
  width: 100%;
  background: #090d16;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.25);
}

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

.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #090d16;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Footer */
.site-footer {
  background: #06090f;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  margin-bottom: 45px;
}

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

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Floating Sticky Mobile Bottom Action Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  z-index: 1500;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
}

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

@media (max-width: 991px) {
  body {
    padding-bottom: 74px;
  }
}

.mobile-bottom-wrapper {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.mobile-bottom-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  min-height: 48px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.mobile-bottom-btn:active {
  transform: scale(0.97);
}

.mobile-bottom-btn.btn-call {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #090d16;
  box-shadow: 0 3px 12px rgba(245, 158, 11, 0.35);
}

.mobile-bottom-btn.btn-call:hover {
  filter: brightness(1.08);
}

.mobile-bottom-btn.btn-wa {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.3);
}

.mobile-bottom-btn.btn-wa:hover {
  filter: brightness(1.08);
}

.mobile-bottom-btn .btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.mobile-bottom-btn .title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.mobile-bottom-btn .subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumb-wrap {
  padding: 18px 0;
  background: rgba(15, 23, 42, 0.6);
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-item a {
  color: var(--text-muted);
}
.breadcrumb-item a:hover {
  color: var(--primary-light);
}

.breadcrumb-item.active {
  color: var(--primary-light);
  font-weight: 600;
}

.breadcrumb-sep {
  color: var(--text-dim);
}

/* SEO Content & Article Section */
.seo-content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  margin-top: 30px;
  line-height: 1.75;
}

.seo-content-box h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 24px 0 12px;
}

.seo-content-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-light);
  margin: 18px 0 10px;
}

.seo-content-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.seo-content-box ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
  color: #cbd5e1;
}

.seo-content-box ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* ==========================================================================
   SEO NEIGHBORHOOD TAGS & KEYWORD CLOUD
   ========================================================================== */
.seo-tags-section {
  padding: 40px 0 50px;
  background: rgba(11, 15, 25, 0.9);
  border-top: 1px solid var(--border-color);
}

.seo-tags-card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.seo-tags-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.seo-tags-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.seo-tags-title svg {
  color: var(--primary);
}

.seo-tags-badge {
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.seo-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-tag-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.seo-tag-link:hover {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--primary);
  color: #fef08a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.seo-tag-link svg {
  color: var(--primary-light);
  width: 14px;
  height: 14px;
}

/* Service Detail Quick Spec Box */
.service-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 35px 0;
}

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

.spec-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  transition: var(--transition);
}

.spec-box:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.spec-box-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.spec-box h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.spec-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

