:root {
  --green: #5B9541;
  --green-light: #9BCF53;
  --green-dark: #1B671D;
  --amber: #EAAA39;
  --amber-hover: #FE9736;
  --navy: #081D41;
  --dark: #1E201D;
  --cream: #FAF8F4;
  --white: #ffffff;
  --gray-mid: #6B7280;
  --gray-light: #E5E7EB;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-pill: 40px;
  --radius-card: 12px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --max-w: 1200px;
  --section-pad: 96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.highlight { color: var(--green-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 600px;
  line-height: 1.7;
}

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.25s;
}
#nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon .material-symbols-outlined { font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 16px; padding: 11px 22px; font-size: 0.88rem; }

.has-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: default;
}
.nav-dd-arrow {
  font-size: 1rem !important;
  transition: transform 0.2s;
}
.has-dropdown:hover .nav-dd-arrow,
.has-dropdown:focus-within .nav-dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 6px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  pointer-events: none;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown:hover .nav-dropdown-menu,
.has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}
.nav-dd-item .material-symbols-outlined { font-size: 1rem; color: var(--green); }
.nav-dd-item:hover {
  background: var(--cream);
  color: var(--navy);
}
#navToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
#navToggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

#mobileOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
}
#mobileOverlay.open { display: block; }

#mobileMenu {
  position: fixed;
  top: 0; right: 0;
  width: min(80vw, 320px);
  height: 100%;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
#mobileMenu.open { transform: translateX(0); }

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
#mobileClose {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
  padding: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--green); }
.mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/above-deck.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,29,65,0.94) 0%, rgba(0,0,0,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 64px 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
}
.hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  font-weight: 500;
}
.trust-tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

#trust-band {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-band-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-band-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.trust-band-icon .material-symbols-outlined { font-size: 1.2rem; }
.trust-band-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.trust-band-text span {
  font-size: 0.78rem;
  color: var(--gray-mid);
}

#services {
  padding: var(--section-pad);
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 52px rgba(0,0,0,0.18); }
.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,29,65,0.9) 0%, rgba(8,29,65,0.28) 55%, transparent 100%);
}
.service-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.service-icon-ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.service-icon-ring .material-symbols-outlined { font-size: 1.15rem; }
.service-card:hover .service-icon-ring {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy);
}
.service-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 14px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--amber);
  transition: gap 0.2s;
}
.service-card-link .material-symbols-outlined { font-size: 0.95rem; }
.service-card:hover .service-card-link { gap: 9px; }

.more-services-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-top: 40px;
  margin-bottom: 14px;
  text-align: center;
}
.more-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.more-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}
.more-service-item:hover { background: var(--white); border-color: var(--green-light); }
.more-service-item .material-symbols-outlined { font-size: 1.1rem; color: var(--green); flex-shrink: 0; }

#pricing {
  padding: var(--section-pad);
  background: var(--cream);
}
.pricing-intro {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-intro .section-sub { margin: 0 auto; }
.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pricing-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-light);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-icon {
  width: 44px; height: 44px;
  background: rgba(91,149,65,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pricing-row-icon .material-symbols-outlined { font-size: 1.2rem; }
.pricing-row-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-row-label strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.pricing-row-label span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.pricing-row-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-mid);
  white-space: nowrap;
  text-align: right;
}
.pricing-row-price strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 24px;
}
.pricing-note a { color: var(--green); font-weight: 600; }

#process {
  padding: var(--section-pad);
  background: var(--white);
}
.process-header {
  text-align: center;
  margin-bottom: 64px;
}
.process-header .section-sub { margin: 0 auto; }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 4px solid var(--white);
  outline: 3px solid var(--green);
  transition: background 0.25s, outline-color 0.25s;
}
.process-step:hover .step-circle { background: var(--navy); outline-color: var(--navy); }
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

#stats {
  padding: var(--section-pad);
  background: var(--navy);
}
.stats-header {
  text-align: center;
  margin-bottom: 56px;
}
.stats-header .section-tag { color: var(--green-light); }
.stats-header .section-heading { color: var(--white); }
.stats-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.25s;
}
.stat-card:hover { background: rgba(255,255,255,0.09); }
.stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--green-light);
  margin-bottom: 10px;
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

#gallery {
  padding: var(--section-pad);
  background: var(--white);
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header .section-sub { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-card);
  position: relative;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-cap {
  position: absolute;
  inset: 0;
  background: rgba(8,29,65,0);
  transition: background 0.3s;
}
.gallery-item:hover .gallery-cap { background: rgba(8,29,65,0.18); }

#testimonials {
  padding: var(--section-pad);
  background: var(--green);
}
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}
.testi-header .section-tag { color: var(--green-light); }
.testi-header .section-heading { color: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 0.94rem;
  color: var(--dark);
  line-height: 1.72;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.testi-area {
  font-size: 0.76rem;
  color: var(--gray-mid);
}

#areas {
  padding: var(--section-pad);
  background: var(--cream);
}
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.areas-text .section-sub { max-width: 420px; }
.areas-action { margin-top: 32px; }
.areas-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.area-region-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.area-region-tile .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}
.area-region-tile:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--dark);
  transition: border-color 0.2s, color 0.2s;
}
.chip:hover {
  border-color: var(--green);
  color: var(--green);
}

#contact {
  padding: var(--section-pad);
  background: var(--navy);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-tag { color: var(--green-light); }
.contact-info .section-heading { color: var(--white); }
.contact-info .section-sub { color: rgba(255,255,255,0.62); }
.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.contact-icon .material-symbols-outlined { font-size: 1.1rem; }
.contact-row-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}
.contact-row-text a,
.contact-row-text span {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
}
.contact-row-text a:hover { color: var(--green-light); }

.contact-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.1);
}
.custom-select { position: relative; }

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}
.custom-select-trigger:focus,
.custom-select.open .custom-select-trigger {
  border-color: var(--green-light);
  background: rgba(255,255,255,0.1);
  outline: none;
}
.custom-select-trigger.has-value { color: var(--white); }

.custom-select-value { flex: 1; }

.custom-select-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  transition: transform 0.22s;
  flex-shrink: 0;
}
.custom-select.open .custom-select-arrow { transform: rotate(180deg); }

.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #0b2356;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  overflow: hidden;
  z-index: 20;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.custom-select.open .custom-select-options { display: block; }

.custom-select-option {
  padding: 13px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: background 0.15s;
}
.custom-select-option:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.custom-select-option:hover::before { background: var(--amber); }
.custom-select-option.selected {
  background: rgba(155,207,83,0.1);
  color: var(--green-light);
}
.custom-select-option.selected::before { background: var(--green-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 28px; }

#footer {
  background: #040d1f;
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-logo .logo-icon { background: var(--green); }
.footer-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.44);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-light); }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.44);
}
.footer-contact-list a { color: rgba(255,255,255,0.44); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--green-light); }
.fc-icon {
  color: var(--green-light);
  margin-top: 1px;
  flex-shrink: 0;
}
.fc-icon.material-symbols-outlined { font-size: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

#clients {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 40px 24px;
}
.clients-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.clients-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  text-align: center;
}
.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 40px;
  width: 100%;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.client-logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s;
}
.client-logo:hover img {
  filter: grayscale(0) opacity(1);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.75s ease;
}
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.18s; }
.stagger-3 { transition-delay: 0.28s; }
.stagger-4 { transition-delay: 0.38s; }
.stagger-5 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  #navToggle { display: flex; }
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-track::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-layout { grid-template-columns: 1fr; gap: 40px; }
  .more-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-row { flex-wrap: wrap; gap: 12px; }
  .pricing-row-price { width: 100%; text-align: left; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: span 2; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px 20px; }
  .trust-band-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .more-services-grid { grid-template-columns: 1fr; }
  .areas-groups { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.3rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > :first-child { grid-column: span 1; }
  .footer-desc { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.area-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.area-modal.open {
  opacity: 1;
  visibility: visible;
}
.area-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,29,65,0.65);
  backdrop-filter: blur(2px);
}
.area-modal-panel {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(32px);
  transition: transform 0.28s cubic-bezier(0.34,1.1,0.64,1);
  overflow: hidden;
}
.area-modal.open .area-modal-panel { transform: translateY(0); }
@media (min-width: 600px) {
  .area-modal { align-items: center; }
  .area-modal-panel { border-radius: 20px; max-height: 80vh; }
}
.area-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 0;
}
.area-modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.area-modal-subtitle {
  font-size: 0.85rem;
  color: var(--gray-mid);
}
.area-modal-close {
  background: var(--cream);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.area-modal-close:hover { background: var(--gray-light); }
.area-modal-search {
  position: relative;
  padding: 16px 28px;
  flex-shrink: 0;
}
.area-search-icon {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-mid);
  font-size: 1.1rem;
  pointer-events: none;
}
.area-search-input {
  width: 100%;
  padding: 12px 40px 12px 40px;
  background: var(--cream);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.area-search-input:focus {
  border-color: var(--green);
  background: var(--white);
}
.area-search-clear {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-light);
  border: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.area-modal-body {
  overflow-y: auto;
  flex: 1;
  padding: 0 28px 28px;
  overscroll-behavior: contain;
}
.area-region {
  margin-bottom: 24px;
}
.area-region-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 8px 0 6px;
  border-bottom: 2px solid var(--green-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-region-title .material-symbols-outlined { font-size: 1rem; color: var(--green); }
.area-subregion {
  margin-bottom: 14px;
}
.area-subregion-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-chip {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--cream);
  border: 1px solid var(--gray-light);
  border-radius: 99px;
  padding: 4px 12px;
  color: var(--dark);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.area-chip.match {
  background: rgba(155,207,83,0.15);
  border-color: var(--green-light);
  color: var(--green-dark);
}
.area-chip mark {
  background: var(--amber);
  color: var(--navy);
  border-radius: 2px;
  padding: 0 1px;
}
.area-modal-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  color: var(--gray-mid);
}
.area-modal-empty .material-symbols-outlined { font-size: 2.5rem; color: var(--gray-light); margin-bottom: 12px; }
.area-modal-empty p { font-size: 0.95rem; }
.area-modal-empty strong { color: var(--navy); }
.area-empty-sub { font-size: 0.85rem; margin-top: 6px; }
