/* ==========================================================
   İZMİR TELEVİZYON SERVİSİ — style.css
   Tek dosya, framework yok. Tema renkleri müşteri talebi ile
   sabittir: Lacivert / Turkuaz / Kırmızı.
   ========================================================== */

/* ==========================================================
   Kendi sunucumuzdan servis edilen fontlar (self-hosted)
   Google Fonts'a dış istek yapmaz — render-blocking kaynak
   ve DNS/TLS round-trip'i ortadan kaldırır (PageSpeed için).
   ========================================================== */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/outfit-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/outfit-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600.woff2') format('woff2');
}

:root {
  /* Marka renkleri (sabit) */
  --navy:        #0A2342;
  --navy-dark:   #071930;
  --turquoise:   #00B8D9;
  --turquoise-dark: #009BB8;
  --red:         #E53935;
  --red-dark:    #C62828;

  /* Destekleyici nötrler */
  --bg:          #F6F9FC;
  --bg-alt:      #EEF4F9;
  --surface:     #FFFFFF;
  --border:      #E1E8EF;
  --text:        #16233A;
  --text-muted:  #55647A;
  --turquoise-tint: #E4FAFF;

  /* Tipografi */
  --font-display: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Ölçüler */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10, 35, 66, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 35, 66, 0.10);
  --shadow-turq: 0 0 0 4px rgba(0, 184, 217, 0.14);
  --header-h: 76px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.section { padding: 88px 24px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-lead { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin-top: 10px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  background: var(--turquoise-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--turquoise); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--turquoise-dark); box-shadow: var(--shadow-turq); }
.btn-danger { background: var(--red); color: #fff; box-shadow: var(--shadow-sm); }
.btn-danger:hover { background: var(--red-dark); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE57; }
.btn-call { background: var(--red); color: #fff; padding: 10px 18px; border-radius: 10px; }
.btn-call:hover { background: var(--red-dark); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--turquoise); display: flex; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  color: var(--text); position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--turquoise); transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.2s; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: calc(var(--header-h) + 20px) 24px 0; }
.breadcrumb-inner { max-width: var(--container); margin: 0 auto; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--turquoise-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; }
.breadcrumb .current { color: var(--text); }
.breadcrumb + .hero { padding-top: 40px; }

/* ---------- İlçe hakkında / snippet bölümleri ---------- */
.district-about { padding-top: 56px; padding-bottom: 32px; }
.snippet-section { padding-top: 0; padding-bottom: 32px; }

/* ---------- Hero ---------- */
.hero { padding: calc(var(--header-h) + 64px) 24px 70px; background: linear-gradient(180deg, var(--turquoise-tint) 0%, var(--bg) 65%); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,184,217,0.16), transparent 70%);
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.hero-sub { margin-top: 16px; font-size: 1.1rem; color: var(--text-muted); max-width: 540px; }
.hero-buttons { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-neighborhoods { margin-top: 22px; font-size: 0.88rem; color: var(--text-muted); border-top: 1px dashed var(--border); padding-top: 16px; }

/* ---------- Framed photos (signature element) ---------- */
.framed-photo {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  border: 3px solid var(--turquoise);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: var(--surface);
}
.framed-photo:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 0 0 6px rgba(0,184,217,0.18), var(--shadow-md); }
.framed-photo.no-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, #123a63 100%);
}
.hero-media { position: relative; }
.hero-media::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border-radius: var(--radius-lg); background: repeating-linear-gradient(135deg, var(--navy), var(--navy) 2px, transparent 2px, transparent 10px);
  opacity: 0.15;
}
.service-photo-wrap { margin-top: 56px; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px 22px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--turquoise); }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  background: var(--turquoise-tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-icon::before {
  content: ''; width: 24px; height: 24px; background: var(--turquoise-dark);
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center;
}
.service-icon[data-icon="tv"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 20h8M12 17v3' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='4' width='20' height='13' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 20h8M12 17v3' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.service-icon[data-icon="wifi"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 8.5a16 16 0 0 1 20 0M5.5 12.5a11 11 0 0 1 13 0M9 16.5a6 6 0 0 1 6 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='20' r='1.4' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 8.5a16 16 0 0 1 20 0M5.5 12.5a11 11 0 0 1 13 0M9 16.5a6 6 0 0 1 6 0' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='20' r='1.4' fill='black'/%3E%3C/svg%3E"); }
.service-icon[data-icon="chip"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='6' width='12' height='12' rx='1.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M9 2v4M15 2v4M9 18v4M15 18v4M2 9h4M2 15h4M18 9h4M18 15h4' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='6' width='12' height='12' rx='1.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M9 2v4M15 2v4M9 18v4M15 18v4M2 9h4M2 15h4M18 9h4M18 15h4' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.service-icon[data-icon="grid"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='13' y='3' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='3' y='13' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='13' y='13' width='8' height='8' rx='1.5' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='13' y='3' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='3' y='13' width='8' height='8' rx='1.5' fill='black'/%3E%3Crect x='13' y='13' width='8' height='8' rx='1.5' fill='black'/%3E%3C/svg%3E"); }
.service-icon[data-icon="tool"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 6.5a4 4 0 0 0-5.4 5.1L3 17.7l2.3 2.3 6.1-6.1a4 4 0 0 0 5.1-5.4l-2.5 2.5-2-2z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 6.5a4 4 0 0 0-5.4 5.1L3 17.7l2.3 2.3 6.1-6.1a4 4 0 0 0 5.1-5.4l-2.5 2.5-2-2z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.service-icon[data-icon="wall"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='4' fill='black'/%3E%3Cpath d='M7 7v13M17 7v13M7 12h10' stroke='black' stroke-width='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2' y='3' width='20' height='4' fill='black'/%3E%3Cpath d='M7 7v13M17 7v13M7 12h10' stroke='black' stroke-width='2'/%3E%3C/svg%3E"); }
.service-icon[data-icon="satellite"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11a11 11 0 0 1 11 11M3 11a4 4 0 0 1 4 4M3 11l7 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='19' cy='5' r='2.4' fill='black'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11a11 11 0 0 1 11 11M3 11a4 4 0 0 1 4 4M3 11l7 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='19' cy='5' r='2.4' fill='black'/%3E%3C/svg%3E"); }
.service-icon[data-icon="search"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M20 20l-5-5' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M20 20l-5-5' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Rich text (uzun SEO paragrafları için ortak stil) ---------- */
.rich-text { max-width: 820px; margin-top: 24px; }
.rich-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text strong { color: var(--navy); font-weight: 600; }
.snippet-box {
  max-width: 820px; margin-top: 24px; background: var(--turquoise-tint);
  border: 1px solid rgba(0,184,217,0.25); border-radius: var(--radius-md); padding: 22px 26px;
}
.snippet-box p { color: var(--navy); font-size: 1.02rem; line-height: 1.7; margin: 0; }
.snippet-box strong { color: var(--navy); }

/* ---------- Brands (buton grid + kaydırmalı kutu) ---------- */
.brand-scroll-box {
  margin-top: 32px; max-height: 320px; overflow-y: auto;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 18px; background: var(--bg-alt);
}
.brand-scroll-box::-webkit-scrollbar { width: 10px; }
.brand-scroll-box::-webkit-scrollbar-track { background: transparent; }
.brand-scroll-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.brand-scroll-box::-webkit-scrollbar-thumb:hover { background: var(--turquoise); }
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.brand-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; padding: 16px 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.92rem; color: var(--navy); transition: 0.2s ease;
}
.brand-box:hover, .brand-box:focus-visible { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

/* ---------- Service areas / districts ---------- */
.service-areas { background: var(--bg-alt); }
.district-scroll-box {
  margin-top: 32px; max-height: 320px; overflow-y: auto;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 18px; background: var(--surface);
}
.district-scroll-box::-webkit-scrollbar { width: 10px; }
.district-scroll-box::-webkit-scrollbar-track { background: transparent; }
.district-scroll-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.district-scroll-box::-webkit-scrollbar-thumb:hover { background: var(--turquoise); }
.district-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.district-chip {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; padding: 16px 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.92rem; color: var(--navy); transition: 0.2s ease; display: block;
}
.district-chip:hover, .district-chip.active { background: var(--turquoise); border-color: var(--turquoise); color: #fff; transform: translateY(-2px); }
span.district-chip.active { cursor: default; }
.all-areas-link { margin-top: 24px; }
.all-areas-link a { color: var(--turquoise-dark); font-weight: 600; font-size: 0.95rem; }
.all-areas-link a:hover { text-decoration: underline; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-list { margin: 20px 0 28px; display: grid; gap: 10px; }
.about-list li { position: relative; padding-left: 28px; color: var(--text-muted); }
.about-list li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--turquoise-tint); box-shadow: inset 0 0 0 2px var(--turquoise);
}
.about-text p { color: var(--text-muted); margin-top: 12px; max-width: 560px; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-list { margin-top: 32px; display: grid; gap: 12px; max-width: 820px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 22px; }
.faq-item summary { font-family: var(--font-display); font-weight: 600; padding: 16px 0; cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 14px; font-size: 1.4rem; color: var(--turquoise-dark); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--text-muted); padding-bottom: 18px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.contact-buttons { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.contact-hours { margin-top: 26px; font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cdd8e6; }
.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 1.3fr 1fr 1.3fr 1fr; gap: 36px;
  border-bottom: 2px solid var(--turquoise);
}
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: #a9bad2; margin-bottom: 10px; }
.footer-col a:hover { color: var(--turquoise); }
.footer-col .logo-text { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.footer-phone { color: var(--turquoise) !important; font-weight: 700; font-size: 1.05rem !important; }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #8ba0bd;
}

/* ---------- Mobile call bar ---------- */
.mobile-call-bar { display: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: #fff; flex-direction: column;
    padding: 18px 24px; gap: 6px; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform 0.25s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .menu-toggle { display: flex; }
  .header-actions .btn-call span { display: none; }
  .header-actions .btn-call { padding: 10px; }
  .section { padding: 60px 20px 90px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .mobile-call-bar {
    display: flex; gap: 10px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: 12px 16px; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(10,35,66,0.08);
  }
  .mobile-call-bar .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons .btn, .contact-buttons .btn { width: 100%; justify-content: center; }
}
