/* =============================================================
   EXILOR TECHNOLOGIES — MAIN STYLESHEET
   Light theme · Electric Blue · Bricolage Grotesque + DM Sans
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --bg:           #ffffff;
  --bg-soft:      #f4f7fc;
  --bg-dark:      #0a0f1e;
  --bg-dark2:     #0f1628;
  --text:         #0a0f1e;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --accent:       #2563eb;
  --accent-dark:  #1d4ed8;
  --accent-dim:   rgba(37, 99, 235, 0.08);
  --accent-dim2:  rgba(37, 99, 235, 0.15);
  --border:       #e5e7eb;
  --border-dark:  #1e2a45;
  --card:         #ffffff;
  --card-soft:    #f9fafb;
  --whatsapp:     #25d366;
  --whatsapp-dark:#1da851;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 6px rgba(0,0,0,0.07), 0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
}

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
}
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; letter-spacing: -2px; }
h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.7; }

/* ─── LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
section.section-sm { padding: 64px 0; }
section.section-lg { padding: 120px 0; }

/* ─── SECTION LABELS ─── */
.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.label-white { color: rgba(255,255,255,0.6); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: all 0.2s; letter-spacing: 0.2px; white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}
.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark); color: #fff;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-section .btn-group { justify-content: center; }

/* ─── TOPBAR ─── */
.site-topbar {
  background: var(--bg-dark);
  padding: 9px 0;
  font-size: 13px; color: rgba(255,255,255,0.55);
  border-bottom: 1px solid var(--border-dark);
}
.site-topbar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.site-topbar a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.site-topbar a:hover { color: var(--accent); }
.topbar-right { display: flex; gap: 24px; }

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.04);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.site-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--text); letter-spacing: -0.5px; flex-shrink: 0;
}
.site-logo span { color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.current { color: var(--text); background: var(--bg-soft); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 18px !important; border-radius: 8px !important;
  font-weight: 700 !important; font-family: var(--font-display);
}
.nav-cta:hover { background: var(--accent-dark) !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px; background: var(--bg-soft);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--bg); padding: 24px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end; font-size: 28px; color: var(--text-muted);
  background: none; border: none; cursor: pointer; padding: 4px 10px;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-nav-links a {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--text); padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 0; font-size: 13px; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-light); }
.breadcrumb .current { color: var(--accent); }

/* ─── HERO — HOMEPAGE ─── */
.hero-home {
  background: var(--bg-dark);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-home h1 { color: #fff; margin-bottom: 20px; }
.hero-home h1 .hl { color: var(--accent); }
.hero-home .hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 540px; margin-bottom: 36px; line-height: 1.7;
}
.hero-home .hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--border-dark);
}
.hero-stat .num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ─── HERO — SERVICE PAGES ─── */
.hero-service {
  background: var(--bg-dark);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero-service::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-service h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin-bottom: 16px; }
.hero-service h1 .hl { color: var(--accent); }
.hero-service .hero-sub { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 580px; margin-bottom: 32px; }
.hero-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-service-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 24px 20px;
}
.stat-card .num {
  font-family: var(--font-display); font-size: 38px; font-weight: 800;
  color: var(--accent); letter-spacing: -2px; line-height: 1;
}
.stat-card .lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; line-height: 1.4; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ─── SERVICE CARDS — HOMEPAGE ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
}
.service-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all 0.25s; position: relative; overflow: hidden;
  text-decoration: none;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .icon {
  width: 52px; height: 52px;
  background: var(--accent-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.service-card h3 { color: var(--text); margin-bottom: 10px; font-size: 18px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-card .card-link {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--accent); display: flex; align-items: center; gap: 6px;
}

/* ─── WHY CHOOSE SECTION ─── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 24px; height: 24px; background: var(--accent-dim);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.why-check svg { width: 12px; height: 12px; stroke: var(--accent); fill: none; stroke-width: 2.5; }
.why-item strong { font-family: var(--font-display); font-size: 15px; color: var(--text); display: block; margin-bottom: 3px; }
.why-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ─── PROCESS STEPS ─── */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  color: var(--accent); letter-spacing: 1px; width: 36px; flex-shrink: 0; padding-top: 2px;
}
.step-body h3 { font-size: 16px; color: var(--text); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.faq-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.faq-card h3 { font-size: 15px; color: var(--text); margin-bottom: 10px; font-family: var(--font-display); }
.faq-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── CTA BLOCK — INLINE (within page) ─── */
.cta-block {
  background: var(--bg-dark);
  border-radius: var(--radius-lg); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 32px; font-size: 16px; }

/* ─── CTA SECTION — FULL WIDTH ─── */
.cta-section {
  background: var(--bg-dark); padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.55); font-size: 17px; max-width: 500px; margin: 0 auto 36px; }

/* ─── COVERAGE CHIPS ─── */
.districts-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 12px; margin-top: 40px;
}
.district-chip {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: 14px; color: var(--text); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.district-chip .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.district-chip.hq { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testimonial-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-placeholder {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); height: 400px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 14px; text-align: center;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.value-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.value-icon {
  width: 52px; height: 52px; background: var(--accent-dim);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-form {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: var(--bg-soft); transition: border-color 0.2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-card-icon {
  width: 44px; height: 44px; background: var(--accent-dim);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-card h4 { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 15px; color: var(--text); font-weight: 600; }

/* ─── SERVICE AREAS PAGE ─── */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.area-card {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.area-card h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; }
.area-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.area-card.hq { border-color: var(--accent); background: var(--accent-dim); }
.area-card.hq h3 { color: var(--accent); }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.blog-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.25s;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); background: var(--accent-dim);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.blog-card h3 { font-size: 17px; color: var(--text); margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-muted); }

/* ─── FLOATING MOBILE CTA ─── */
.floating-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--bg); border-top: 1.5px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.floating-cta-inner { display: flex; gap: 10px; }
.floating-cta .btn { flex: 1; justify-content: center; font-size: 13px; padding: 12px 16px; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo-footer {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: #fff; margin-bottom: 14px; display: block;
}
.footer-brand .logo-footer span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-brand .footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-brand .footer-contact a {
  font-size: 14px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px;
}
.footer-brand .footer-contact a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-keywords { font-size: 11px; color: rgba(255,255,255,0.15); }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-soft { background: var(--bg-soft); }
.bg-dark { background: var(--bg-dark); }
.border-top { border-top: 1px solid var(--border); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-service-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  h1 { font-size: clamp(32px, 8vw, 48px); }
  h2 { font-size: clamp(26px, 6vw, 36px); }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .floating-cta { display: block; }
  body { padding-bottom: 72px; }
  .hero-home .hero-stats { gap: 24px; }
  .cta-block { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-service-stats { grid-template-columns: 1fr 1fr; }
  .districts-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── IMAGE SLOTS ─── */
.img-slot {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  position: relative;
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; min-height: 320px; gap: 12px;
  color: var(--text-light); font-size: 13px; text-align: center; padding: 24px;
}
.img-slot .img-placeholder svg { opacity: 0.25; }

/* Hero image slot — sits right of hero text */
.hero-img-slot {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 340px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.hero-img-slot .img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; min-height: 340px; gap: 12px; padding: 24px;
  color: rgba(255,255,255,0.2); font-size: 12px; text-align: center;
}

/* Project photo grid */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.photo-grid .img-slot { min-height: 200px; }
.photo-grid .img-slot.tall { grid-row: span 2; min-height: 420px; }

/* Side-by-side with text */
.content-with-image { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-with-image.image-left { direction: rtl; }
.content-with-image.image-left > * { direction: ltr; }

@media(max-width: 768px) {
  .content-with-image { grid-template-columns: 1fr; gap: 36px; }
  .content-with-image.image-left { direction: ltr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .img-slot.tall { grid-row: span 1; min-height: 200px; }
}
@media(max-width: 500px) {
  .photo-grid { grid-template-columns: 1fr; }
}

/* ─── SOCIAL ICONS ─── */
.social-icons {
  display: flex; gap: 10px; align-items: center;
}
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── LOGO IMAGE ─── */
.site-logo-img { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-img img { height: 40px; width: auto; display: block; }

/* Footer logo image */
.footer-logo-img { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer-logo-img img { height: 36px; width: auto; display: block; }

/* ─── DISTRICT WHATSAPP LINK ─── */
.area-wa-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13px; font-weight: 600;
  color: #25d366;
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  width: 100%;
  transition: opacity 0.15s;
}
.area-wa-link:hover { opacity: 0.75; }
.area-wa-link svg { flex-shrink: 0; }

/* HQ badge inside district heading */
.hq-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 2px 7px; border-radius: 20px;
  vertical-align: middle; margin-left: 6px;
  position: relative; top: -1px;
}

/* ─── CONTACT ACTION BUTTONS (hero row) ─── */
.contact-action-row {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px;
}
.contact-action-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1; min-width: 180px;
}
.contact-action-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.contact-action-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-action-icon.wa  { background: #25d366; }
.contact-action-icon.maps { background: #ea4335; }
.contact-action-text { display: flex; flex-direction: column; gap: 2px; }
.contact-action-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.contact-action-value {
  font-size: 15px; font-weight: 600; color: #fff;
}
@media(max-width: 640px) {
  .contact-action-row { flex-direction: column; }
  .contact-action-btn { min-width: unset; }
}

/* ─── GET A QUOTE PAGE ─── */
.quote-grid {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: flex-start;
}
.quote-form-wrap { background: var(--bg); }
.quote-trust-panel { position: sticky; top: 100px; }
.quote-trust-box {
  background: var(--bg-soft); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.quote-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-light);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
@media(max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-trust-panel { position: static; }
}

/* ─── BTN SECONDARY (outlined) ─── */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text); transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-dim);
}
