/* =========================================================
   GAES - Gezer Altyapı Elektrik Sistemleri
   ========================================================= */

:root{
  --black: #f6f7fa;
  --dark: #ffffff;
  --dark-2: #ffffff;
  --dark-3: #eef0f4;
  --line: #e2e4ea;
  --text: #262a33;
  --text-dim: #5b6270;
  --text-dimmer: #8b90a0;
  --gold: #c17d1a;
  --gold-2: #96570a;
  --gold-dim: #cba86e;
  --white: #12141a;
  --success: #1f9d5c;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(20,22,35,.10);
  --surface-rgb: 255,255,255; /* RGB triplet matching --black, for translucent overlays (header bg, hero fade) */
  --hero-photo-opacity: .68;
  --hero-fade-1: .28; /* top-of-hero overlay strength */
  --hero-fade-2: .58; /* mid-hero overlay strength, before fading to solid --black */
  --container: 1180px;
  --header-h: 82px;
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-weight:700; line-height:1.2; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding: 0 24px;
}

/* ---------- utility ---------- */
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.text-center{ text-align:center; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 26px; height: 2px;
  background: var(--gold);
  display:inline-block;
}
.section-title{
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.section-desc{
  color: var(--text-dim);
  max-width: 640px;
  font-size: 16px;
}
.section-head{ margin-bottom: 52px; }
.section-head.centered{ text-align:center; }
.section-head.centered .section-desc{ margin: 0 auto; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245,185,66,.1);
  border: 1px solid rgba(245,185,66,.35);
  color: var(--gold-2);
  font-size: 12.5px;
  font-weight: 600;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #191204;
  box-shadow: 0 8px 24px rgba(245,185,66,.25);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(245,185,66,.35); }
.btn-outline{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-dark{
  background: var(--dark-3);
  color: var(--white);
  border-color: var(--line);
}
.btn-dark:hover{ border-color: var(--gold); color: var(--gold-2); }
.btn-block{ width:100%; }
.btn-sm{ padding: 11px 20px; font-size: 13.5px; }
.btn-wa{
  background: #25D366;
  color: #06210f;
}
.btn-wa:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.3); }

/* =========================================================
   HEADER
   ========================================================= */
.topbar{
  background: var(--dark);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}
.topbar .container{
  display:flex;
  align-items:center;
  height: 40px;
}
.topbar-left{ display:flex; align-items:center; gap:22px; }
.topbar a{ display:flex; align-items:center; gap:7px; }
.topbar a:hover{ color: var(--gold-2); }
.topbar svg{ width:14px; height:14px; color: var(--gold); }

header.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(var(--surface-rgb),.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* the header carries more items (logo+name, 8 nav links, call + WhatsApp) than
   the 1180px content container can fit; give it a wider stage of its own */
header.site-header .container{ max-width: 1440px; }
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: var(--header-h);
  gap: 18px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{ height: 46px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text b{ font-size:28px; font-weight:800; letter-spacing:1.5px; line-height:1; color:var(--white); }

nav.main-nav ul{ display:flex; align-items:center; gap:1px; flex-shrink:0; }
nav.main-nav a{
  padding: 9px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s ease;
}
nav.main-nav a:hover{ color: var(--white); background: var(--dark-2); }
nav.main-nav a.active{ color: #191204; background: var(--gold-2); }

.header-cta{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.menu-toggle{
  display:none;
  width: 44px; height:44px;
  border-radius: 10px;
  background: var(--dark-2);
  border:1px solid var(--line);
  align-items:center; justify-content:center;
  flex-direction:column; gap:4px;
}
.menu-toggle span{ width:20px; height:2px; background:var(--white); border-radius:2px; transition: all .25s ease; }
.menu-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background: var(--black);
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  opacity: var(--hero-photo-opacity);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(245,185,66,.12), transparent 60%),
    linear-gradient(180deg, rgba(var(--surface-rgb),var(--hero-fade-1)) 0%, rgba(var(--surface-rgb),var(--hero-fade-2)) 60%, var(--black) 100%);
}
.hero-content{ position:relative; z-index:2; padding: 60px 0 40px; }
.hero-content h1{
  font-size: clamp(34px, 5.4vw, 64px);
  color: var(--white);
  letter-spacing: -1px;
  max-width: 820px;
  margin-bottom: 22px;
}
.hero-content h1 em{
  font-style:normal;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p.lead{
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom: 56px; }

.hero-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  max-width: 880px;
}
.hero-stats .stat{ padding-right: 20px; padding-left: 20px; border-right: 1px solid var(--line); }
.hero-stats .stat:first-child{ padding-left: 0; }
.hero-stats .stat:last-child{ border-right:none; }
.hero-stats .stat b{ display:block; font-size: 26px; color: var(--gold-2); margin-bottom:4px; }
.hero-stats .stat span{ font-size: 12.5px; color: var(--text-dimmer); line-height:1.4; display:block; }

/* small page hero (inner pages) */
.page-hero{
  position:relative;
  padding: 170px 0 70px;
  background: var(--dark);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(50% 70% at 85% 0%, rgba(245,185,66,.10), transparent 60%);
}
.page-hero .container{ position:relative; z-index:1; }
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size: 13.5px; color: var(--text-dimmer);
  margin-bottom: 18px;
}
.breadcrumb a:hover{ color: var(--gold-2); }
.breadcrumb .sep{ color: var(--line); }
.breadcrumb .current{ color: var(--gold-2); }
.page-hero h1{
  font-size: clamp(30px, 4.6vw, 48px);
  color: var(--white);
  letter-spacing:-1px;
  max-width: 700px;
}
.page-hero p{
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 16px;
  font-size: 16px;
}

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  scroll-margin-top: 110px;
  transition: all .25s ease;
  position:relative;
}
.card:hover{ transform: translateY(-6px); border-color: rgba(245,185,66,.4); box-shadow: var(--shadow); }
/* unscoped so every .icon-box (mv-card, value-item, contact-row, etc.) gets
   sane default sizing - without this, a bare <svg viewBox="..."> with no
   width/height falls back to the browser's intrinsic default (~300x150) */
.icon-box{
  width:54px; height:54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,185,66,.18), rgba(245,185,66,.05));
  border: 1px solid rgba(245,185,66,.3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box svg{ width:26px; height:26px; color: var(--gold-2); flex-shrink:0; }
.card h3{ font-size: 18.5px; color: var(--white); margin-bottom: 10px; }
.card p{ color: var(--text-dim); font-size: 14.5px; }
.card .num{
  position:absolute; top:24px; right:26px;
  font-size: 13px; font-weight:700; color: var(--text-dimmer);
}

.card-link{
  margin-top:18px; display:inline-flex; align-items:center; gap:6px;
  font-size:13.5px; font-weight:600; color: var(--gold-2);
}
.card-link svg{ width:14px; height:14px; transition: transform .2s ease; }
.card:hover .card-link svg{ transform: translateX(4px); }

/* services on dark background section variant */
.section-alt{ background: var(--dark); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.split.reverse .split-media{ order:2; }
.split-media{ position:relative; }
.split-media .frame{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-media img{ width:100%; height: 420px; object-fit:cover; }
.split-media .badge-float{
  position:absolute; bottom:-22px; left:-22px;
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display:flex; align-items:center; gap:14px;
  box-shadow: var(--shadow);
}
.split-media .badge-float .icon-box{ margin:0; width:44px; height:44px; }
.split-media .badge-float b{ display:block; color:var(--white); font-size:20px; }
.split-media .badge-float span{ font-size:12px; color:var(--text-dimmer); }

.check-list{ display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.check-list li{ display:flex; align-items:flex-start; gap:12px; color: var(--text-dim); font-size:14.5px; }
.check-list li svg{ width:20px; height:20px; color: var(--success); flex-shrink:0; margin-top:1px; }
.check-list li b{ color: var(--white); font-weight:600; }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step{ position:relative; padding-top: 8px; }
.step::before{
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-size: 42px;
  font-weight:800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  display:block;
  margin-bottom: 14px;
}
.step h4{ color:var(--white); font-size:16.5px; margin-bottom:8px; }
.step p{ color:var(--text-dim); font-size:14px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  padding: 64px 56px;
  background: linear-gradient(120deg, var(--dark-2), var(--dark));
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  flex-wrap:wrap;
}
.cta-banner::before{
  content:"";
  position:absolute; right:-60px; top:-60px;
  width:260px; height:260px; border-radius:50%;
  background: radial-gradient(circle, rgba(245,185,66,.18), transparent 70%);
}
.cta-banner h2{ font-size: clamp(22px,3vw,32px); color:var(--white); margin-bottom:10px; max-width:520px; }
.cta-banner p{ color: var(--text-dim); max-width:480px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; position:relative; z-index:1; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item{
  position:relative;
  border-radius: var(--radius-sm);
  overflow:hidden;
  aspect-ratio: 4/3.2;
  border: 1px solid var(--line);
  background: var(--dark-2);
  cursor:pointer;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item .tag{
  position:absolute; left:12px; bottom:12px;
  font-size:12px; font-weight:600; color:var(--white);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius:999px;
  opacity:0; transform: translateY(6px);
  transition: all .25s ease;
}
.gallery-item:hover .tag{ opacity:1; transform:translateY(0); }
.gallery-item.big{ grid-column: span 2; grid-row: span 2; }

.gallery-item.placeholder{
  display:flex; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(135deg, var(--dark-2) 0 14px, var(--dark-3) 14px 28px);
}
.gallery-item.placeholder .ph-inner{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--text-dimmer);
  text-align:center;
  padding: 10px;
}
.gallery-item.placeholder svg{ width:30px; height:30px; color: var(--gold-dim); }
.gallery-item.placeholder span{ font-size:12px; font-weight:600; letter-spacing:.3px; }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000;
  background: rgba(5,6,8,.94);
  display:none; align-items:center; justify-content:center;
  padding: 40px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 90vw; max-height:85vh; border-radius:10px; box-shadow:0 20px 60px rgba(0,0,0,.6); }
.lightbox .close-btn{
  position:absolute; top:26px; right:32px;
  width:46px; height:46px; border-radius:50%;
  background: var(--dark-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
}
.lightbox .close-btn svg{ width:20px; height:20px; }

/* =========================================================
   EQUIPMENT
   ========================================================= */
.equip-card{
  background: var(--dark-2);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  transition: all .25s ease;
}
.equip-card:hover{ transform: translateY(-6px); border-color: rgba(245,185,66,.4); box-shadow: var(--shadow); }
.equip-card .media{ height: 230px; overflow:hidden; position:relative; background:var(--dark-3); }
.equip-card .media img{ width:100%; height:100%; object-fit:cover; }
.equip-card .media .status{
  position:absolute; top:14px; left:14px;
  font-size:11.5px; font-weight:700; letter-spacing:.4px;
  padding: 6px 12px; border-radius:999px;
  background: rgba(53,196,113,.15); color:#5be595; border:1px solid rgba(53,196,113,.4);
  display:flex; align-items:center; gap:6px;
}
.equip-card .media .status::before{ content:""; width:6px; height:6px; border-radius:50%; background:#5be595; }
.equip-card .body{ padding: 24px 24px 26px; }
.equip-card h3{ color:var(--white); font-size:18px; margin-bottom:6px; }
.equip-card .cat{ color:var(--gold-2); font-size:12.5px; font-weight:600; letter-spacing:.4px; text-transform:uppercase; margin-bottom:12px; display:block; }
.equip-card p{ color:var(--text-dim); font-size:14px; }
.equip-card.placeholder .media{
  display:flex; align-items:center; justify-content:center;
  background: repeating-linear-gradient(135deg, var(--dark-2) 0 14px, var(--dark-3) 14px 28px);
}
.equip-card.placeholder .media svg{ width:44px; height:44px; color: var(--gold-dim); }

/* =========================================================
   VALUES / MISSION-VISION
   ========================================================= */
.mv-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap:26px; }
.mv-card{
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--line);
}
.mv-card.gold{ background: linear-gradient(150deg, rgba(245,185,66,.14), rgba(245,185,66,.02)); border-color: rgba(245,185,66,.3); }
.mv-card.dark{ background: var(--dark-2); }
.mv-card .icon-box{ margin-bottom:18px; }
.mv-card h3{ color:var(--white); font-size:21px; margin-bottom:12px; }
.mv-card p{ color:var(--text-dim); font-size:15px; }

.values-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.value-item{ text-align:center; padding: 30px 18px; }
.value-item .icon-box{ margin: 0 auto 16px; }
.value-item h4{ color:var(--white); font-size:15.5px; margin-bottom:8px; }
.value-item p{ color:var(--text-dim); font-size:13px; }

/* =========================================================
   TIMELINE (kurumsal)
   ========================================================= */
.timeline{ position:relative; padding-left: 34px; }
.timeline::before{ content:""; position:absolute; left:8px; top:6px; bottom:6px; width:1px; background: var(--line); }
.timeline-item{ position:relative; padding-bottom: 34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-34px; top:2px;
  width:17px; height:17px; border-radius:50%;
  background: var(--dark); border:2px solid var(--gold);
}
.timeline-item h4{ color:var(--white); font-size:16px; margin-bottom:6px; }
.timeline-item p{ color:var(--text-dim); font-size:14px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: 1.1fr 1.4fr; gap: 40px; }
.contact-info-card{
  background: var(--dark-2); border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px;
}
.contact-row{ display:flex; gap:16px; padding: 18px 0; border-bottom:1px solid var(--line); }
.contact-row:last-child{ border-bottom:none; padding-bottom:0; }
.contact-row:first-child{ padding-top:0; }
.contact-row .icon-box{ width:46px; height:46px; flex-shrink:0; margin-bottom:0; }
.contact-row .icon-box svg{ width:22px; height:22px; }
.contact-row h4{ color:var(--white); font-size:14.5px; margin-bottom:4px; }
.contact-row p, .contact-row a{ color:var(--text-dim); font-size:14px; }
.contact-row a:hover{ color: var(--gold-2); }

.map-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  filter: grayscale(.3) contrast(1.05);
}
.map-frame iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; }

.form-card{
  background: var(--dark-2); border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px;
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.form-grid .full{ grid-column: 1 / -1; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; color:var(--text-dim); font-weight:500; }
.field input, .field select, .field textarea{
  background: var(--dark-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  outline:none;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--gold); }
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size:12.5px; color:var(--text-dimmer); margin-top:14px; }

/* =========================================================
   LOGOS STRIP / PARTNERS
   ========================================================= */
.partners-strip{
  display:flex; align-items:center; justify-content:space-between;
  gap: 30px; flex-wrap:wrap;
  padding: 30px 0;
}
.partners-strip .p-logo{
  color: var(--text-dimmer);
  font-weight:700; font-size: 18px; letter-spacing:1px;
  opacity:.6;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.site-footer{
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding-top: 76px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand img{ height:42px; }
.footer-brand b{ color:var(--white); font-size:18px; }
.footer-col p{ color: var(--text-dim); font-size: 14px; margin-bottom: 22px; }
.footer-col h5{ color:var(--white); font-size:14.5px; margin-bottom:20px; letter-spacing:.4px; text-transform:uppercase; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col ul a{ color:var(--text-dim); font-size:14px; display:flex; align-items:center; gap:8px; }
.footer-col ul a:hover{ color: var(--gold-2); }
.footer-col ul a svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }

.footer-bottom{
  display:flex; align-items:center; justify-content:center;
  padding: 22px 0; gap: 16px; flex-wrap:wrap; text-align:center;
  color: var(--text-dimmer); font-size: 13px;
}
.footer-bottom a:hover{ color: var(--gold-2); }
.footer-bottom-links{ display:flex; gap:22px; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float{
  position:fixed; right:24px; bottom:24px; z-index:900;
  width:60px; height:60px; border-radius:50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg{ width:28px; height:28px; color:#fff; }
.wa-float:hover{ transform: scale(1.07); }
@keyframes wa-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 10px 30px rgba(37,211,102,.45); }
  70%{ box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,.45); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 30px rgba(37,211,102,.45); }
}

/* =========================================================
   MISC
   ========================================================= */
.divider-line{ height:1px; background: var(--line); width:100%; }
.badge-note{
  display:flex; align-items:center; gap:12px;
  background: rgba(245,185,66,.08);
  border: 1px dashed rgba(245,185,66,.4);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 13.5px;
}
.badge-note svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }

/* =========================================================
   SERVICE AREA / DISTRICTS
   ========================================================= */
.district-group{ margin-bottom: 46px; }
.district-group:last-child{ margin-bottom:0; }
.district-group h3{
  color: var(--white); font-size: 19px; margin-bottom: 20px;
  display:flex; align-items:center; gap:10px;
}
.district-group h3 .count{ color: var(--text-dimmer); font-size:13px; font-weight:500; }
.district-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.district-chip{
  display:flex; align-items:center; gap:10px;
  background: var(--dark-2); border:1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; color: var(--text); font-size:14.5px; font-weight:500;
  transition: all .2s ease;
}
.district-chip svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }
.district-chip:hover{ border-color: rgba(245,185,66,.4); transform: translateY(-2px); }
.district-chip.hq{ border-color: var(--gold); background: linear-gradient(150deg, rgba(245,185,66,.14), rgba(245,185,66,.02)); }
.district-chip .hq-tag{
  margin-left:auto; font-size:10px; font-weight:700; letter-spacing:.3px;
  color:var(--gold-2); background: rgba(245,185,66,.15); padding:3px 8px; border-radius:999px;
  white-space:nowrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .values-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .district-grid{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1240px){
  /* 8 nav items + logo + call/WhatsApp buttons don't fit in one row below this;
     switch to the hamburger drawer rather than let them wrap and overlap */
  nav.main-nav{ display:none; }
  .header-cta .btn-outline.call-btn-text{ display:none; }
  .menu-toggle{ display:flex; }
}

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; gap:40px; }
  .split.reverse .split-media{ order:0; }
  .split-media{ margin-bottom: 10px; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); row-gap:24px; }
  .hero-stats .stat:nth-child(2){ border-right:none; }
  .mv-grid{ grid-template-columns: 1fr; }
  .topbar-left a:nth-child(4){ display:none; }
}

@media (max-width: 760px){
  /* the utility bar can't fit phone+email+hours in one row at phone widths;
     that info stays reachable via the WhatsApp float and mobile nav drawer */
  .topbar{ display:none; }
}

@media (max-width: 720px){
  :root{ --header-h: 72px; }
  .section{ padding: 64px 0; }
  .section-tight{ padding: 46px 0; }
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .district-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-item.big{ grid-column: span 2; grid-row: span 1; }
  .steps{ grid-template-columns: 1fr; }
  .values-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr; gap:30px; }
  .hero{ min-height: auto; padding-top: 40px; }
  .hero-content{ padding: 40px 0 30px; }
  .hero-actions .btn{ width:100%; }
  .cta-banner{ flex-direction:column; align-items:flex-start; padding: 40px 26px; }
  .form-grid{ grid-template-columns: 1fr; }
  .page-hero{ padding: 140px 0 50px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .wa-float{ width:54px; height:54px; right:16px; bottom:16px; }
}

@media (max-width: 480px){
  .container{ padding: 0 18px; }
  .brand img{ height:38px; }
  .brand-text b{ font-size:22px; }
  .hero-content h1{ font-size: 30px; }
  .card{ padding: 26px 20px; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); gap:12px; }
}

/* mobile nav drawer */
.mobile-nav{
  position: fixed; inset: 0 0 0 auto;
  width: min(84vw, 340px);
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid var(--line);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s ease;
  display:flex; flex-direction:column;
  padding: 26px 24px;
  overflow-y:auto;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 30px; }
.mobile-nav-top .close-btn{
  width:40px; height:40px; border-radius:10px; background:var(--dark-2); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.mobile-nav-top .close-btn svg{ width:18px; height:18px; color:var(--white); }
.mobile-nav ul{ display:flex; flex-direction:column; gap:4px; }
.mobile-nav a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 15px 6px; font-size:16px; font-weight:500; color:var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.active{ color: var(--gold-2); }
.mobile-nav-foot{ margin-top:auto; padding-top:24px; display:flex; flex-direction:column; gap:12px; }
.scrim{
  position:fixed; inset:0; background: rgba(0,0,0,.55); z-index:900;
  opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.scrim.open{ opacity:1; pointer-events:auto; }

/* reveal-on-scroll (progressive enhancement: JS adds .pending before observing,
   so content stays visible by default if JS fails to load or run) */
[data-reveal]{ transition: opacity .7s ease, transform .7s ease; }
[data-reveal].pending{ opacity:0; transform: translateY(24px); }
[data-reveal].pending.in{ opacity:1; transform:none; }
