/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a1a1a;
  --orange: #C8A96E;
  --light:  #f5f5f5;
  --white:  #ffffff;
  --gray:   #6b7280;
  --dark:   #111827;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--gray); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-alt { background: var(--light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #b09055; }
.btn-outline  { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #2a2a2a; }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img  { height: 48px; width: auto; }
.nav-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .5px;
}
.nav-logo span em { color: var(--orange); font-style: normal; }

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav-links a {
  color: #cbd5e1;
  font-size: .82rem;
  font-weight: 500;
  transition: color .2s;
  letter-spacing: .2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--navy);
  min-width: 180px;
  border-top: 2px solid var(--orange);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, visibility 0s linear .15s;
}
.dropdown-menu a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .15s ease, visibility 0s linear 0s;
}

/* External links in dropdown */
.dropdown-menu a.dropdown-external {
  color: var(--orange);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dropdown-menu a.dropdown-external:hover { color: #e0c080; }

/* Invisible bridge fills the gap between nav link and dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-cta { margin-left: 1rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/drone-9.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p  { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--orange);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-num  { font-size: 2.25rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 60%, #2a2a2a 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: #94a3b8; margin-top: .75rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: .5rem; }
.service-card a { color: var(--orange); font-size: .875rem; font-weight: 600; margin-top: .75rem; display: inline-block; }
.service-card a:hover { text-decoration: underline; }

/* ===== PHOTO SERVICE CARDS ===== */
.service-card-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s, box-shadow .2s;
  background: var(--navy);
}
.service-card-photo:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.service-card-photo .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}
.service-card-photo:hover .card-bg { transform: scale(1.05); }
.service-card-photo .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%);
}
.service-card-photo .card-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.service-card-photo h3 { color: var(--white); margin-bottom: .4rem; }
.service-card-photo p  { color: rgba(255,255,255,.8); font-size: .875rem; margin: 0; }
.service-card-photo a:not(.btn) { color: var(--orange); font-size: .875rem; font-weight: 600; margin-top: .6rem; display: inline-block; }
/* Buttons on photo cards — always visible regardless of card a override */
.service-card-photo .btn-primary {
  background: #C8A96E;
  color: #1a1a1a;
  border-color: #C8A96E;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
}
.service-card-photo .btn-primary:hover { background: #b09055; border-color: #b09055; color: #1a1a1a; }
.service-card-photo .btn-outline {
  background: transparent;
  border: 1px solid #C8A96E;
  color: #C8A96E;
  padding: .45rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
}
.service-card-photo .btn-outline:hover { background: #C8A96E; color: #1a1a1a; }

/* Sister company CTA banner */
.sister-cta {
  background: var(--navy);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.sister-cta img  { height: 80px; width: auto; object-fit: contain; flex-shrink: 0; }
.sister-cta-text { flex: 1; min-width: 240px; }
.sister-cta-text h3 { color: var(--white); margin-bottom: .5rem; }
.sister-cta-text p  { color: #94a3b8; font-size: .9rem; margin: 0; }

/* ===== PROJECTS GRID ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.project-img {
  height: 220px;
  overflow: hidden;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-img img { transform: scale(1.05); }
.project-info { padding: 1.25rem; }
.project-tag {
  display: inline-block;
  background: #f8f3ea;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .65rem;
  border-radius: 20px;
  margin-bottom: .5rem;
}
.project-info h3 { margin-bottom: .25rem; }

/* ===== TWO-COLUMN CONTENT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.content-label {
  display: inline-block;
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.content-block h2 { margin-bottom: 1rem; }
.content-block p  { margin-bottom: 1rem; }

/* ===== CHECKLIST ===== */
.checklist { margin: 1.25rem 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .4rem 0;
  color: var(--gray);
  font-size: .95rem;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: #94a3b8; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== TRUST / CREDENTIALS BAR ===== */
.trust-bar {
  background: #111111;
  border-top: 1px solid rgba(200,169,110,.2);
  border-bottom: 1px solid rgba(200,169,110,.2);
  padding: .9rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .6rem;
}
.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.trust-item span {
  font-size: .78rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: .4px;
  white-space: nowrap;
}

/* ===== REGION GRID ===== */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.region-card {
  background: #1a1a1a;
  border: 1px solid rgba(200,169,110,.35);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.region-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.region-card h4 {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .4rem;
}
.region-card p {
  font-size: .8rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* ===== SOLAR CALCULATOR ===== */
.solar-calc {
  background: #111111;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.solar-calc h3 { color: var(--white); margin-bottom: .35rem; }
.solar-calc > p { color: #94a3b8; font-size: .9rem; margin-bottom: 2rem; }
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.calc-input-row label { color: #e2e8f0; font-size: .875rem; font-weight: 600; white-space: nowrap; }
.calc-input-row input[type=range] {
  flex: 1;
  min-width: 180px;
  accent-color: var(--orange);
  height: 4px;
  cursor: pointer;
}
.calc-bill-display {
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  padding: .4rem .9rem;
  border-radius: 6px;
  min-width: 80px;
  text-align: center;
}
.calc-results {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.calc-result-card {
  background: #1a1a1a;
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}
.calc-result-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .35rem;
}
.calc-result-label {
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.calc-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .825rem;
  color: #64748b;
}
.calc-note a { color: var(--orange); }

/* ===== PHOTO SERVICE GRID (commercial/industrial) ===== */
.photo-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.photo-service-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}
.photo-service-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.photo-service-tile:hover img { transform: scale(1.06); }
.photo-service-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 60%);
}
.photo-service-tile .tile-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.photo-service-tile .tile-sub {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-top: .2rem;
}

/* ===== LIGHTBOX ===== */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: lbFade .2s ease;
}
#lb-overlay.lb-open { display: flex; }
@keyframes lbFade { from { opacity:0; } to { opacity:1; } }
#lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
#lb-caption {
  color: #e2e8f0;
  font-size: 1rem;
  margin-top: .75rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}
#lb-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  z-index: 10000;
  padding: .25rem .5rem;
  transition: opacity .2s;
}
#lb-close:hover { opacity: .7; }
#lb-prev, #lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  padding: .6rem 1rem;
  border-radius: 4px;
  transition: background .2s;
  z-index: 10000;
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
#lb-prev:hover, #lb-next:hover { background: rgba(200,169,110,.2); }
#lb-counter {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: #94a3b8;
  font-size: .8rem;
}
.lb-trigger { cursor: zoom-in; }

@media (max-width: 680px) {
  .calc-results { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: .1rem 1rem; }
  #lb-prev { left: .25rem; padding: .5rem .7rem; }
  #lb-next { right: .25rem; padding: .5rem .7rem; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: #f8f3ea;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail strong { display: block; font-size: .85rem; color: var(--dark); }
.contact-detail span   { color: var(--gray); font-size: .9rem; }

/* Form */
.contact-form { background: var(--light); border-radius: 8px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer {
  background: #111111;
  color: #94a3b8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: .75rem; }
.footer-brand .nav-logo span { font-size: 1.3rem; }
.footer-col h4 { color: var(--white); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .8rem;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.value-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
}
.value-card h3 { margin-bottom: .5rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card { text-align: center; }
.team-img {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 auto 1rem;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: .2rem; }
.team-card span { color: var(--orange); font-size: .85rem; font-weight: 600; }

/* ===== SOLAR PAGE ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.process-step h3 { margin-bottom: .5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col      { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links   { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-toggle  { display: flex; }
  .nav-cta     { display: none; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .projects-grid { grid-template-columns: 1fr; }
}
