/* =============================================
   HOOVER & HAİER YETKİLİ SERVİS — ANA STİL
   www.hooveryetkiliservis.com.tr
   ============================================= */

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

/* ---- CSS DEĞİŞKENLER ---- */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #181818;
  --bg-card-hover: #222222;
  --accent:        #e8b84b;
  --accent-hover:  #f0c865;
  --accent-dark:   #c9922a;
  --text-primary:  #f0f0f0;
  --text-muted:    #9ca3af;
  --text-light:    #d1d5db;
  --border:        #2a2a2a;
  --border-light:  #333333;
  --hoover-color:  #3b82f6;
  --hoover-dark:   #2563eb;
  --haier-color:   #10b981;
  --haier-dark:    #059669;
  --green:         #22c55e;
  --red:           #ef4444;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.7);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    all 0.25s ease;
}

/* ---- SIFIRLA ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-wrap img {
  height: 44px;
  width: auto;
}
.logo-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
}
.logo-text strong {
  display: block;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
}

/* NAV */
nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent); background: rgba(232,184,75,0.08); }
.nav-link.active { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after {
  content: ' ▾';
  font-size: 0.7rem;
}
/* Invisible bridge fills the gap so mouse can travel from link → menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 999;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-card-hover); color: var(--accent); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-call-header:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-wp-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-wp-header:hover { background: #1aad54; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav .mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
}
.mobile-nav .btn-call-m { background: var(--accent); color: #000; }
.mobile-nav .btn-wp-m { background: #25d366; color: #fff; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,184,75,0.06) 0%, transparent 60%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  filter: grayscale(1);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.3); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--bg-card); border-color: var(--accent); color: var(--accent); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1aad54; transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}
.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-image-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-image-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.hero-image-badge .badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--accent); }
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- KARTLAR ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-light); transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.card-link:hover { gap: 8px; }

/* Service cards */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-light); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: var(--transition);
}
.service-card:hover .service-card-img { filter: brightness(1); }
.service-card-body { padding: 22px; }
.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tag {
  padding: 4px 10px;
  background: rgba(232,184,75,0.08);
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}

/* Brand cards */
.brand-section {
  padding: 80px 0;
}
.brand-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  margin-bottom: 32px;
  transition: var(--transition);
}
.brand-card:hover { box-shadow: var(--shadow-lg); }
.brand-card-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.brand-badge.hoover { background: rgba(59,130,246,0.12); color: var(--hoover-color); border: 1px solid rgba(59,130,246,0.3); }
.brand-badge.haier  { background: rgba(16,185,129,0.12); color: var(--haier-color); border: 1px solid rgba(16,185,129,0.3); }
.brand-card-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.brand-card-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.brand-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.brand-services-list li {
  padding: 5px 12px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.brand-card-image {
  position: relative;
  overflow: hidden;
}
.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: var(--transition);
}
.brand-card:hover .brand-card-image img { filter: brightness(0.75) saturate(1); }
.brand-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-card) 0%, transparent 40%);
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--accent); transform: translateY(-4px); }
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-primary); }
.breadcrumb-sep { color: var(--border-light); }

/* ---- PAGE HERO (iç sayfalar) ---- */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,184,75,0.05) 0%, transparent 60%);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.page-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.page-hero-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ---- CONTENT SAYFASI ---- */
.content-section { padding: 64px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 36px;
  color: var(--text-primary);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--text-primary);
}
.content-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.content-body ul {
  list-style: none;
  margin-bottom: 20px;
}
.content-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.content-body ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.sidebar-card .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.sidebar-card .contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,184,75,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-info span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.contact-item-info strong {
  font-size: 0.875rem;
  color: var(--text-primary);
}
.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-links a:hover { color: var(--accent); }
.sidebar-links a::before { content: '→'; }
.sidebar-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.sidebar-btn.call { background: var(--accent); color: #000; }
.sidebar-btn.call:hover { background: var(--accent-hover); }
.sidebar-btn.wp { background: #25d366; color: #fff; }
.sidebar-btn.wp:hover { background: #1aad54; }

/* ---- SSS / FAQ ---- */
.faq-section { padding: 80px 0; background: var(--bg-secondary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
  font-family: inherit;
}
.faq-question .faq-arrow {
  width: 24px;
  height: 24px;
  background: rgba(232,184,75,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--accent); color: #000; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- İLETİŞİM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}
.contact-detail a:hover { color: var(--accent); }

.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.contact-cta-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.cta-call-big { background: var(--accent); color: #000; }
.cta-call-big:hover { background: var(--accent-hover); transform: translateY(-2px); }
.cta-wp-big { background: #25d366; color: #fff; }
.cta-wp-big:hover { background: #1aad54; transform: translateY(-2px); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 400px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  display: block;
}

/* ---- DISTRICT BADGES ---- */
.district-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.district-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.district-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.district-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.district-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.district-card p { font-size: 0.8rem; color: var(--text-muted); }
.district-card a { color: inherit; }

/* ---- CTA BÖLÜMÜ ---- */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #111111 0%, #1a1207 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,184,75,0.08) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-section h2 span { color: var(--accent); }
.cta-section p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--accent); }

/* ---- FLOATING BUTONLAR ---- */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn .float-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-call { background: var(--accent); color: #000; }
.float-call:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(232,184,75,0.4); }
.float-wp { background: #25d366; color: #fff; }
.float-wp:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 2px solid currentColor;
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}
.float-wp { position: relative; }
.float-wp::before { opacity: 1; color: #25d366; }

/* ---- HOOVER & HAİER RENK VURGULARI ---- */
.brand-hoover .card::before { background: linear-gradient(90deg, var(--hoover-color), transparent); }
.brand-hoover .section-tag { background: rgba(59,130,246,0.1); color: var(--hoover-color); border-color: rgba(59,130,246,0.25); }
.brand-hoover .hero h1 span { color: var(--hoover-color); }
.brand-hoover .card-icon { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.brand-hoover .float-call { background: var(--hoover-color); color: #fff; }
.brand-hoover .btn-primary { background: var(--hoover-color); color: #fff; }
.brand-hoover .accent-line { border-color: var(--hoover-color); }
.brand-hoover .tag { background: rgba(59,130,246,0.08); color: var(--hoover-color); border-color: rgba(59,130,246,0.2); }

.brand-haier .card::before { background: linear-gradient(90deg, var(--haier-color), transparent); }
.brand-haier .section-tag { background: rgba(16,185,129,0.1); color: var(--haier-color); border-color: rgba(16,185,129,0.25); }
.brand-haier .hero h1 span { color: var(--haier-color); }
.brand-haier .card-icon { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); }
.brand-haier .float-call { background: var(--haier-color); color: #fff; }
.brand-haier .btn-primary { background: var(--haier-color); color: #fff; }
.brand-haier .tag { background: rgba(16,185,129,0.08); color: var(--haier-color); border-color: rgba(16,185,129,0.2); }

/* ---- HAKKIMIZDA ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-image img { width: 100%; height: 420px; object-fit: cover; }
.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.about-content h2 span { color: var(--accent); }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.about-stat span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- UTILITY ---- */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.highlight-box {
  background: rgba(232,184,75,0.06);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: var(--text-light); margin: 0; }

/* ---- RESPONSİVE ---- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .brand-card { grid-template-columns: 1fr; }
  .brand-card-image { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding-top: 70px; }
  .hero-inner { padding: 50px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .float-btn .float-label { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .floating-btns { bottom: 20px; right: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .district-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
