/* ==========================================================================
   Infinity Air — design system transcription of "Infinity Air Homepage.dc.html"
   Palette: navy #0A1A30 / #0F2440 · orange #F5821F · cyan #5BC6E8 · gold #F5B41F
   ========================================================================== */

html, body {
  margin: 0;
  padding: 0;
  background: #F4F7FA;
}
body {
  font-family: 'Barlow', sans-serif;
  color: #16283E;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: #F5821F; text-decoration: none; }
a:hover { color: #D96D0E; }
input::placeholder, textarea::placeholder { color: #8FA3B8; }

.ia-container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.ia-hex {
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}

/* ===== TOP BAR ===== */
.ia-topbar {
  background: #0A1A30;
  color: #C7D6E6;
  font-size: 13.5px;
}
.ia-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.ia-topbar__left { display: flex; align-items: center; gap: 22px; }
.ia-topbar__emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #FFFFFF;
}
.ia-topbar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F5821F;
  display: inline-block;
}
.ia-topbar__muted { color: #6E86A0; }
.ia-topbar__right { display: flex; align-items: center; gap: 18px; }
.ia-topbar__social { display: flex; align-items: center; gap: 12px; }
.ia-topbar__social a { display: flex; opacity: .75; }
.ia-topbar__social a:hover { opacity: 1; }
.ia-topbar__social img { display: block; }

/* ===== HEADER / NAV ===== */
.ia-header {
  background: #0F2440;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px rgba(6, 18, 34, .35);
}
body.admin-bar .ia-header { top: 32px; }
.ia-header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.ia-header__logo { display: flex; align-items: center; gap: 12px; }
.ia-header__logo img { height: 60px; display: block; }
.ia-nav { display: flex; align-items: center; gap: 30px; }
/* Services lives inside .ia-nav__has-drop, so every nav-link rule has to cover
   both direct children of .ia-nav and the wrapped item. */
.ia-nav > a,
.ia-nav__has-drop > a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .2px;
}
.ia-nav > a:hover,
.ia-nav__has-drop > a:hover { color: #5BC6E8; }
.ia-nav__services {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* Chevron: inherits the link colour via currentColor, so it follows the hover
   and inert-placeholder states without needing its own rules. */
.ia-nav__caret {
  display: block;
  flex: none;
  transform: translateY(1px);
  transition: transform .18s ease;
}
/* Point it up while the dropdown is open. */
.ia-nav__services[aria-expanded="true"] .ia-nav__caret { transform: translateY(1px) rotate(180deg); }
.ia-header__actions { display: flex; align-items: center; gap: 20px; }
.ia-header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}
.ia-header__phone:hover { opacity: .85; }
.ia-header__phone-label {
  font-size: 11.5px;
  color: #5BC6E8;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.ia-header__phone-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: .5px;
}
.ia-btn-cta {
  background: #F5821F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 8px;
  letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(245, 130, 31, .35);
  transition: background .15s;
  display: inline-block;
}
.ia-btn-cta:hover { background: #D96D0E; color: #FFFFFF; }

/* Mega menu */
.ia-megamenu {
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  width: 1080px;
  max-width: calc(100vw - 40px);
  background: #FFFFFF;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 60px rgba(6, 18, 34, .28);
  padding: 30px 34px 26px;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 3px solid #F5821F;
}
.ia-megamenu.is-open { display: grid; }
.ia-megamenu__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0F2440;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 2px solid #F5821F;
}
.ia-megamenu__heading--cyan { border-bottom-color: #5BC6E8; }
.ia-megamenu__links { display: flex; flex-direction: column; gap: 2px; }
.ia-megamenu__links a {
  color: #33506E;
  font-size: 14px;
  padding: 5px 0;
}
.ia-megamenu__links a:hover { color: #F5821F; }
.ia-megamenu__emergency {
  display: block;
  margin-top: 16px;
  background: #0F2440;
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 10px;
  border-radius: 8px;
}
.ia-megamenu__emergency:hover { background: #1A3A63; color: #FFFFFF; }

/* Mobile nav toggle (not part of the desktop design; hidden ≥1025px) */
.ia-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ia-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 5px 0;
}

/* ===== HERO ===== */
.ia-hero {
  position: relative;
  background: #0F2440;
  overflow: hidden;
}
.ia-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.ia-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(9,22,40,.97) 0%, rgba(9,22,40,.92) 38%, rgba(12,32,58,.72) 68%, rgba(12,32,58,.55) 100%);
}
.ia-hero__inner {
  position: relative;
  padding-top: 72px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.ia-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(91, 198, 232, .12);
  border: 1px solid rgba(91, 198, 232, .4);
  color: #5BC6E8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 22px;
}
.ia-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-wrap: pretty;
}
.ia-hero__title em, .ia-text-orange { color: #F5821F; font-style: normal; }
.ia-hero__lead {
  font-size: 18.5px;
  line-height: 1.6;
  color: #C7D6E6;
  margin: 0 0 26px;
  max-width: 520px;
  text-wrap: pretty;
}
.ia-hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 32px;
}
.ia-hero__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #EAF2F9;
  font-size: 15px;
  font-weight: 500;
}
.ia-hero__check b { color: #F5821F; font-weight: 700; }
.ia-hero__ctas { display: flex; align-items: center; gap: 16px; }
.ia-btn-primary {
  background: #F5821F;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 30px;
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(245, 130, 31, .4);
  letter-spacing: .3px;
  transition: background .15s;
  display: inline-block;
}
.ia-btn-primary:hover { background: #D96D0E; color: #FFFFFF; }
.ia-btn-ghost {
  border: 2px solid rgba(255, 255, 255, .55);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 9px;
  letter-spacing: .3px;
  display: inline-block;
}
.ia-btn-ghost:hover { border-color: #5BC6E8; color: #5BC6E8; }
.ia-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.ia-stars { color: #F5B41F; font-size: 17px; letter-spacing: 2px; }
.ia-hero__rating-text { color: #C7D6E6; font-size: 14.5px; }

/* Lead form card */
.ia-form-card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(4, 14, 28, .5);
  padding: 30px 30px 26px;
}
.ia-form-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: #0F2440;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ia-form-card__subtitle {
  font-size: 14.5px;
  color: #5C7590;
  margin: 4px 0 20px;
}
.ia-form { display: flex; flex-direction: column; gap: 12px; }
.ia-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ia-form input,
.ia-form select,
.ia-form textarea {
  width: 100%;
  border: 1.5px solid #D7DFE8;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: #16283E;
  outline: none;
  background: #FFFFFF;
}
.ia-form select { appearance: auto; }
.ia-form textarea { resize: vertical; }
.ia-form input:focus,
.ia-form select:focus,
.ia-form textarea:focus { border-color: #5BC6E8; }
.ia-form__submit {
  background: #F5821F;
  color: #FFFFFF;
  border: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  padding: 15px;
  border-radius: 9px;
  cursor: pointer;
  letter-spacing: .4px;
  box-shadow: 0 5px 16px rgba(245, 130, 31, .35);
  transition: background .15s;
}
.ia-form__submit:hover { background: #D96D0E; }
.ia-form__note {
  font-size: 12.5px;
  color: #8FA3B8;
  text-align: center;
}
.ia-form-success {
  background: #F0FAF3;
  border: 1px solid #BEE5CC;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  display: none;
}
.ia-form-success.is-visible { display: block; }
.ia-form.is-hidden { display: none; }
.ia-form-success__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2E9E5B;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.ia-form-success__title {
  font-weight: 700;
  font-size: 18px;
  color: #16283E;
  margin-bottom: 6px;
}
.ia-form-success__text {
  font-size: 14.5px;
  color: #5C7590;
  line-height: 1.55;
}
.ia-form-success__text a { font-weight: 700; }
.ia-form-success__reset {
  margin-top: 16px;
  background: none;
  border: none;
  color: #5C7590;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
}

/* ===== TRUST CHIPS ===== */
.ia-trust {
  background: #FFFFFF;
  border-bottom: 1px solid #E4EBF2;
}
.ia-trust__inner {
  padding-top: 26px;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ia-trust__item { display: flex; align-items: center; gap: 14px; }
.ia-trust__hex {
  width: 46px;
  height: 46px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
}
.ia-trust__hex--sm { font-size: 14px; }
.ia-grad-orange { background: linear-gradient(135deg, #F5821F, #F5B41F); }
.ia-grad-cyan { background: linear-gradient(135deg, #5BC6E8, #2E9BC7); }
.ia-grad-mix { background: linear-gradient(135deg, #F5821F, #5BC6E8); }
.ia-trust__title { font-weight: 700; font-size: 15.5px; color: #0F2440; }
.ia-trust__sub { font-size: 13.5px; color: #5C7590; }

/* ===== SECTION HEADINGS ===== */
.ia-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F5821F;
  margin-bottom: 12px;
}
.ia-kicker--cyan { color: #5BC6E8; }
.ia-kicker--muted { color: #8FA3B8; }
.ia-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #0F2440;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-wrap: pretty;
}

/* ===== SERVICES HEXAGONS ===== */
.ia-services {
  background: #F4F7FA;
  padding: 84px 0 90px;
}
.ia-services__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.ia-services__intro p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #5C7590;
  margin: 0;
  text-wrap: pretty;
}
.ia-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.ia-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform .2s;
}
.ia-service-card:hover { transform: translateY(-8px); }
.ia-service-card__hex {
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 250 / 224;
  background: linear-gradient(135deg, #F5821F 0%, #5BC6E8 100%);
}
.ia-service-card__hex img {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: cover;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.ia-service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0F2440;
  text-align: center;
}
.ia-service-card__sub {
  font-size: 14px;
  color: #F5821F;
  font-weight: 600;
  margin-top: 3px;
  text-align: center;
}

/* ===== WHY US ===== */
.ia-why {
  background: #0F2440;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.ia-why__hex-tr {
  position: absolute;
  right: -120px;
  top: -140px;
  width: 520px;
  height: 470px;
  background: rgba(91, 198, 232, .06);
}
.ia-why__hex-bl {
  position: absolute;
  left: -180px;
  bottom: -200px;
  width: 560px;
  height: 500px;
  background: rgba(245, 130, 31, .05);
}
.ia-why__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ia-why__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-wrap: pretty;
}
.ia-why__lead {
  font-size: 16.5px;
  line-height: 1.65;
  color: #C7D6E6;
  margin: 0 0 26px;
  text-wrap: pretty;
}
.ia-why__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}
.ia-why__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ia-why__check b {
  color: #F5821F;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.ia-why__check span {
  color: #EAF2F9;
  font-size: 15.5px;
  line-height: 1.5;
}
.ia-why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ia-stat { border-left: 3px solid #F5821F; padding-left: 14px; }
.ia-stat--cyan { border-left-color: #5BC6E8; }
.ia-stat__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.ia-stat__label {
  font-size: 13px;
  color: #8FA3B8;
  margin-top: 4px;
  line-height: 1.3;
}
.ia-why__media { position: relative; }
.ia-why__photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(4, 14, 28, .5);
  display: block;
}
.ia-why__badge {
  position: absolute;
  left: -26px;
  bottom: -26px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 18px 44px rgba(4, 14, 28, .4);
  display: flex;
  align-items: center;
  gap: 14px;
}
.ia-why__badge-hex {
  width: 50px;
  height: 50px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ia-why__badge-title { font-weight: 700; font-size: 15.5px; color: #0F2440; }
.ia-why__badge-sub { font-size: 13px; color: #5C7590; }

/* ===== REVIEWS ===== */
.ia-reviews {
  background: #FFFFFF;
  padding: 88px 0;
}
.ia-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.ia-reviews__head-copy { max-width: 560px; }
.ia-reviews__head-copy .ia-h2 { margin: 0; }
.ia-reviews__score {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.ia-reviews__score-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #0F2440;
  line-height: 1;
}
.ia-reviews__score-stars { color: #F5B41F; font-size: 19px; letter-spacing: 2px; }
.ia-reviews__score-text { font-size: 14px; color: #5C7590; margin-top: 2px; }
.ia-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ia-review-card {
  background: #F4F7FA;
  border: 1px solid #E4EBF2;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ia-review-card__stars { color: #F5B41F; font-size: 16px; letter-spacing: 2px; }
.ia-review-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #33506E;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.ia-review-card__author { display: flex; align-items: center; gap: 12px; }
.ia-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.ia-bg-navy { background: #0F2440; }
.ia-bg-orange { background: #F5821F; }
.ia-bg-cyan { background: #5BC6E8; }
.ia-review-card__name { font-weight: 700; font-size: 14.5px; color: #0F2440; }
.ia-review-card__meta { font-size: 13px; color: #8FA3B8; }

/* ===== LIVE REVIEW FEED (homepage + Reviews page) ===== */
.ia-review-feed { margin-top: 6px; }
/* The widget ships its own card styling; just stop it overflowing the grid
   and give the cards room to breathe on the tinted homepage band. */
.ia-review-feed .ti-widget { max-width: 100%; }
.ia-reviews .ia-review-feed { margin-top: 10px; }

/* ===== BRANDS ===== */
.ia-brands {
  background: #F4F7FA;
  border-top: 1px solid #E4EBF2;
  padding: 46px 0;
}
.ia-brands__inner { text-align: center; }
.ia-brands .ia-kicker--muted { margin-bottom: 22px; }
.ia-brands__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 46px;
}
.ia-brands__row span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #A9BACB;
}

/* ===== EMERGENCY CTA BAND ===== */
.ia-emergency {
  background: linear-gradient(100deg, #F5821F 0%, #E86A0E 100%);
  padding: 40px 0;
}
.ia-emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.ia-emergency__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.1;
}
.ia-emergency__sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .9);
  margin-top: 6px;
}
.ia-emergency__ctas { display: flex; align-items: center; gap: 16px; flex: none; }
.ia-btn-navy {
  background: #0F2440;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 30px;
  border-radius: 9px;
  letter-spacing: .3px;
  box-shadow: 0 8px 22px rgba(9, 22, 40, .35);
  display: inline-block;
}
.ia-btn-navy:hover { background: #1A3A63; color: #FFFFFF; }
.ia-btn-ghost-white {
  border: 2px solid rgba(255, 255, 255, .7);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 26px;
  border-radius: 9px;
  display: inline-block;
}
.ia-btn-ghost-white:hover { background: rgba(255, 255, 255, .12); color: #FFFFFF; }

/* ===== CONTACT / SERVICE AREA ===== */
.ia-contact {
  background: #FFFFFF;
  padding: 88px 0;
}
.ia-contact__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.ia-contact__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #0F2440;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-wrap: pretty;
}
.ia-contact__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #5C7590;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.ia-contact__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #E4EBF2;
  border-radius: 14px;
  overflow: hidden;
}
.ia-contact__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid #E4EBF2;
}
.ia-contact__row:last-child { border-bottom: 0; }
.ia-contact__hex {
  width: 42px;
  height: 42px;
  flex: none;
  background: #0F2440;
  color: #5BC6E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.ia-contact__label {
  font-size: 13px;
  color: #8FA3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ia-contact__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #0F2440;
}
.ia-contact__phone:hover { color: #F5821F; }
.ia-contact__value { font-size: 16.5px; font-weight: 600; color: #0F2440; }
a.ia-contact__value:hover { color: #F5821F; }
.ia-contact__map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E4EBF2;
  min-height: 420px;
  position: relative;
  background: repeating-linear-gradient(45deg, #EDF2F7 0px, #EDF2F7 14px, #E4EBF2 14px, #E4EBF2 28px);
}
.ia-contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.ia-footer {
  background: #0A1A30;
  color: #8FA3B8;
  padding: 64px 0 0;
}
.ia-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.ia-footer__logo { height: 76px; display: block; margin-bottom: 18px; }
.ia-footer__about {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 300px;
  text-wrap: pretty;
}
.ia-footer__social { display: flex; align-items: center; gap: 12px; }
.ia-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ia-footer__social a:hover { background: rgba(245, 130, 31, .25); }
.ia-footer__social img { display: block; }
.ia-footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.ia-footer__links { display: flex; flex-direction: column; gap: 10px; }
.ia-footer__links a { color: #8FA3B8; font-size: 14.5px; }
.ia-footer__links a:hover { color: #5BC6E8; }
.ia-footer__links a.ia-footer__link-orange { color: #F5821F; font-weight: 600; }
.ia-footer__links a.ia-footer__link-orange:hover { color: #D96D0E; }
.ia-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.ia-footer__phone {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 19px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .5px;
}
.ia-footer__phone:hover { color: #5BC6E8; }
.ia-footer__contact a { color: #8FA3B8; }
.ia-footer__contact a:hover { color: #5BC6E8; }
.ia-footer__contact a.ia-footer__phone { color: #FFFFFF; }
.ia-footer__contact a.ia-footer__phone:hover { color: #5BC6E8; }
.ia-footer__emergency { color: #5BC6E8; font-weight: 600; }
.ia-footer__license { color: #5C7590; }
.ia-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 52px;
}
.ia-footer__bottom-inner {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #5C7590;
}

/* ===== SIMPLE SERVICES DROPDOWN =====
   The panel hangs off the Services item, not the header, so it lines up under
   the trigger. The wrapper is the full header height so `top:100%` lands on
   the header's bottom edge regardless of the link's own line height. */
.ia-nav__has-drop {
  position: relative;
  display: flex;
  align-items: center;
  height: 78px;
}
.ia-servicemenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: #FFFFFF;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 24px 60px rgba(6, 18, 34, .28);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 2px;
  border-top: 3px solid #F5821F;
}
.ia-servicemenu.is-open { display: flex; }
.ia-servicemenu__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0F2440;
  padding: 12px 14px;
  border-radius: 8px;
}
.ia-servicemenu__link:hover { background: #F4F7FA; color: #F5821F; }
.ia-servicemenu__emergency {
  margin-top: 8px;
  background: #0F2440;
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 10px;
  border-radius: 8px;
}
.ia-servicemenu__emergency:hover { background: #1A3A63; color: #FFFFFF; }
/* ===== NOT-YET-CONNECTED LINKS =====
   Menu items whose page is not approved yet render as <a> with no href, so the
   navigation looks complete while going nowhere. Keep every visual treatment
   (colour, hover, the card hover-lift) and only change the cursor.

   Hello Elementor's reset.css forces `color:inherit` on `a:not([href])` at
   specificity (0,2,1), which beats our (0,1,1) menu rules and would wash the
   inert items out against their backgrounds. Restore each colour above it. */
.ia-nav__inert,
a:not([href]) { cursor: default; }
.ia-service-card--static { cursor: default; }

.ia-header .ia-nav > a.ia-nav__inert,
.ia-header .ia-nav > a.ia-nav__inert:focus,
.ia-header .ia-nav__has-drop > a.ia-nav__inert,
.ia-header .ia-nav__has-drop > a.ia-nav__inert:focus { color: #FFFFFF; }
.ia-header .ia-nav > a.ia-nav__inert:hover,
.ia-header .ia-nav__has-drop > a.ia-nav__inert:hover { color: #5BC6E8; }

.ia-servicemenu a.ia-servicemenu__link.ia-nav__inert,
.ia-servicemenu a.ia-servicemenu__link.ia-nav__inert:focus { color: #0F2440; }
.ia-servicemenu a.ia-servicemenu__link.ia-nav__inert:hover { color: #F5821F; }

.ia-footer .ia-footer__links a.ia-nav__inert,
.ia-footer .ia-footer__links a.ia-nav__inert:focus { color: #8FA3B8; }
.ia-footer .ia-footer__links a.ia-nav__inert:hover { color: #5BC6E8; }
.ia-footer .ia-footer__links a.ia-footer__link-orange.ia-nav__inert,
.ia-footer .ia-footer__links a.ia-footer__link-orange.ia-nav__inert:focus { color: #F5821F; }
.ia-footer .ia-footer__links a.ia-footer__link-orange.ia-nav__inert:hover { color: #D96D0E; }

/* ==========================================================================
   EMBEDDED FORM (Forminator) — styled to match the design's form card
   ========================================================================== */
.ia-form-embed .forminator-ui,
.ia-form-embed .forminator-custom-form { font-family: 'Barlow', sans-serif !important; }

.ia-form-embed .forminator-input,
.ia-form-embed .forminator-textarea,
.ia-form-embed select,
.ia-form-embed input[type="text"],
.ia-form-embed input[type="email"],
.ia-form-embed input[type="tel"],
.ia-form-embed textarea {
  width: 100%;
  border: 1.5px solid #D7DFE8 !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  font-family: 'Barlow', sans-serif !important;
  color: #16283E !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.ia-form-embed .forminator-input:focus,
.ia-form-embed .forminator-textarea:focus,
.ia-form-embed select:focus,
.ia-form-embed textarea:focus {
  border-color: #5BC6E8 !important;
  outline: none !important;
  box-shadow: none !important;
}
.ia-form-embed .forminator-label,
.ia-form-embed label {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #33506E !important;
}
.ia-form-embed .forminator-button-submit,
.ia-form-embed button[type="submit"],
.ia-form-embed input[type="submit"] {
  width: 100%;
  background: #F5821F !important;
  color: #FFFFFF !important;
  border: none !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16.5px !important;
  padding: 15px !important;
  border-radius: 9px !important;
  cursor: pointer;
  letter-spacing: .4px;
  box-shadow: 0 5px 16px rgba(245, 130, 31, .35) !important;
  transition: background .15s;
}
.ia-form-embed .forminator-button-submit:hover,
.ia-form-embed button[type="submit"]:hover,
.ia-form-embed input[type="submit"]:hover { background: #D96D0E !important; }
.ia-form-embed .forminator-row { margin-bottom: 12px !important; }
.ia-form-embed .forminator-title,
.ia-form-embed .forminator-subtitle { display: none !important; } /* card already has them */

/* ==========================================================================
   INNER PAGE HERO (Reviews, About, Gallery, Contact, service hubs)
   ========================================================================== */
.ia-page-hero {
  position: relative;
  background: #0F2440;
  overflow: hidden;
}
.ia-page-hero__hex {
  position: absolute;
  right: -140px;
  top: -160px;
  width: 560px;
  height: 500px;
  background: rgba(245, 130, 31, .06);
}
.ia-page-hero__inner {
  position: relative;
  padding-top: 64px;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.ia-breadcrumb {
  font-size: 13.5px;
  color: #8FA3B8;
  margin-bottom: 16px;
}
.ia-breadcrumb a { color: #8FA3B8; }
.ia-breadcrumb a:hover { color: #5BC6E8; }
.ia-breadcrumb__sep { margin: 0 6px; color: #5C7590; }
.ia-breadcrumb__current { color: #5BC6E8; }
.ia-page-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-wrap: pretty;
}
.ia-page-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #C7D6E6;
  margin: 0;
  max-width: 600px;
  text-wrap: pretty;
}
.ia-score-card {
  flex: none;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 22px 28px;
}
.ia-score-card__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.ia-score-card__stars { color: #F5B41F; font-size: 20px; letter-spacing: 2px; }
.ia-score-card__text {
  font-size: 14px;
  color: #C7D6E6;
  margin-top: 4px;
  line-height: 1.45;
}

/* ===== LIVE REVIEWS FEED ===== */
.ia-feed {
  background: #FFFFFF;
  padding: 70px 0;
}
.ia-feed__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}
.ia-feed__head .ia-kicker { margin-bottom: 10px; }
.ia-feed__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  color: #0F2440;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ia-btn-outline {
  flex: none;
  border: 2px solid #E4EBF2;
  color: #33506E;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 9px;
  display: inline-block;
}
.ia-btn-outline:hover { border-color: #F5821F; color: #F5821F; }
.ia-feed__embed { min-height: 200px; }
.ia-feed__placeholder {
  min-height: 520px;
  border-radius: 16px;
  border: 1.5px dashed #C3D0DD;
  background: repeating-linear-gradient(45deg, #EDF2F7 0px, #EDF2F7 16px, #F7FAFC 16px, #F7FAFC 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px;
}
.ia-feed__placeholder-hex {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.ia-feed__placeholder-title {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 14px;
  color: #5C7590;
  letter-spacing: .5px;
  text-align: center;
}
.ia-feed__placeholder-note {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  color: #8FA3B8;
  text-align: center;
  line-height: 1.6;
}

/* ===== FEATURED REVIEWS (Reviews page) ===== */
.ia-featured {
  background: #F4F7FA;
  padding: 70px 0 80px;
}
.ia-featured .ia-kicker--muted { margin-bottom: 22px; }
.ia-review-card--light {
  background: #FFFFFF;
  border-color: #E4EBF2;
}

/* CTA band variant used on inner pages */
.ia-emergency--compact { padding: 38px 0; }
.ia-emergency__title--sm { font-size: 31px; }
.ia-emergency--compact .ia-emergency__sub { font-size: 16px; margin-top: 5px; }
.ia-emergency--compact .ia-btn-navy { font-size: 17px; padding: 15px 28px; }
.ia-emergency--compact .ia-btn-ghost-white { font-size: 17px; padding: 13px 24px; }

/* ==========================================================================
   Responsive (the source design is desktop-first at 1240px)
   ========================================================================== */
@media (max-width: 1024px) {
  .ia-topbar__inner { height: auto; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 6px; }
  .ia-topbar__right .ia-topbar__muted { display: none; }
  .ia-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0F2440;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 18px;
    box-shadow: 0 18px 34px rgba(6, 18, 34, .4);
  }
  .ia-nav.is-open { display: flex; }
  .ia-nav > a { padding: 11px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ia-nav-toggle { display: block; }
  .ia-header__phone { display: none; }
  .ia-megamenu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 10px;
    margin-top: 8px;
    padding: 20px;
    gap: 20px;
  }
  .ia-nav__has-drop {
    display: block;
    height: auto;
    width: 100%;
  }
  .ia-nav__has-drop > a {
    display: block;
    padding: 11px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .ia-servicemenu {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 10px;
    margin: 8px 0;
    padding: 10px;
  }
  .ia-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .ia-hero__title { font-size: 48px; }
  .ia-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .ia-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ia-why__inner { grid-template-columns: 1fr; gap: 56px; }
  .ia-reviews__head { flex-direction: column; align-items: flex-start; }
  .ia-reviews__grid { grid-template-columns: 1fr; }
  .ia-emergency__inner { flex-direction: column; text-align: center; }
  .ia-contact__inner { grid-template-columns: 1fr; }
  .ia-footer__grid { grid-template-columns: 1fr 1fr; }
  .ia-page-hero__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .ia-page-hero__title { font-size: 44px; }
  .ia-feed__head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 640px) {
  .ia-container { padding-left: 20px; padding-right: 20px; }
  .ia-topbar__left .ia-topbar__muted,
  .ia-topbar__right .ia-topbar__social { display: none; }
  .ia-hero__title { font-size: 40px; }
  .ia-hero__ctas { flex-direction: column; align-items: stretch; }
  .ia-hero__ctas a { text-align: center; }
  .ia-form__row { grid-template-columns: 1fr; }
  .ia-trust__inner { grid-template-columns: 1fr; }
  .ia-services__grid { grid-template-columns: 1fr; }
  .ia-h2 { font-size: 32px; }
  .ia-why__title { font-size: 34px; }
  .ia-why__stats { grid-template-columns: repeat(2, 1fr); }
  .ia-why__badge { left: 12px; bottom: -20px; padding: 14px 16px; }
  .ia-why__photo { height: 380px; }
  .ia-emergency__ctas { flex-direction: column; width: 100%; }
  .ia-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .ia-footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .ia-page-hero__title { font-size: 34px; }
  .ia-emergency__title--sm { font-size: 25px; }
  .ia-score-card { padding: 18px 20px; gap: 14px; }
  .ia-score-card__value { font-size: 46px; }
  .ia-feed__heading { font-size: 30px; }
  .ia-feed__placeholder { min-height: 380px; padding: 28px 20px; }
}
