/* ============================================================
   BURSA KEPÇE & HAFRİYAT — Global Design System v2
   Renk: Endüstriyel Sarı (#F5A800) + Siyah (#0D0D0D)
   Font: Inter + Bebas Neue (Google Fonts — HTML head üzerinden yüklenir)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --yellow: #F5A800;
  --yellow-dark: #D4900A;
  --yellow-light: #FFD166;
  --black: #0D0D0D;
  --gray-900: #111111;
  --gray-800: #1A1A1A;
  --gray-700: #242424;
  --gray-600: #3A3A3A;
  --gray-400: #A0A0A0; /* Accessibility fix */
  --gray-200: #CCCCCC;
  --white: #FFFFFF;
  --text: #E8E8E8;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-yellow: 0 0 30px rgba(245,168,0,0.3);

  --max-w: 1200px;
  --header-h: 70px;
  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── UTILITY ── */
.text-yellow { color: var(--yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ╔══════════════════════════════════════╗
   ║  HEADER / NAV                        ║
   ╚══════════════════════════════════════╝ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.96);
  /* backdrop-filter: gpu compositing — ok for sticky header, limited surface */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0); /* Force hardware acceleration */
  border-bottom: 2px solid var(--yellow);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--yellow); background: rgba(245,168,0,0.08); }
.nav-menu .nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-left: 8px;
}
.nav-menu .nav-cta:hover { background: var(--yellow-dark); color: var(--black); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px; /* touch target */
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
  padding: 12px 20px 16px;
  gap: 0;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  font-weight: 600;
  color: var(--gray-200);
  border-bottom: 1px solid var(--gray-700);
  font-size: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile {
  margin-top: 12px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border-bottom: none !important;
  justify-content: center;
}

/* ╔══════════════════════════════════════╗
   ║  STICKY CTA BAR (mobile only)        ║
   ╚══════════════════════════════════════╝ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: none; /* hidden by default, shown on mobile via media query */
  grid-template-columns: 1fr 1fr;
  height: 56px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.sticky-cta .cta-call { background: var(--yellow); color: var(--black); }
.sticky-cta .cta-whatsapp { background: #25D366; color: #fff; }

/* ╔══════════════════════════════════════╗
   ║  HERO                                ║
   ╚══════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100svh; /* svh: mobile viewport without browser chrome */
  min-height: 100vh;  /* fallback */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-excavator.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35);
  transform: scale(1.05);
  will-change: transform; /* GPU layer hint */
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13,13,13,0.90) 0%,
    rgba(13,13,13,0.55) 55%,
    rgba(13,13,13,0.20) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,0.12);
  border: 1px solid rgba(245,168,0,0.35);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.hero-title .accent { color: var(--yellow); display: block; }
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray-200);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,168,0,0.2);
  flex-wrap: wrap;
}
.hero-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(245,168,0,0.15);
}
.hero-stat:last-child { padding-right: 0; margin-right: 0; border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  will-change: transform;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* ╔══════════════════════════════════════╗
   ║  BUTTONS                             ║
   ╚══════════════════════════════════════╝ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  min-height: 48px; /* touch target */
  text-align: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
  min-height: 40px;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-dark {
  background: var(--black);
  color: var(--yellow);
  border: none;
}
.btn-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

/* ╔══════════════════════════════════════╗
   ║  SECTION HEADERS                     ║
   ╚══════════════════════════════════════╝ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--gray-900); }
.section-darker { background: var(--gray-800); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ╔══════════════════════════════════════╗
   ║  SERVICES GRID                       ║
   ╚══════════════════════════════════════╝ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(245,168,0,0.13);
}
.service-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform var(--transition);
  display: block;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.service-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(245,168,0,0.08);
  color: var(--yellow);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(245,168,0,0.18);
  white-space: nowrap;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ╔══════════════════════════════════════╗
   ║  WHY US                              ║
   ╚══════════════════════════════════════╝ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 28px 22px;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.why-card:hover { border-color: var(--yellow); background: rgba(245,168,0,0.04); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ╔══════════════════════════════════════╗
   ║  COVERAGE STRIP (ilçeler)            ║
   ╚══════════════════════════════════════╝ */
.coverage {
  background: var(--gray-800);
  padding: 56px 0;
}
.coverage-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.coverage-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  color: var(--gray-200);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.coverage-tag:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.coverage-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage-tag:hover .coverage-tag-dot { background: var(--black); }

/* ╔══════════════════════════════════════╗
   ║  TEKLİF FORMU                        ║
   ╚══════════════════════════════════════╝ */
.form-section {
  background: var(--gray-900);
  padding: 80px 0;
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.form-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.form-left p {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--yellow); }
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(245,168,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
}
.contact-item-value {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  display: block;
  margin-top: 2px;
}
.contact-form {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-200);
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  color: var(--white);
  padding: 13px 15px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem; /* Prevent iOS zoom (min 16px) */
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none; /* iOS select styling */
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,168,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group select option { background: var(--gray-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row .form-group { margin-bottom: 0; }
.form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
}
.form-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.form-success h3 { font-size: 1.4rem; color: var(--yellow); margin-bottom: 8px; }
.form-success p { color: var(--gray-400); }

/* ╔══════════════════════════════════════╗
   ║  CTA BANNER                          ║
   ╚══════════════════════════════════════╝ */
.cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🏗';
  position: absolute;
  font-size: 180px;
  opacity: 0.06;
  top: -30px;
  right: -30px;
  pointer-events: none;
  user-select: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.cta-banner p {
  color: rgba(0,0,0,0.65);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ╔══════════════════════════════════════╗
   ║  FOOTER                              ║
   ╚══════════════════════════════════════╝ */
.site-footer {
  background: var(--gray-900);
  border-top: 2px solid var(--gray-700);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 14px 0 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--yellow); background: rgba(245,168,0,0.1); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.footer-bottom a { color: var(--yellow); }

/* ╔══════════════════════════════════════╗
   ║  BREADCRUMB                          ║
   ╚══════════════════════════════════════╝ */
.breadcrumb {
  background: var(--gray-800);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-700);
  margin-top: var(--header-h); /* exactly header height */
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.breadcrumb li a { color: var(--gray-200); transition: color var(--transition); }
.breadcrumb li a:hover { color: var(--yellow); }
.breadcrumb li:not(:last-child)::after { content: '/'; opacity: 0.5; }
.breadcrumb li:last-child { color: var(--yellow); font-weight: 600; }

/* ╔══════════════════════════════════════╗
   ║  SERVICE PAGE HERO (inner pages)     ║
   ╚══════════════════════════════════════╝ */
.page-hero {
  /* No margin-top — breadcrumb handles spacing after fixed header */
  background: var(--gray-900);
  padding: 56px 0 52px;
  border-bottom: 2px solid var(--gray-700);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(to right, transparent, rgba(245,168,0,0.03));
  pointer-events: none;
}
.page-hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.page-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.page-hero-meta-item strong { color: var(--yellow); }

/* ╔══════════════════════════════════════╗
   ║  CONTENT GRID (inner pages)          ║
   ╚══════════════════════════════════════╝ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 52px 0 64px;
}
.content-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 0.5px;
  margin: 28px 0 12px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.content-body ul {
  list-style: none;
  margin-bottom: 18px;
}
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-400);
  margin-bottom: 9px;
  font-size: 0.925rem;
  line-height: 1.65;
}
.content-body ul li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sub-list {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.sub-list li::before { display: none; }
.sub-list li { margin-bottom: 8px; font-size: 0.9rem; }
.sub-list li strong { color: var(--white); }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--gray-600);
}
.content-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Sidebar */
.sidebar-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
}
.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  color: var(--white);
  padding: 11px 13px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem; /* Prevent iOS zoom */
  margin-bottom: 10px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.sidebar-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.sidebar-form input:focus,
.sidebar-form select:focus { border-color: var(--yellow); }
.sidebar-form select option { background: var(--gray-800); }
.sidebar-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 13px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  min-height: 48px;
}
.sidebar-submit:hover { background: var(--yellow-dark); }
.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-600);
  transition: color var(--transition);
  font-size: 0.9rem;
  min-height: 44px;
}
.sidebar-contact a:last-child { border-bottom: none; }
.sidebar-contact a:hover { color: var(--yellow); }

/* ╔══════════════════════════════════════╗
   ║  İLÇE SERVICE ITEMS                  ║
   ╚══════════════════════════════════════╝ */
.ilce-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.ilce-service-item {
  background: var(--gray-800);
  border: 1px solid var(--gray-600);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition);
  min-height: 56px;
}
.ilce-service-item:hover { border-color: var(--yellow); }
.ilce-service-item a { display: flex; align-items: center; gap: 10px; width: 100%; }
.ilce-service-item span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.ilce-service-item strong { color: var(--white); font-size: 0.875rem; font-weight: 600; }

/* ╔══════════════════════════════════════╗
   ║  HIGHLIGHT BOX                       ║
   ╚══════════════════════════════════════╝ */
.highlight-box {
  background: rgba(245,168,0,0.05);
  border: 1px solid rgba(245,168,0,0.18);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 22px 0;
}
.highlight-box p {
  color: var(--gray-200) !important;
  margin: 0 !important;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ╔══════════════════════════════════════╗
   ║  ANIMATIONS (reduced-motion safe)    ║
   ╚══════════════════════════════════════╝ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .hero-scroll { animation: none; }
}

/* ╔══════════════════════════════════════╗
   ║  SCHEMA TAG VISIBILITY               ║
   ╚══════════════════════════════════════╝ */
[itemscope] { display: contents; }

/* ╔══════════════════════════════════════╗
   ║  RESPONSIVE BREAKPOINTS              ║
   ╚══════════════════════════════════════╝ */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 52px; }
  .sidebar-card { position: static; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding: 0 18px; }

  /* Nav */
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-main { font-size: 1.1rem; }
  .nav-logo-sub { font-size: 0.55rem; letter-spacing: 1px; }

  /* Sticky CTA — shown on mobile */
  .sticky-cta { display: grid; }
  body { padding-bottom: 76px; } /* match .sticky-cta height + breathing room */

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-bg { animation: none; } /* Save mobile battery */
  .hero-content { padding: 32px 0; }
  .hero-badge { font-size: 0.68rem; padding: 5px 11px; }
  .hero-stats { gap: 0; }
  .hero-stat {
    padding-right: 20px;
    margin-right: 20px;
    margin-bottom: 12px;
  }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-scroll { display: none; } /* hide on mobile — too small */

  /* Sections */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card-img { height: 180px; }
  .service-card-body { padding: 18px 20px 20px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 22px 16px; }

  /* Coverage */
  .coverage { padding: 44px 0; }
  .coverage-tag { font-size: 0.8rem; padding: 8px 13px; }

  /* Form */
  .form-section { padding: 56px 0; }
  .form-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .form-row .form-group { margin-bottom: 0; }
  .contact-form { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .site-footer { padding: 44px 0 0; }

  /* Page hero */
  .page-hero { padding: 36px 0 32px; }
  .page-hero p { font-size: 0.925rem; }
  .page-hero-meta { gap: 12px; }
  .page-hero-meta-item { font-size: 0.8rem; }

  /* Inner content */
  .content-grid { padding: 32px 0 48px; }
  .content-img img { height: 200px; }

  /* Ilce services */
  .ilce-services { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ilce-service-item { padding: 13px 14px; }
  .ilce-service-item strong { font-size: 0.8rem; }

  /* CTA banner */
  .cta-banner { padding: 48px 0; }
  .cta-banner p { font-size: 0.95rem; }

  /* Breadcrumb */
  .breadcrumb li { font-size: 0.75rem; }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(245,168,0,0.2);
  }
  .hero-stat {
    width: auto;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .why-grid { grid-template-columns: 1fr; }
  .ilce-services { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .coverage-tag { font-size: 0.78rem; padding: 7px 11px; }
  .sticky-cta a { font-size: 0.82rem; gap: 5px; }
}
