/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:     #1B3A5C;
  --navy-dk:  #122840;
  --navy-md:  #234872;
  --orange:   #F7941D;
  --orange-dk:#D97A0E;
  --orange-lt:#FEF3E2;
  --white:    #ffffff;
  --offwhite: #f5f6f7;
  --gray:     #e8e8e8;
  --text:     #1a1a1a;
  --muted:    #666666;
  --radius:   6px;
  --shadow:   0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: 0 4px 16px rgba(247,148,29,0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn--nav:hover { background: var(--orange-dk); }

.btn--full { width: 100%; justify-content: center; }

/* ─── Section Helpers ─── */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,0.7); }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a:not(.btn) {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover { color: var(--orange); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile a:not(.btn) {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__mobile .btn { align-self: flex-start; }

/* ─── Hero — Split Panel ─── */
.hero--split {
  display: flex;
  min-height: 72vh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Each panel takes half the screen */
.hero-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.4,0,0.2,1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Aerial panel — left half of Capture.webp */
.hero-panel--aerial {
  background-image: url('Long+Boy.webp');
  background-position: left center;
  background-size: 200% 100%;
}

/* Plan panel — right half of Capture.webp */
.hero-panel--plan {
  background-image: url('Long+Boy.webp');
  background-position: right center;
  background-size: 200% 100%;
}

/* Hover: expand the hovered panel */
.hero--split:has(.hero-panel--aerial:hover) .hero-panel--aerial { flex: 1.35; }
.hero--split:has(.hero-panel--aerial:hover) .hero-panel--plan   { flex: 0.65; }
.hero--split:has(.hero-panel--plan:hover)   .hero-panel--plan   { flex: 1.35; }
.hero--split:has(.hero-panel--plan:hover)   .hero-panel--aerial { flex: 0.65; }

.hero-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,35,0.55) 0%,
    rgba(10,20,35,0.75) 100%
  );
  transition: background var(--transition);
}
.hero-panel:hover .hero-panel__overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,20,35,0.35) 0%,
    rgba(10,20,35,0.65) 100%
  );
}

.hero-panel__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 40px;
  max-width: 460px;
}

.hero-panel__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-panel__content h1,
.hero-panel__content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-panel__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-panel__content .btn {
  pointer-events: none; /* whole panel is clickable */
}
.hero-panel:hover .btn--primary {
  background: var(--orange-dk);
  box-shadow: 0 4px 20px rgba(247,148,29,0.45);
  transform: translateY(-1px);
}

/* Center divider with logo badge */
.hero-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  gap: 0;
}
.hero-divider__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(247,148,29,0.5) 20%,
    rgba(247,148,29,0.5) 80%,
    transparent 100%
  );
}
.hero-divider__badge {
  width: 72px; height: 72px;
  background: var(--navy-dk);
  border: 2px solid rgba(247,148,29,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 10px;
  flex-shrink: 0;
}
.hero-divider__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Mobile: stack vertically */
@media (max-width: 640px) {
  .hero--split { flex-direction: column; }
  .hero-panel--aerial,
  .hero-panel--plan {
    background-size: cover;
    min-height: 50vh;
  }
  .hero-panel--aerial { background-position: center top; }
  .hero-panel--plan   { background-position: center bottom; }
  .hero-divider {
    flex-direction: row;
    top: 50%; bottom: auto;
    left: 0; right: 0;
    transform: translateY(-50%);
    width: 100%;
  }
  .hero-divider__line {
    flex: 1;
    width: auto; height: 1px;
    background: linear-gradient(to right, transparent, rgba(247,148,29,0.5), transparent);
  }
}

/* ─── Hero Banner ─── */
.hero-banner {
  display: flex;
  gap: 5px;
  margin-top: 80px;
  background: var(--navy-dk);
}
.hero-banner__panel {
  flex: 1;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.hero-banner__panel--aerial { background-image: url('Aerial-Imaging-Nearmaps-Example.webp'); }
.hero-banner__panel--plan   { background-image: url('Plan-Takeoff-Example.webp'); }

.hero-banner__btn {
  background: var(--navy-dk);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  transition: background var(--transition);
}
.hero-banner__panel:hover .hero-banner__btn {
  background: var(--navy);
}

@media (max-width: 560px) {
  .hero-banner { flex-direction: column; }
  .hero-banner__panel { height: 160px; }
}

/* ─── Stats ─── */
.stats {
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stats__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat:last-child { border-right: none; }
.stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Why Us ─── */
.why-us {
  padding: 100px 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}
.why-us__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.why-us__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,64,0.92) 0%, rgba(18,40,64,0.80) 100%);
}
.why-us__container {
  position: relative;
  z-index: 1;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 32px 28px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  background: var(--offwhite);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.why-card__icon {
  width: 48px; height: 48px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--orange-dk);
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--offwhite);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1px solid var(--gray);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--orange-dk);
}
.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-dk);
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--navy); }

/* ─── Map Section ─── */
.map-section {
  padding: 100px 0;
  background: var(--navy);
}

.map-wrapper { max-width: 860px; margin: 0 auto; }

.map-search {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.map-search__input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.map-search__input::placeholder { color: rgba(255,255,255,0.35); }
.map-search__input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.map-canvas {
  width: 100%;
  height: 460px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.map-canvas.active { display: block; }

.map-placeholder {
  width: 100%;
  height: 460px;
  border-radius: 10px;
  border: 1px dashed rgba(247,148,29,0.35);
  background: rgba(247,148,29,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.map-placeholder svg {
  width: 40px; height: 40px;
  opacity: 0.5;
  stroke: var(--orange);
}
.map-placeholder p { font-size: 0.9rem; line-height: 1.6; }

.map-toolbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.map-toolbar.active { display: flex; }

.map-toolbar__hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-toolbar__hint svg { width: 14px; height: 14px; stroke: var(--orange); }

.map-toolbar__actions { display: flex; gap: 8px; }

.btn--sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: 4px;
}
.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--danger {
  background: rgba(220,53,53,0.15);
  color: #ff6b6b;
  border: 1px solid rgba(220,53,53,0.25);
}
.btn--danger:hover {
  background: rgba(220,53,53,0.25);
}

.marker-count {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

.map-cta {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.map-cta a { color: var(--orange); font-weight: 600; }
.map-cta a:hover { color: var(--orange-dk); }

/* Save bar — appears below the map once a property is selected */
.map-save-bar {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: rgba(247,148,29,0.08);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 8px;
  padding: 16px 20px;
}
.map-save-bar__info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 0;
}
.map-save-bar__info svg {
  width: 20px; height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.map-save-bar__info div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.map-save-bar__info strong {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 380px;
}
.map-save-bar__info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Property summary card inside the contact form */
.property-summary {
  background: rgba(247,148,29,0.06);
  border: 1px solid rgba(247,148,29,0.25);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
}
.property-summary__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(247,148,29,0.1);
  border-bottom: 1px solid rgba(247,148,29,0.15);
}
.property-summary__header svg {
  width: 16px; height: 16px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.property-summary__header span {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}
.property-summary__clear {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.property-summary__clear:hover {
  color: #ff6b6b;
  background: rgba(220,53,53,0.15);
}
.property-summary__map {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: none;
}
.property-summary__details {
  padding: 12px 16px 4px;
}
.property-summary__address {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.property-summary__markers {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.property-summary__change {
  display: inline-block;
  padding: 8px 16px 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.property-summary__change:hover { color: var(--orange); }

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,40,64,0.96) 0%, rgba(18,40,64,0.75) 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__image { position: relative; }
.about__image-card {
  background: var(--navy-dk);
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
}
.about__icon { width: 80px; height: 80px; }
.about__badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}
.about__badge strong { font-size: 1rem; font-weight: 800; }
.about__badge span   { font-size: 0.78rem; font-weight: 500; }

.about__content h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.about__content p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.about__list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.about__list li svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--navy-dk);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact__form {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
}
.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 label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 0.93rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(247,148,29,0.1);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: var(--radius);
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(220,53,69,0.12);
  border: 1px solid rgba(220,53,69,0.35);
  border-radius: var(--radius);
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact__info { padding-top: 8px; }
.contact__info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.93rem;
}
.contact__detail svg {
  width: 20px; height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.contact__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0;
}
.contact__info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.contact__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.contact__bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Report type tabs ─── */
.report-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.report-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.report-tab svg { width: 20px; height: 20px; flex-shrink: 0; }
.report-tab:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.report-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ─── Customer type toggle ─── */
.customer-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 22px;
  gap: 4px;
}
.customer-toggle__btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.customer-toggle__btn.active {
  background: var(--orange);
  color: var(--white);
}
.customer-toggle__btn:not(.active):hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

/* ─── Checkbox group (aerial add-ons) ─── */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(247,148,29,0.3); }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-box {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-item input:checked ~ .checkbox-box {
  background: var(--orange);
  border-color: var(--orange);
}
.checkbox-item input:checked ~ .checkbox-box::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-item input:checked ~ .checkbox-label strong { color: var(--orange); }
.checkbox-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkbox-label strong { font-size: 0.92rem; color: var(--white); font-weight: 600; }
.checkbox-label em     { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-style: normal; }

/* ─── Radio group (plan scope + report type) ─── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition);
}
.radio-group--inline .radio-item { flex: 1; min-width: 140px; }
.radio-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(247,148,29,0.3); }
.radio-item input[type="radio"] { display: none; }
.radio-dot {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--transition);
}
.radio-item input:checked ~ .radio-dot { border-color: var(--orange); }
.radio-item input:checked ~ .radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--orange);
  border-radius: 50%;
}
.radio-item input:checked ~ .radio-label strong { color: var(--orange); }
.radio-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.radio-label strong { font-size: 0.92rem; color: var(--white); font-weight: 600; }
.radio-label em     { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-style: normal; }

/* ─── File upload area ─── */
.file-upload {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: rgba(255,255,255,0.03);
}
.file-upload:hover,
.file-upload.drag-over {
  border-color: var(--orange);
  background: rgba(247,148,29,0.05);
}
.file-upload svg {
  width: 32px; height: 32px;
  stroke: rgba(255,255,255,0.3);
  margin: 0 auto 10px;
  display: block;
}
.file-upload p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.file-upload__browse { color: var(--orange); font-weight: 600; cursor: pointer; }
.file-upload small { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.file-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.file-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(247,148,29,0.07);
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.file-list__item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 0.9rem;
  flex-shrink: 0;
  padding: 0 2px;
  transition: color var(--transition);
}
.file-list__remove:hover { color: #ff6b6b; }

/* ─── New-customer collapsible fields ─── */
.new-fields {
  overflow: hidden;
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.28s ease, margin 0.3s ease;
  margin-bottom: 0;
}
.new-fields.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
}

/* ─── Footer ─── */
.footer {
  background: #0a1520;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer__brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  line-height: 1.65;
}
.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ─── Services — Alternating Image + Text Rows ─── */
.service-row {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-bottom: 80px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row--reversed { flex-direction: row-reverse; }

.service-row__image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.service-row__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-row:hover .service-row__image img { transform: scale(1.03); }

.service-row__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-row__content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.service-row__content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-row__list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-row__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.service-row__list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .service-row,
  .service-row--reversed {
    flex-direction: column;
    gap: 32px;
  }
  .service-row__image img { height: 280px; }
}

/* ─── Pricing ─── */
.pricing {
  padding: 100px 0;
  background: var(--navy-dk);
}
.pricing__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.pricing__sidebar {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.pricing__sidebar h2 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.pricing__free-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.1);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--orange);
}
.pricing__free-badge svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.pricing__sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 4px;
}
.pricing__sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.pricing__sidebar-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.price-card:hover {
  border-color: rgba(247,148,29,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.price-card--highlight {
  border-color: rgba(247,148,29,0.3);
  background: linear-gradient(140deg, rgba(247,148,29,0.09) 0%, var(--navy) 55%);
}
.price-card__amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.price-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.price-card__order {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 6px;
  transition: color var(--transition), gap var(--transition);
}
.price-card__order:hover { color: var(--orange-dk); gap: 10px; }

@media (max-width: 900px) {
  .pricing__inner { grid-template-columns: 1fr; }
  .pricing__sidebar { position: static; }
}
@media (max-width: 560px) {
  .pricing__cards { grid-template-columns: 1fr; }
}

/* ─── Projects Gallery ─── */
.projects {
  padding: 100px 0;
  background: var(--offwhite);
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-dk);
}
.project-card--large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,35,0.9) 0%, rgba(10,20,35,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.35);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  width: fit-content;
}
.project-card__overlay p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

@media (max-width: 860px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .project-card--large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
  .project-card { aspect-ratio: 1; }
  .project-card__overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.cta-banner:hover .cta-banner__bg { transform: scale(1.06); }
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,40,64,0.90) 0%, rgba(18,40,64,0.72) 100%);
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-banner__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Newsletter ─── */
.newsletter {
  padding: 80px 0;
  background: var(--navy-dk);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.newsletter__inner {
  display: flex;
  align-items: center;
  gap: 52px;
}
.newsletter__icon {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
}
.newsletter__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newsletter__content {
  flex: 1;
  min-width: 0;
}
.newsletter__content .section-tag { margin-bottom: 8px; }
.newsletter__content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.newsletter__content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 540px;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter__fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter__fields input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.newsletter__fields input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter__fields input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
}
.newsletter__form .btn { align-self: flex-start; }

@media (max-width: 760px) {
  .newsletter__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .newsletter__icon { width: 72px; height: 72px; }
}
@media (max-width: 480px) {
  .newsletter__fields { flex-direction: column; }
  .newsletter__form .btn { width: 100%; justify-content: center; }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }

  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__image { max-width: 380px; margin: 0 auto; }

  .contact__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: 60px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .contact__form { padding: 28px 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

  .about__badge { bottom: -16px; right: 0; }
}

/* ─── Existing customer nudge on order page ─── */
.existing-customer-nudge {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.existing-customer-nudge a { color: var(--orange); font-weight: 600; }
.existing-customer-nudge a:hover { color: var(--orange-dk); }

/* ─── Order page hero ─── */
.order-page-hero {
  background: var(--navy-dk);
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.order-page-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.order-page-hero__text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.order-page-hero__text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.65;
}
.order-page-hero__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.order-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(247,148,29,0.08);
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.order-badge svg {
  width: 18px; height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.order-page-contact { padding-top: 56px !important; }

@media (max-width: 760px) {
  .order-page-hero__badges { flex-direction: row; flex-wrap: wrap; }
}

/* ─── Embedded form map (aerial order) ─── */
.form-map-section {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.03);
}
.form-map-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(247,148,29,0.06);
}
.form-map-header svg {
  width: 14px; height: 14px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.form-map-section .map-search {
  padding: 12px 12px 0;
  margin-bottom: 0;
}
.form-map-section .map-toolbar {
  padding: 6px 12px;
  margin-bottom: 0;
}
.form-map-canvas {
  width: 100%;
  height: 300px;
  display: none;
}
.form-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 160px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 20px;
}
.form-map-placeholder svg {
  width: 32px; height: 32px;
  stroke: rgba(247,148,29,0.4);
}
.form-map-placeholder p { font-size: 0.85rem; line-height: 1.5; }

/* ─── Success message with "Order Another" button ─── */
.form-success--order {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
}
.form-success__body {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-success__body svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success__body div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.form-success__body strong {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 700;
}
.form-success__body span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ─── Returning customer lookup ─── */
.returning-customer {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
}
.returning-customer__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
  text-align: left;
  gap: 12px;
}
.returning-customer__toggle:hover {
  background: rgba(255,255,255,0.04);
  color: var(--white);
}
.returning-customer__toggle span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.returning-customer__toggle span svg {
  width: 18px; height: 18px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.returning-customer__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.returning-customer__toggle[aria-expanded="true"] .returning-customer__chevron {
  transform: rotate(180deg);
}
.returning-customer__body {
  display: none;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.returning-customer__body.open { display: block; }
.returning-customer__lookup {
  display: flex;
  gap: 10px;
}
.returning-customer__input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
}
.returning-customer__input::placeholder { color: rgba(255,255,255,0.25); }
.returning-customer__input:focus { border-color: var(--orange); }

.lookup-message {
  margin-top: 14px;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.lookup-message--empty {
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.lookup-message--sent {
  color: var(--orange);
  background: rgba(247,148,29,0.08);
  border: 1px solid rgba(247,148,29,0.2);
}
.returning-customer__code {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  max-width: 160px;
  font-family: monospace;
}
.lookup-view-orders {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.lookup-view-orders svg { width: 14px; height: 14px; }
.lookup-resend {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.lookup-resend:hover { color: rgba(255,255,255,0.65); }

/* ─── Order history panel ─── */
.order-history {
  margin-top: 20px;
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.order-history__title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(247,148,29,0.07);
  border-bottom: 1px solid rgba(247,148,29,0.15);
}
.order-history__title svg { width: 14px; height: 14px; stroke: var(--orange); }
.order-history__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-history-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
}
.order-history-item:last-child { border-bottom: none; }
.order-history-item__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.order-history-item__badge svg { width: 11px; height: 11px; }
.order-history-item__badge--aerial {
  background: rgba(247,148,29,0.15);
  color: var(--orange);
  border: 1px solid rgba(247,148,29,0.25);
}
.order-history-item__badge--plan {
  background: rgba(27,58,92,0.5);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}
.order-history-item__detail {
  color: rgba(255,255,255,0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-history-item__addons {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.order-history-item__date {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.order-history-item__report { flex-shrink: 0; }
.order-history-item__report-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 4px;
  background: rgba(247,148,29,0.08);
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.order-history-item__report-link:hover {
  background: rgba(247,148,29,0.16);
  border-color: rgba(247,148,29,0.5);
}
.order-history-item__report-link svg {
  width: 12px; height: 12px;
  stroke: var(--orange);
}
.order-history-item__pending {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .order-history-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .order-history-item__addons,
  .order-history-item__date { font-size: 0.75rem; }
  .returning-customer__lookup { flex-direction: column; }
}

/* ─── My Portal button ─── */
.btn--portal {
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  border: 1px solid rgba(247,148,29,0.35);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn--portal:hover {
  background: rgba(247,148,29,0.22);
  border-color: rgba(247,148,29,0.6);
  color: var(--orange);
  transform: translateY(-1px);
}

/* ─── "Menu" nav dropdown ─── */
.nav__menu-dropdown {
  position: relative;
}
.nav__menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  padding: 9px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav__menu-trigger:hover,
.nav__menu-trigger.open {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
}
.nav__menu-trigger svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav__menu-trigger.open svg { transform: rotate(180deg); }

.nav__menu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: #0e1f32;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 200;
  padding: 6px;
  overflow: hidden;
}
.nav__menu-panel.open { display: block; }
.nav__menu-panel a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
.nav__menu-panel a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

/* ─── Active nav link ─── */
.nav__links a:not(.btn).active {
  color: var(--orange);
}

/* ─── Focus-visible styles (keyboard navigation) ─── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
/* Remove default outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

/* ─── Stat counter fade-in ─── */
.stat__num {
  transition: opacity 0.4s ease;
}

/* ─── Respect reduced-motion preference ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-panel {
    transition: none;
  }
  .cta-banner__bg {
    transform: none;
    transition: none;
  }
}
