/* Batman Tır Yol Yardım - Main Stylesheet */
:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-glass: rgba(22, 22, 22, 0.75);
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent: #f5a623;
  --accent-hover: #ffb940;
  --orange: #e67e22;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Barlow', 'Segoe UI', sans-serif;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --header-h: 80px;
  --banner-h: 44px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: 0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-muted); }
ul { list-style: none; }
svg { width: 1.25em; height: 1.25em; flex-shrink: 0; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 800px; }
.text-accent { color: var(--accent); }

/* Loader */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(90deg, var(--orange), var(--accent));
  color: var(--bg);
  font-size: 0.875rem;
  position: relative; z-index: 1001;
}
.emergency-banner__inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.6rem 1.25rem; flex-wrap: wrap; text-align: center;
}
.emergency-banner__icon svg { width: 1.25rem; height: 1.25rem; }
.emergency-banner .btn--primary { background: var(--bg); color: var(--accent); font-size: 0.8rem; padding: 0.35rem 1rem; }
.emergency-banner .btn--primary:hover { background: #1a1a1a; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; color: var(--white); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; min-width: 0; }
.logo:hover { color: var(--white); }
.logo__icon { flex-shrink: 0; }
.logo__icon svg { width: 2rem; height: 2rem; color: var(--accent); }
.logo__text { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 0.35rem; line-height: 1.15; }
.logo__accent { color: var(--accent); white-space: nowrap; }
.logo--footer .logo__text { font-size: 0.95rem; max-width: 100%; }

.nav__list { display: flex; align-items: center; gap: 0.25rem; }
.nav__list a {
  color: var(--text-muted); padding: 0.5rem 0.85rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; transition: all var(--transition);
}
.nav__list a:hover, .nav__list a.active { color: var(--accent); background: rgba(245, 166, 35, 0.08); }
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 0.25rem; }
.nav__dropdown-toggle svg { width: 0.85rem; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.5rem;
  min-width: 240px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
  box-shadow: var(--shadow); max-height: 400px; overflow-y: auto;
}
.nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu a { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }
.btn--header span { display: none; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.5rem;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9rem; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  font-family: var(--font);
}
.btn--primary { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3); }
.btn--whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--whatsapp:hover { background: #20bd5a; color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--border); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn--block { width: 100%; margin-bottom: 0.5rem; }

/* Hero */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; }
.hero__animated-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.9) 100%),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=85&auto=format&fit=crop') center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,166,35,0.08) 0%, transparent 60%);
}
.hero__content { position: relative; z-index: 2; padding: 4rem 0; max-width: 750px; }
.hero__badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: rgba(245, 166, 35, 0.15); border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 50px; color: var(--accent); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.5rem; animation: fadeInUp 0.6s ease;
}
.hero h1 { margin-bottom: 1rem; animation: fadeInUp 0.6s ease 0.1s both; }
.hero__subtitle { font-size: 1.15rem; margin-bottom: 2rem; animation: fadeInUp 0.6s ease 0.2s both; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; animation: fadeInUp 0.6s ease 0.3s both; }
.hero__features { display: flex; flex-wrap: wrap; gap: 1.5rem; animation: fadeInUp 0.6s ease 0.4s both; }
.hero__features span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--text-muted); }
.hero__features svg { color: var(--accent); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Sections */
.section { padding: 5rem 0; }
.section--dark { background: var(--bg-secondary); }
.section__header { text-align: center; max-width: 650px; margin: 0 auto 3rem; }
.section__label { display: inline-block; color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.section__title { margin-bottom: 0.75rem; }
.section__desc { font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: 2.5rem; }

/* Glass */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.services-grid--4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--transition); color: var(--text);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); color: var(--text); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--accent);
}
.service-card__icon svg { width: 1.75rem; height: 1.75rem; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--white); }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-card__link { display: flex; align-items: center; gap: 0.35rem; margin-top: 1rem; color: var(--accent); font-weight: 600; font-size: 0.85rem; }
.service-card__link svg { width: 1rem; transition: transform var(--transition); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Why Grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card { padding: 2rem; text-align: center; transition: transform var(--transition); }
.why-card:hover { transform: translateY(-4px); }
.why-card__icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: rgba(245,166,35,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.why-card__icon svg { width: 2rem; height: 2rem; }
.why-card h3 { margin-bottom: 0.5rem; }

/* Stats */
.stats-section { background: linear-gradient(135deg, var(--bg-secondary), var(--bg)); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-card__number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--accent); }
.stat-card__suffix { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.stat-card p { margin-top: 0.25rem; font-weight: 500; }

/* Brands */
.brands-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.brand-tag {
  padding: 0.75rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; font-weight: 600; font-size: 0.9rem; color: var(--text-muted);
  transition: all var(--transition);
}
.brand-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Faults */
.faults-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0.75rem; }
.faults-list li { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); font-size: 0.9rem; }
.faults-list svg { color: var(--accent); }

/* Reviews & Testimonials */
.reviews-grid, .testimonials-track { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card, .testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.review-card__stars, .testimonial-card__stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-card__author, .testimonial-card__author { margin-top: 1rem; display: flex; flex-direction: column; }
.review-card__author span, .testimonial-card__author span { font-size: 0.8rem; color: var(--text-muted); }

/* Gallery */
.gallery-slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: thin; }
.gallery-slide { flex: 0 0 350px; scroll-snap-align: start; }
.gallery-slide__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius); overflow: hidden; }
.gallery-slide__compare img { width: 100%; height: 200px; object-fit: cover; }
.gallery-slide__title { text-align: center; margin-top: 0.75rem; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.gallery-item__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery-item__half { position: relative; }
.gallery-item__half img { width: 100%; height: 220px; object-fit: cover; transition: transform var(--transition); }
.gallery-item:hover .gallery-item__half img { transform: scale(1.05); }
.gallery-item__half span { position: absolute; bottom: 8px; left: 8px; background: rgba(0,0,0,0.7); padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.75rem; }
.gallery-item h3 { margin-top: 0.75rem; text-align: center; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 85vh; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--white); cursor: pointer;
}
.lightbox__close svg { width: 2rem; height: 2rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.process-step { text-align: center; padding: 2rem 1rem; position: relative; }
.process-step__num { font-family: var(--font-display); font-size: 3rem; color: rgba(245,166,35,0.2); font-weight: 700; display: block; margin-bottom: 0.5rem; }
.process-step h3 { margin-bottom: 0.5rem; }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.area-card {
  display: flex; align-items: center; gap: 0.5rem; padding: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-weight: 600;
  transition: all var(--transition);
}
.area-card:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.area-card svg { color: var(--accent); }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none; color: var(--white);
  font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left;
  font-family: var(--font); gap: 1rem;
}
.faq-item__question svg { transition: transform var(--transition); color: var(--accent); }
.faq-item__question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-item__answer { padding: 0 0 1.25rem; }
.faq-item__answer[hidden] { display: none; }
.faq-item__answer p { font-size: 0.95rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-grid--3 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.blog-grid--4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.blog-categories { margin-bottom: 1.5rem; }
.blog-article__tags { margin-top: 1rem; }
.blog-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; margin-top: 2rem; flex-wrap: wrap;
}
.blog-nav__link {
  font-size: 0.88rem; font-weight: 600; color: var(--accent);
  max-width: 45%; line-height: 1.4;
}
.blog-nav__link:hover { color: var(--accent-hover); }
.blog-nav__link--next { text-align: right; margin-left: auto; }
.blog-article__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.blog-article__content a:hover { color: var(--accent-hover); }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.blog-card a { display: block; padding: 1.75rem; color: var(--text); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.3); }
.blog-card__meta { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.8rem; color: var(--accent); flex-wrap: wrap; }
.blog-card h3, .blog-card h4 { color: var(--white); margin-bottom: 0.5rem; }
.blog-card__link { display: flex; align-items: center; gap: 0.35rem; margin-top: 1rem; color: var(--accent); font-weight: 600; font-size: 0.85rem; }
.blog-search { margin-bottom: 2rem; }
.blog-search input {
  width: 100%; max-width: 500px; padding: 0.85rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-size: 1rem;
  font-family: var(--font);
}
.blog-search input:focus { outline: none; border-color: var(--accent); }
.blog-article__header { margin-bottom: 2rem; }
.blog-article__header h1 { margin-top: 1rem; }
.toc { padding: 1.5rem; margin-bottom: 2rem; }
.toc h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.toc ol { padding-left: 1.25rem; }
.toc li { margin-bottom: 0.35rem; }
.toc a { color: var(--text-muted); font-size: 0.9rem; }
.toc a:hover { color: var(--accent); }
.blog-article__content h2 { margin: 2rem 0 1rem; color: var(--white); }
.blog-article__content p { margin-bottom: 1rem; font-size: 1.05rem; }
.related-posts { margin-top: 3rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; margin-bottom: 2rem; }
.contact-info { padding: 2rem; }
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info__item svg { color: var(--accent); width: 1.5rem; height: 1.5rem; margin-top: 0.2rem; }
.contact-info__item h4 { color: var(--white); margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-form { padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); font-size: 1rem;
  font-family: var(--font); transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(230,126,34,0.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.cta-section__inner { text-align: center; }
.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { margin-bottom: 2rem; font-size: 1.1rem; }
.cta-section__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* Page Hero */
.page-hero { padding: 3rem 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.page-hero--compact { padding: 2.5rem 0; }
.page-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.page-hero__image img { border-radius: var(--radius-lg); border: 1px solid var(--border); }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.content-main h2, .content-main h3 { color: var(--white); margin: 1.5rem 0 0.75rem; }
.content-main p { margin-bottom: 1rem; }
.content-sidebar { padding: 2rem; position: sticky; top: calc(var(--header-h) + var(--banner-h) + 1rem); height: fit-content; }
.benefits-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.95rem; }
.benefits-list svg { color: var(--accent); margin-top: 0.2rem; }

/* Breadcrumb */
.breadcrumb { padding: 1rem 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; font-size: 0.85rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb [aria-current] { color: var(--accent); }

/* Footer */
.footer__grid--mega { grid-template-columns: minmax(220px, 1.4fr) minmax(160px, 1fr) minmax(160px, 1fr) repeat(3, minmax(120px, 1fr)); gap: 1.5rem; }
.footer__col { min-width: 0; }
.footer__col--mega h4 a { color: var(--white); }
.footer__col--mega h4 a:hover { color: var(--accent); }
.footer__col--mega ul { max-height: 220px; overflow-y: auto; scrollbar-width: thin; }
.footer__col--mega ul::-webkit-scrollbar { width: 4px; }
.footer__col--mega ul::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.prefooter-links { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.prefooter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.prefooter-col h4 { color: var(--white); margin-bottom: 1rem; font-size: 0.95rem; }
.link-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.link-chip {
  display: inline-block; padding: 0.35rem 0.75rem; border-radius: 50px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted);
  font-size: 0.8rem; transition: all var(--transition);
}
.link-chip:hover { border-color: var(--accent); color: var(--accent); }

.trust-section { background: var(--bg); border-top: 1px solid var(--border); padding: 1.25rem 0; }
.trust-section__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.75rem; }
.trust-section__links { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; }
.trust-link {
  display: inline-block; padding: 0.35rem 0.7rem; border-radius: 50px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.8rem; white-space: nowrap;
}
.trust-link:hover { border-color: var(--accent); color: var(--accent); }

.trust-home .trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.trust-badge {
  padding: 0.6rem 1.25rem; border-radius: var(--radius); background: var(--bg-card);
  border: 1px solid var(--border); color: var(--text); font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.trust-badge:hover { border-color: var(--accent); color: var(--accent); }

.city-hubs { display: flex; flex-direction: column; gap: 2.5rem; }
.city-hub-block { padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.city-hub-block:last-child { border-bottom: none; }
.city-hub-block__title, .city-hub-block h2 { color: var(--white); margin-bottom: 1rem; }
.areas-grid--compact { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.area-card--sm { padding: 0.75rem 1rem; font-size: 0.85rem; }
.area-card--sm svg { width: 1rem; height: 1rem; }

.sitemap-content section { margin-bottom: 2.5rem; }
.sitemap-content h2, .sitemap-content h3 { color: var(--white); margin-bottom: 1rem; }
.sitemap-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 0.4rem; break-inside: avoid; }
.sitemap-list a { color: var(--text-muted); font-size: 0.9rem; }
.sitemap-list a:hover { color: var(--accent); }
.sitemap-list--compact { columns: 3; }
.sitemap-region { margin-bottom: 3rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Bölge Hub */
.region-hub { padding: 3rem 0; }
.region-hub__header {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2rem;
}
.region-hub__subtitle { color: var(--white); margin-bottom: 1.25rem; font-size: 1.15rem; }
.region-hub__block { margin-bottom: 2.5rem; }
.region-hub__block:last-child { margin-bottom: 0; }
.region-hub__search-wrap { margin: 1.5rem 0 1rem; max-width: 520px; }
.region-hub__search {
  width: 100%; padding: 0.85rem 1.15rem; border-radius: 50px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
  font-size: 0.95rem; outline: none; transition: border-color var(--transition);
}
.region-hub__search:focus { border-color: var(--accent); }
.region-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.region-nav__item {
  display: inline-flex; flex-direction: column; padding: 0.75rem 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--white); font-weight: 600; font-size: 0.9rem; transition: all var(--transition);
}
.region-nav__item span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-top: 0.15rem; }
.region-nav__item:hover { border-color: var(--accent); color: var(--accent); }

.mahalle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.mahalle-card { padding: 1.25rem; transition: border-color var(--transition); }
.mahalle-card:hover { border-color: rgba(245, 166, 35, 0.35); }
.mahalle-card__head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.85rem; }
.mahalle-card__icon svg { color: var(--accent); width: 1.25rem; height: 1.25rem; }
.mahalle-card h3 { margin: 0; font-size: 1.05rem; }
.mahalle-card h3 a { color: var(--white); }
.mahalle-card h3 a:hover { color: var(--accent); }
.mahalle-card__links { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.mahalle-card__link {
  font-size: 0.78rem; padding: 0.3rem 0.65rem; border-radius: 50px;
  background: rgba(245, 166, 35, 0.1); border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--accent); font-weight: 600;
}
.mahalle-card__link:hover { background: rgba(245, 166, 35, 0.2); color: var(--accent-hover); }
.mahalle-card__brands { margin-top: 0.5rem; }
.mahalle-card__brands summary {
  cursor: pointer; font-size: 0.8rem; color: var(--text-muted); padding: 0.35rem 0;
  list-style: none; user-select: none;
}
.mahalle-card__brands summary::-webkit-details-marker { display: none; }
.mahalle-card__brands summary::before { content: '▸ '; color: var(--accent); }
.mahalle-card__brands[open] summary::before { content: '▾ '; }
.mahalle-card__brands .link-chips { margin-top: 0.65rem; }
.link-chip--sm { font-size: 0.72rem; padding: 0.25rem 0.55rem; }
.mahalle-card__more { font-size: 0.72rem; color: var(--text-muted); padding: 0.25rem 0.55rem; }

.bolge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.bolge-card { padding: 1.25rem; }
.bolge-card h3 { margin: 0 0 0.75rem; font-size: 1rem; }
.bolge-card h3 a { color: var(--white); }
.bolge-card__links { display: flex; flex-direction: column; gap: 0.4rem; }
.bolge-card .area-card--sm { font-size: 0.82rem; padding: 0.5rem 0.75rem; }

.mahalle-card.is-hidden, .bolge-card.is-hidden { display: none; }

.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 3rem; }
.footer__desc { margin: 1rem 0; font-size: 0.9rem; line-height: 1.7; }
.footer__desc a { color: var(--accent); font-weight: 600; white-space: nowrap; }
.footer__social { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.footer__social-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.75rem; border-radius: 50px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.75rem; font-weight: 600;
  white-space: nowrap; transition: all var(--transition);
}
.footer__social-link svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer__social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(245, 166, 35, 0.08); }
.footer__social a { width: auto; height: auto; border-radius: 50px; }
.footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer ul a:hover { color: var(--accent); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer__contact svg { color: var(--accent); margin-top: 0.15rem; }
.footer__hours { font-size: 0.85rem; margin-top: 1rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted);
}
.footer__legal { display: flex; gap: 1.5rem; }

/* Sticky Contact Bar */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
}
.sticky-contact-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: filter var(--transition);
}
.sticky-contact-bar__btn:hover { color: var(--white); filter: brightness(1.1); }
.sticky-contact-bar__btn svg { width: 1.35rem; height: 1.35rem; flex-shrink: 0; }
.sticky-contact-bar__btn--call { background: var(--accent); color: var(--bg); }
.sticky-contact-bar__btn--call:hover { color: var(--bg); }
.sticky-contact-bar__btn--wa { background: #25d366; }
.sticky-contact-bar__text { line-height: 1.2; }
.sticky-contact-bar__text strong { display: block; font-size: 1.05rem; font-family: var(--font-display); letter-spacing: 0.5px; }

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
  animation: pulse 2s infinite;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  color: var(--white);
}
.floating-btn:hover { transform: scale(1.05); color: var(--white); }
.floating-btn svg { width: 1.35rem; height: 1.35rem; flex-shrink: 0; }
.floating-btn__label { line-height: 1.2; text-align: left; }
.floating-btn__label small { font-size: 0.75rem; font-weight: 600; }
.floating-btn--whatsapp { background: #25d366; }
.floating-btn--phone { background: var(--accent); color: var(--bg); }
.floating-btn--phone:hover { color: var(--bg); }
.floating-btn--phone .floating-btn__label { color: var(--bg); }
@keyframes pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); } 50% { box-shadow: 0 4px 30px rgba(245,166,35,0.45); } }

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  left: 1.25rem;
  z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top svg { transform: rotate(-90deg); width: 1.25rem; height: 1.25rem; }

.case-studies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.case-study-card { overflow: hidden; }
.case-study-card img { width: 100%; height: 200px; object-fit: cover; }
.case-study-card__body { padding: 1.5rem; }
.case-study-card h3 { margin: 0.5rem 0 1rem; color: var(--white); }
.case-study-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; font-size: 0.9rem; margin-bottom: 1rem; }
.case-study-dl dt { color: var(--accent); font-weight: 600; }
.case-study-dl dd { color: var(--text-muted); margin: 0; }

.local-intro { font-size: 1.1rem; color: var(--text); margin-bottom: 2rem; line-height: 1.8; }
.local-content h2 { color: var(--white); margin: 2rem 0 1rem; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.local-content h2:first-of-type { border-top: none; margin-top: 0; }
.service-card--compact { padding: 1.25rem; }
.service-card--compact h4 { color: var(--white); margin-bottom: 0.5rem; }

/* Skeleton */
.skeleton { background: linear-gradient(90deg, var(--bg-card) 25%, #222 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Responsive */
@media (min-width: 768px) {
  .btn--header span { display: inline; }
}

@media (max-width: 1024px) {
  .footer__grid, .footer__grid--mega { grid-template-columns: 1fr 1fr; }
  .footer__col:first-child { grid-column: 1 / -1; }
  .prefooter-grid { grid-template-columns: 1fr; }
  .sitemap-list { columns: 2; }
  .sitemap-list--compact { columns: 2; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .page-hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo { font-size: 0.95rem; }
  .logo__text { max-width: calc(100vw - 120px); }
  .footer__social-link span { display: none; }
  .footer__social-link { padding: 0.55rem; border-radius: 50%; width: 40px; height: 40px; justify-content: center; }
  .nav { position: fixed; top: calc(var(--header-h) + var(--banner-h)); left: 0; right: 0; bottom: 0; background: var(--bg); padding: 1.5rem; transform: translateX(100%); transition: transform var(--transition); overflow-y: auto; }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; }
  .nav__list a { padding: 0.85rem 1rem; font-size: 1rem; }
  .nav__dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; display: none; }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav-toggle { display: block; }
  .hero { min-height: 80vh; }
  .hero__cta .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid, .footer__grid--mega { grid-template-columns: 1fr; }
  .sitemap-list, .sitemap-list--compact { columns: 1; }
  .floating-actions { bottom: 5rem; right: 0.75rem; }
  .floating-btn { padding: 0.55rem 0.85rem; font-size: 0.8rem; }
  .floating-btn__label small { font-size: 0.7rem; }
  .sticky-contact-bar__btn { padding: 0.8rem 0.5rem; font-size: 0.85rem; }
  .sticky-contact-bar__text strong { font-size: 0.95rem; }
  .back-to-top { bottom: 5rem; left: 0.75rem; }
  .emergency-banner__inner { flex-direction: column; gap: 0.5rem; }
}

@media (min-width: 769px) {
  .sticky-contact-bar { display: none; }
  body { padding-bottom: 0; }
  .floating-actions { bottom: 1.5rem; }
  .back-to-top { bottom: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
