/* Prospec & Design — site styles */
:root {
  --navy: #0d1b3a;
  --navy-2: #0a1530;
  --navy-3: #142552;
  --green: #27ae60;
  --green-2: #1f9551;
  --green-soft: #e8f6ee;
  --ink: #1a2238;
  --ink-2: #4a5570;
  --line: #e6e8ee;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-cream: #faf8f4;
  --max: 1280px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv11', 'ss01';
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.05; margin: 0; color: var(--ink); }
h1 { font-size: clamp(44px, 5.6vw, 76px); font-weight: 800; }
h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 800; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }

.green-text { color: var(--green); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(39, 174, 96, 0.45);
}
.btn-primary:hover { background: var(--green-2); transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-3); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-links a:hover { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.lang-toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-2);
}
.lang-toggle button.active { background: var(--navy); color: #fff; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 20px -8px rgba(39,174,96,.5);
}
.wa-btn:hover { background: var(--green-2); }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.04em;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 4px;
  background: var(--navy);
  border-radius: 0 0 11px 11px;
}
.logo-text { line-height: 1.05; display: flex; flex-direction: column; gap: 4px; }
.logo-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.logo-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-tag { color: var(--green); }

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 720px;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green);
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--green);
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 800;
  margin: 24px 0 28px;
  letter-spacing: -0.025em;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-num { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat-num .green-text { color: var(--green); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 220px 24px 24px 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hero-badge-text { font-size: 13px; color: var(--ink-2); }
.hero-badge-text strong { display: block; color: var(--ink); font-size: 14px; font-weight: 700; }

/* Section spacing */
.section { padding: 120px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2 { color: #fff; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px;
}
.section-head-stack { max-width: 640px; }
.section-head h2 { margin-top: 16px; }
.section-head p { color: var(--ink-2); margin-top: 18px; max-width: 520px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(13,27,58,0.18);
}
.service-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--green);
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--green);
  margin-bottom: 24px;
  transition: all .25s ease;
}
.service-card:hover .service-icon { background: var(--green); color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.service-link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green);
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 30px -10px rgba(39,174,96,0.5);
}
.about-image-tag .num { font-size: 28px; line-height: 1; }
.about-image-tag .lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: .9; }
.about-text h2 { margin: 16px 0 28px; }
.about-text p { color: var(--ink-2); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.about-bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 32px;
}
.about-bullet {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.about-bullet .dot {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  width: 56px; height: 56px;
  border: 2px solid var(--green);
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}
.why-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.why-item p { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.65; }
.why-side h2 { color: #fff; margin: 16px 0 24px; }
.why-side p { color: rgba(255,255,255,0.65); margin-bottom: 28px; max-width: 420px; }

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
}
.project-card.tall { grid-row: span 2; }
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,58,0.85) 0%, rgba(13,27,58,0) 50%);
  display: flex; align-items: end; padding: 22px;
  opacity: 0;
  transition: opacity .3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
  font-size: 11px; font-weight: 700; color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.project-title { color: #fff; font-weight: 700; font-size: 17px; margin-top: 4px; }

/* SERVICE AREA */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-cities {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 36px;
}
.area-city {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
}
.area-city:hover { border-color: var(--green); }
.area-city .pin {
  color: var(--green);
}
.area-map {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  place-items: center;
}
.area-map svg { width: 100%; height: 100%; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field { margin-bottom: 16px; }

.contact-info { padding: 12px 0; }
.contact-info h2 { margin: 16px 0 28px; }
.contact-info p.lead { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 440px; }
.contact-block {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-block .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.contact-block .val { font-size: 17px; font-weight: 600; color: var(--ink); }

/* FOOTER */
footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about { margin-top: 20px; font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 22px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14.5px; }
.footer ul a:hover { color: var(--green); }
.footer-contact-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}
.footer-contact-line svg { color: var(--green); flex-shrink: 0; }
.socials { display: flex; gap: 10px; margin-top: 28px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s;
}
.socials a:hover { background: var(--green); border-color: var(--green); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.licensed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* === MULTI-PAGE ADDITIONS === */

/* Services dropdown in nav */
.nav-item { position: relative; }
.nav-item .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 6px 0; cursor: pointer;
  background: none; border: 0;
}
.nav-item .nav-trigger:hover { color: var(--green); }
.nav-item .nav-trigger.active { color: var(--green); }
.nav-dropdown {
  position: absolute; top: 100%; left: -20px; padding-top: 14px; margin-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  min-width: 280px;
  box-shadow: 0 24px 60px -20px rgba(13,27,58,0.22);
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { display: flex; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: background .15s;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--green); }
.nav-dropdown a .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-dropdown-foot {
  margin-top: 8px; padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-2);
}
.nav-dropdown-foot a {
  display: inline; padding: 0; color: var(--green); font-weight: 600;
}
.nav-link.active { color: var(--green); }

/* Hamburger / mobile */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(13,27,58,0.96);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding: 28px;
  display: none;
  flex-direction: column;
  color: #fff;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mobile-menu .close-btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 18px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu .submenu {
  display: flex; flex-direction: column;
  margin: 8px 0 16px 16px;
  border-left: 2px solid rgba(39,174,96,0.4);
  padding-left: 16px;
  gap: 0;
}
.mobile-menu .submenu a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border: 0;
}
.mobile-menu-foot {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}

/* PAGE HERO (sub-pages) */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(39,174,96,0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(39,174,96,0.10), transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.55); }
.page-hero .crumbs a:hover { color: var(--green); }
.page-hero .crumbs .sep { opacity: 0.4; }
.page-hero .crumbs .here { color: var(--green); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  max-width: 900px;
  letter-spacing: -0.025em;
}
.page-hero .lead {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.65;
}
.page-hero .eyebrow { color: var(--green); margin-bottom: 14px; }

/* Section variations */
.section-tight { padding: 80px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-grid.flip { direction: rtl; }
.split-grid.flip > * { direction: ltr; }

/* Process steps (1-2-3-4) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
}
.process-step .num {
  font-size: 14px; font-weight: 800;
  color: var(--green);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
}

/* Service hub grid */
.service-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-hub-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(13,27,58,0.18);
}
.service-hub-card .ic {
  width: 64px; height: 64px;
  border: 2px solid var(--green);
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--green);
  margin-bottom: 24px;
  transition: all .25s;
}
.service-hub-card:hover .ic { background: var(--green); color: #fff; }
.service-hub-card h3 { margin-bottom: 12px; }
.service-hub-card p {
  color: var(--ink-2);
  font-size: 14.5px; line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.service-hub-card .lk {
  color: var(--green);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Service detail layouts */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-detail-grid .body p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 22px;
}
.service-detail-grid .body h3 {
  font-size: 28px;
  margin: 40px 0 18px;
  letter-spacing: -0.02em;
}
.service-detail-grid .body ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.service-detail-grid .body ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px; color: var(--ink);
}
.service-detail-grid .body ul li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-sidebar {
  position: sticky; top: 110px;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
}
.service-sidebar h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}
.service-sidebar p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  margin-bottom: 24px;
  line-height: 1.65;
}
.service-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 16px; }
.service-sidebar-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 14px;
}
.service-sidebar-info > div {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.service-sidebar-info > div svg { color: var(--green); flex-shrink: 0; }

/* Image gallery (service detail + projects) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
}

/* Portfolio gallery (Projects page) */
.portfolio-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.portfolio-filter {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  background: #fff;
  cursor: pointer;
  transition: all .15s;
}
.portfolio-filter:hover { border-color: var(--green); color: var(--green); }
.portfolio-filter.active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card .ovl {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,58,0.92) 0%, rgba(13,27,58,0) 55%);
  display: flex; align-items: end; padding: 20px;
  color: #fff;
  opacity: 0;
  transition: opacity .25s;
}
.portfolio-card:hover .ovl { opacity: 1; }
.portfolio-card .tag {
  font-size: 11px; font-weight: 700; color: var(--green);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.portfolio-card .ttl { font-weight: 700; font-size: 16px; margin-top: 4px; line-height: 1.3; }
.portfolio-card .loc { font-size: 12.5px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Project detail modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(13,27,58,0.88);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}
.modal {
  background: #fff;
  border-radius: 24px;
  max-width: 1080px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  z-index: 5;
  color: var(--ink);
}
.modal-hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.modal-body { padding: 40px 48px 48px; }
.modal-body .tag {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
}
.modal-body h2 { margin: 12px 0 18px; }
.modal-body .meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 16px 0; margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal-body .meta > div { font-size: 13px; }
.modal-body .meta .lbl { color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; font-size: 11px; margin-bottom: 2px; }
.modal-body .meta .val { font-weight: 700; color: var(--ink); font-size: 15px; }
.modal-body p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 28px;
}
.ba-grid figure { margin: 0; }
.ba-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; }
.ba-grid figcaption {
  text-align: center;
  font-size: 11px; font-weight: 800;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 20px 40px -20px rgba(13,27,58,0.18);
}
.blog-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .img img { transform: scale(1.06); }
.blog-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  display: flex; gap: 14px;
  font-size: 12px;
  color: var(--ink-2);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.blog-card .meta .cat {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.blog-card .ex {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.blog-card .author {
  margin-top: 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.blog-card .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* Quote form */
.quote-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
}
.quote-form h3 {
  margin-bottom: 28px;
  font-size: 24px;
}
.fieldgroup {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.fieldgroup:last-of-type { border-bottom: none; padding-bottom: 0; }
.fieldgroup-h {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.fieldgroup-h .step {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid; place-items: center;
}
.fieldgroup-h h4 {
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em;
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  transition: all .15s;
}
.radio-card:hover { border-color: var(--green); }
.radio-card input { accent-color: var(--green); width: 16px; height: 16px; }
.radio-card.sel { border-color: var(--green); background: var(--green-soft); }
.upload-box {
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s;
}
.upload-box:hover { border-color: var(--green); background: var(--green-soft); }
.upload-box svg { color: var(--green); margin-bottom: 12px; }
.upload-box .lbl { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.upload-box .sub { font-size: 13px; }

/* Quote sidebar */
.quote-sidebar {
  display: flex; flex-direction: column; gap: 16px;
  position: sticky; top: 110px;
}
.quote-side-card {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 32px 28px;
}
.quote-side-card h4 { color: #fff; font-size: 18px; margin-bottom: 18px; }
.quote-side-card .pts {
  display: flex; flex-direction: column; gap: 14px;
}
.quote-side-card .pt {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
}
.quote-side-card .pt .ic {
  width: 36px; height: 36px;
  background: rgba(39,174,96,0.18);
  color: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-side-card .pt strong {
  display: block; font-size: 15px; color: #fff; margin-bottom: 4px;
}
.quote-side-card .pt span {
  font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.55;
}

/* Map embed (Contact page) */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA Banner */
.cta-banner {
  background: var(--green);
  color: #fff;
  border-radius: 28px;
  padding: 56px 64px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto;
}
.cta-banner h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 640px;
  line-height: 1.15;
}
.cta-banner .btn {
  background: #fff; color: var(--navy);
}
.cta-banner .btn:hover { background: var(--bg-soft); }

/* About team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card .body { padding: 24px; }
.team-card h4 { font-size: 18px; margin-bottom: 4px; }
.team-card .role {
  font-size: 13px; font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.team-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* Certs */
.certs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.cert-card .ic {
  width: 56px; height: 56px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 14px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
}
.cert-card h5 {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 6px;
}
.cert-card p { font-size: 13px; color: var(--ink-2); }


/* Nav: switch to hamburger only on smaller tablets / phones */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
}
/* Tablet (821-1080px): inline nav, but hide phone button + tagline to fit */
@media (min-width: 768px) and (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 14px; }
  .nav-right .wa-btn { display: none; }
  .logo-text .tag { display: none; }
}

/* small responsive */
@media (max-width: 1080px) {
  .hero-grid, .about-grid, .why-grid, .area-grid, .contact-grid, .footer-grid,
  .split-grid, .service-detail-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid, .service-hub-grid, .blog-grid, .team-grid, .certs-row,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
  .quote-form, .modal-body { padding: 32px; }
  .cta-banner { padding: 40px 32px; }
  .service-sidebar, .quote-sidebar { position: static; }
}
@media (max-width: 640px) {
  .services-grid, .service-hub-grid, .blog-grid, .team-grid, .certs-row,
  .process-grid, .projects-grid, .portfolio-grid, .ba-grid, .radio-grid,
  .form-row, .about-bullets, .area-cities { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .logo-text { display: none; }
  .nav-right .wa-btn { display: none; }
}


/* ============== Multi-page additions ============== */

/* Blog feature card (large) */
.blog-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
}
.blog-feature img {
  width: 100%; height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.blog-feature .body {
  padding: 56px 56px 56px;
  display: flex; flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.blog-feature .meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.blog-feature .meta .cat {
  background: var(--green); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 10.5px;
}
.blog-feature h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em; line-height: 1.15;
}
.blog-feature p {
  color: var(--ink-2); font-size: 16px; line-height: 1.7;
}
@media (max-width: 1080px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature .body { padding: 40px 32px; }
  .blog-feature img { min-height: 260px; aspect-ratio: 16/10; }
}

/* Quote form sections */
.form-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.form-section:last-of-type { border-bottom: 0; }
.form-section h4 {
  font-size: 12px; font-weight: 800;
  color: var(--green);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 22px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin-bottom: 6px;
}

/* Chip row (radio/checkbox pills) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  cursor: pointer; user-select: none;
  transition: all .15s;
}
.chip input { accent-color: var(--green); }
.chip:hover { border-color: var(--green); color: var(--green); }
.chip:has(input:checked) {
  background: var(--green-soft);
  border-color: var(--green);
  color: var(--green-dark);
}

/* Dropzone */
.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 28px;
  border: 2px dashed var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  text-align: center;
  cursor: pointer;
  transition: all .15s;
}
.dropzone:hover { border-color: var(--green); background: var(--green-soft); }
.dropzone svg { color: var(--green); margin-bottom: 12px; }
.dropzone .lbl { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.dropzone .sub { font-size: 12.5px; color: var(--ink-2); }

/* Quote sidebar (dark navy card) */
.quote-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}
.quote-side {
  position: sticky; top: 110px;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
}
.quote-side h4 {
  color: #fff; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 22px;
}
.quote-side .steps { display: flex; flex-direction: column; gap: 18px; }
.quote-side .row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
}
.quote-side .ic {
  width: 36px; height: 36px;
  background: rgba(39,174,96,0.18);
  color: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-side h5 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.quote-side p { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0; }
.quote-side-divider {
  height: 1px; background: rgba(255,255,255,0.12);
  margin: 24px 0 20px;
}
.big-phone {
  display: block;
  font-size: 24px; font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
  margin: 8px 0 4px;
}
.big-phone:hover { color: #fff; }

/* Contact info card */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
}
.contact-form h3 { margin-bottom: 28px; font-size: 24px; letter-spacing: -0.02em; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px;
}
.contact-info-card h4 {
  font-size: 12px; font-weight: 800;
  color: var(--green);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0 0 24px;
}
.info-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 40px; height: 40px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-row .lbl {
  font-size: 11px; font-weight: 800;
  color: var(--ink-2);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 6px;
}
.info-row .val { font-size: 15px; color: var(--ink); line-height: 1.6; font-weight: 600; }
.info-row .val a { color: var(--ink); }
.info-row .val a:hover { color: var(--green); }

/* Map placeholder */
.map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-hero {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--navy) 0%, #142a55 50%, var(--green-dark) 100%);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(39,174,96,0.25), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.04) 0 1px, transparent 1px 60px);
}
.map-hero svg { color: var(--green); position: relative; z-index: 1; }
.map-hero > div { position: relative; z-index: 1; }

/* Service hub icon size fallback */
.service-hub-card .ic { color: var(--green); }
.service-hub-card:hover .ic { color: #fff; }

/* btn-ghost-light fallback */
.btn-ghost-light {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em;
  width: 100%; margin-bottom: 0;
  color: #fff;
}

/* Stack head for about page */
.section-head-stack { display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 1080px) {
  .quote-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-side, .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form, .quote-form { padding: 28px 22px; }
  .blog-feature .body { padding: 28px 22px; }
}
