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

:root {
  --navy: #0d2240;
  --navy-dark: #060f1c;
  --navy-mid: #1a3a5c;
  --blue: #2a7adb;
  --blue-light: #7ab3e0;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --gray: #8a9bb0;
  --gray-light: #e4eaf0;
  --text: #1a2535;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --radius: 8px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: #1e66c0;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline-light {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--transition);
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--off-white);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}
.nav-link:hover {
  color: var(--white);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-cta:hover {
  background: #1e66c0;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  max-height: 300px;
  padding: 12px 0 20px;
}
.nav-mobile-link,
.nav-mobile-cta {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.nav-mobile-cta {
  color: var(--blue-light);
  font-weight: 600;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #060f1c 0%, #0d2240 50%, #091830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,15,28,0.25) 0%, rgba(6,15,28,0.15) 50%, rgba(6,15,28,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  color: #2a5a8c;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #2a5a8c;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-dark);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.trust-item {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
  color: var(--white);
  flex-shrink: 0;
}

/* ── SERVICES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 10px;
}
.service-img-hvac {
  background: linear-gradient(135deg, #071830 0%, #0d2a45 100%);
}
.service-img-elec {
  background: linear-gradient(135deg, #181400 0%, #2a2200 100%);
}
.service-img-plumb {
  background: linear-gradient(135deg, #001525 0%, #002035 100%);
}
.service-img-maint {
  background: linear-gradient(135deg, #141414 0%, #222220 100%);
}
.service-img-build {
  background: linear-gradient(135deg, #180e00 0%, #2a1800 100%);
}
.service-img-resi {
  background: linear-gradient(135deg, #0a180a 0%, #142414 100%);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.service-img-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}

.service-img-note {
  position: relative;
  z-index: 1;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 3px;
}

.service-body {
  padding: 14px 16px;
}
.service-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
}
.service-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── AUDIENCE ───────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.audience-img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}
.audience-img-comm {
  background: linear-gradient(160deg, #060f1c 0%, #0d2240 100%);
}
.audience-img-resi {
  background: linear-gradient(160deg, #0a160a 0%, #152a15 100%);
}
.audience-img-med {
  background: linear-gradient(160deg, #0a0a1a 0%, #151530 100%);
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.audience-tag {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
}
.audience-tag-comm {
  background: rgba(42, 122, 219, 0.3);
  color: #a8d0f5;
  border: 1px solid rgba(42, 122, 219, 0.4);
}
.audience-tag-resi {
  background: rgba(59, 150, 59, 0.3);
  color: #9dcf6a;
  border: 1px solid rgba(59, 150, 59, 0.4);
}
.audience-tag-med {
  background: rgba(120, 80, 200, 0.3);
  color: #c5a8f5;
  border: 1px solid rgba(120, 80, 200, 0.4);
}

.audience-img-note {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 3px;
}

.audience-body {
  padding: 18px 18px 20px;
}
.audience-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.audience-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── WHY APEX ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
}

.why-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: #dce8f5;
  line-height: 1;
  margin-bottom: 10px;
}

.why-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.why-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── RECENT WORK ────────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.job-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  background: var(--white);
}

.job-img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 10px;
}
.job-img-1 {
  background: linear-gradient(135deg, #071828 0%, #0d2a40 100%);
}
.job-img-2 {
  background: linear-gradient(135deg, #181200 0%, #2a2000 100%);
}
.job-img-3 {
  background: linear-gradient(135deg, #001020 0%, #001e32 100%);
}

.job-ba-tag {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 7px;
  border-radius: 3px;
}
.job-img-note {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 2px 6px;
  border-radius: 3px;
}

.job-cap {
  padding: 12px 14px;
}
.job-cap strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.job-cap span {
  font-size: 12px;
  color: var(--gray);
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
}

.about-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-license {
  font-size: 12px;
  color: var(--gray);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  display: inline-block;
}

.about-img-wrap {
}
.about-img-placeholder {
  height: 380px;
  background: linear-gradient(160deg, #0d1e0d 0%, #152a15 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 10px 18px;
  border-radius: 4px;
}

/* ── SERVICE AREA ───────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
}

.area-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.area-phone {
  color: var(--blue);
  font-weight: 500;
}
.area-phone:hover {
  text-decoration: underline;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--gray);
}

.area-map-placeholder {
  height: 200px;
  background: linear-gradient(155deg, #0a1828 0%, #0d2238 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
}
.area-map-placeholder span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  background: var(--navy-dark);
  padding: 100px 24px;
  text-align: center;
}

.final-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.final-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #040e1a;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-phone {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.footer-phone:hover {
  color: var(--white);
}
.footer-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-email:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
}

/* ── SERVICE ICON BLOCK (subpages) ──────────────────────── */
.service-icon-block {
  height: 80px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--blue);
}
.service-icon {
  font-size: 32px;
}

/* ── NAV ACTIVE STATE ───────────────────────────────────── */
.nav-link-active {
  color: var(--white) !important;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

/* ── PAGE HERO (subpages) ───────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2240 60%, #071828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-img-resi {
  background: linear-gradient(135deg, #152a15 0%, #0d2240 60%, #071828 100%);
}

.page-hero-img-placeholder span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 4px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,15,28,0.25) 0%, rgba(6,15,28,0.15) 50%, rgba(6,15,28,0.45) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #2a5a8c;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
}

.contact-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-detail-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

a.contact-detail-value:hover {
  color: var(--blue);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
}

.form-input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  padding: 10px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--blue);
}
.form-input::placeholder {
  color: #aab4c0;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a9bb0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CAROUSEL ───────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 48px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track .job-card {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
}

@media (max-width: 900px) {
  .carousel-track .job-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 600px) {
  .carousel-track .job-card {
    flex: 0 0 100%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: var(--navy-dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--blue);
}
.carousel-prev {
  left: -18px;
}
.carousel-next {
  right: -18px;
}

.carousel-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.3);
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    display: none;
  }
  .area-grid {
    grid-template-columns: 1fr;
  }
  .area-map-placeholder {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    align-items: flex-start;
  }
  .trust-bar {
    gap: 8px 16px;
  }
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
.final-cta-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-input-dark {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
}
.form-input-dark::placeholder {
  color: #aab4c0;
}
.form-input-dark option {
  background: #ffffff;
  color: var(--text);
}
.form-input-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-input-dark option {
  background: var(--navy-dark);
  color: var(--white);
}
@media (max-width: 768px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
}
.form-label-light {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.nav-social {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
  opacity: 0.85;
}
.nav-social:hover { opacity: 1; }
.nav-social[aria-label="Facebook"] { color: #1877F2; }
.nav-social[aria-label="Instagram"] { color: #E1306C; }
.footer-socials { display: flex; gap: 14px; margin-top: 8px; }
.footer-social { color: rgba(255,255,255,0.65); display: flex; align-items: center; transition: color var(--transition); }
.footer-social:hover { color: rgba(255,255,255,0.8); }
.footer-social[aria-label="Facebook"] { color: #1877F2; }
.footer-social[aria-label="Instagram"] { color: #E1306C; }
.footer-social[aria-label="Facebook"]:hover { color: #1877F2; }
.footer-social[aria-label="Instagram"]:hover { color: #E1306C; }
