/* ================================================================
   QC Paint Shop — Design System  v2.0
   Matches qcpaintshop.com exactly
   Primary #1B5E3B (Green) | Secondary #D4A24E (Gold) | Accent #E05A33
   Fonts: Playfair Display (headings) + Plus Jakarta Sans (body)
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --primary:        #1B5E3B;
  --primary-dark:   #164D30;
  --primary-light:  #E8F5ED;
  --primary-xlight: #F2FAF5;
  --primary-900:    #06190F;
  --primary-800:    #0B2A1A;
  --primary-700:    #113C26;
  --secondary:      #D4A24E;
  --secondary-dark: #C08B2D;
  --secondary-light:#FCF5E8;
  --accent:         #E05A33;
  --accent-dark:    #C44420;
  --bg:             #F8F6F1;
  --cream:          #FBF9F4;
  --surface:        #ffffff;
  --text:           #2D2D2D;
  --muted:          #7A7A7A;
  --border:         #E8E4DC;
  --wa:             #25D366;
  --wa-dark:        #128C7E;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.04);

  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;
  --ease:   cubic-bezier(.4,0,.2,1);
  --t:      all .2s var(--ease);
  --max-w:  1280px;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img,svg    { display: block; max-width: 100%; }
a          { color: inherit; text-decoration: none; }
ul,ol      { list-style: none; }
button     { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 36px); }
h3 { font-size: clamp(17px, 2.5vw, 22px); }
h4 { font-size: 17px; }
p  { color: var(--muted); line-height: 1.75; }
strong { color: var(--text); font-weight: 700; }
.highlight { color: var(--secondary); }

/* ── Layout ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section     { padding: 64px 0; }
.section-alt { background: var(--cream); }
.section-white { background: var(--surface); }

.section-title { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p  { font-size: 17px; }

/* ── Badge ─────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  margin-bottom: 14px;
}

/* ── Grids ─────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

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

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--t);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(27,94,59,.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,59,.38);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(224,90,51,.28);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212,162,78,.28);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.28);
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: var(--r-sm); }

/* ── Card ──────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: var(--t);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-text  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────────── */
.announce-bar {
  background: var(--primary-900);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 500;
  display: none;
}
@media (min-width: 768px) { .announce-bar { display: flex; } }
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7px 24px;
}
.announce-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 600;
  transition: color .2s;
}
.announce-phone:hover { color: #fff; }

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (min-width: 640px)  { .header-inner { padding: 14px 24px; } }
@media (min-width: 1024px) { .header-inner { padding: 16px 32px; } }

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.5px;
  flex-shrink: 0;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name    { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--primary); }
.logo-tagline { font-size: 10px; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: .5px; text-transform: uppercase; }

/* Nav */
.site-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .site-nav { display: flex; } }

.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a {
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--t);
}
.nav-list a:hover { color: var(--primary); background: var(--primary-light); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.hdr-phone {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--r-md);
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: var(--t);
}
.hdr-phone:hover { background: var(--primary-dark); transform: translateY(-1px); }
@media (min-width: 640px) { .hdr-phone { display: flex; } }

.hdr-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--r-md);
  background: var(--wa);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: var(--t);
}
.hdr-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 18% 55%, rgba(45,139,82,.3) 0, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(212,162,78,.2) 0, transparent 50%),
    linear-gradient(150deg, var(--primary-900) 0%, var(--primary-800) 35%, var(--primary-700) 65%, var(--primary-dark) 100%);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: rgba(212,162,78,.15);
  border: 1px solid rgba(212,162,78,.3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--secondary);
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 .highlight { color: var(--secondary); }
.hero-sub {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--secondary); }
.hero-stat span   { font-size: 13px; color: rgba(255,255,255,.65); }

/* ── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--primary-light);
  border-bottom: 1px solid rgba(27,94,59,.15);
  padding: 12px 0;
  overflow-x: auto;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  flex-shrink: 0;
}

/* ── REASON CARDS ──────────────────────────────────────────────── */
.reason-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: var(--t);
}
.reason-card:hover {
  box-shadow: 0 10px 40px rgba(27,94,59,.12);
  transform: translateY(-4px);
  border-color: rgba(27,94,59,.2);
}
.reason-card .card-icon { background: var(--primary-light); }

/* ── PRODUCT CARDS ─────────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.product-body     { padding: 20px; }
.product-body h3  { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.product-body p   { font-size: 13px; margin-bottom: 10px; }
.product-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.bg-green-lt  { background: #D4EDDA; }
.bg-amber-lt  { background: #FEF3C7; }
.bg-blue-lt   { background: #DBEAFE; }
.bg-purple-lt { background: #EDE9FE; }
.bg-cream-lt  { background: var(--cream); }
.bg-red-lt    { background: #FEE2E2; }

/* ── LOCAL CONTEXT ─────────────────────────────────────────────── */
.local-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #F2FAF5 100%);
  border: 1px solid rgba(27,94,59,.15);
  border-radius: var(--r-xl);
  padding: 40px 24px;
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .local-card { grid-template-columns: 1fr 1fr; padding: 48px; }
}
.local-text h2    { font-size: clamp(19px, 3.5vw, 26px); color: var(--primary-dark); margin-bottom: 16px; }
.local-text p     { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 16px; }

.local-checklist  { display: flex; flex-direction: column; gap: 10px; }
.local-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
}
.local-checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.local-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  align-self: start;
}
.local-visual-icon { font-size: 60px; line-height: 1; margin-bottom: 16px; }
.local-visual h3   { font-family: var(--font-heading); font-size: 16px; color: var(--primary-dark); margin-bottom: 8px; }
.local-visual p    { font-size: 13px; margin-bottom: 20px; }

/* ── BRANDS ────────────────────────────────────────────────────── */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.brand-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}
.brand-pill:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: var(--t);
}
.faq-item:hover { border-color: rgba(27,94,59,.2); box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.faq-q-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-q h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.faq-a    { font-size: 14px; color: var(--muted); line-height: 1.75; padding-left: 36px; }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,139,82,.4) 0, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,162,78,.25) 0, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(27,94,59,.5) 0, transparent 50%),
    linear-gradient(160deg, var(--primary-900) 0%, var(--primary-800) 30%, var(--primary-700) 60%, var(--primary-dark) 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.78); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.6);
}
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,139,82,.4) 0, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,162,78,.25) 0, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(27,94,59,.5) 0, transparent 50%),
    linear-gradient(160deg, #06190F 0%, #0B2A1A 30%, #113C26 60%, #164D30 100%);
}
.footer-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}
.footer-orb {
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212,162,78,.08);
  filter: blur(60px);
}
.footer-content { position: relative; z-index: 10; padding: 64px 0 32px; }
@media (min-width: 1024px) { .footer-content { padding: 80px 0 32px; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Footer brand column */
.footer-logo-name    { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; }
.footer-logo-tagline { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .5px; text-transform: uppercase; margin-top: 3px; }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 300px;
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-top: 12px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-contact a { font-size: 14px; color: var(--secondary); opacity: .8; transition: var(--t); }
.footer-contact a:hover { opacity: 1; color: var(--secondary); }

.social-links { display: flex; gap: 8px; margin-top: 20px; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.social-links a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.15); }
.social-links svg { width: 14px; height: 14px; fill: rgba(255,255,255,.6); }

/* Footer columns */
.footer-col h4 { font-family: var(--font-heading); color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(212,162,78,.5); flex-shrink: 0; }
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }

.branch-item { display: flex; align-items: flex-start; gap: 10px; }
.branch-pin  { font-size: 14px; color: rgba(212,162,78,.6); flex-shrink: 0; margin-top: 2px; }
.branch-name { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 600; display: block; }
.branch-phone { font-size: 13px; color: rgba(255,255,255,.35); transition: var(--t); }
.branch-phone:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.28);
}
.footer-bottom a      { color: rgba(212,162,78,.7); transition: var(--t); }
.footer-bottom a:hover { color: var(--secondary); }
.footer-bottom .sep   { margin: 0 8px; opacity: .3; }

/* ── DISTRICTS HUB ─────────────────────────────────────────────── */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}
@media (min-width: 640px)  { .districts-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .districts-grid { grid-template-columns: repeat(4,1fr); } }

.district-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  transition: var(--t);
}
.district-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.district-card h3 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.district-card ul { display: flex; flex-direction: column; gap: 7px; }
.district-card ul li a {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--t);
}
.district-card ul li a::before { content: '→'; font-size: 11px; color: var(--secondary); font-weight: 700; }
.district-card ul li a:hover   { color: var(--primary); }

/* ── Utilities ─────────────────────────────────────────────────── */
.text-center   { text-align: center; }
.text-primary  { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted    { color: var(--muted); }
.fw-bold       { font-weight: 700; }
