/* ============================================================
   style.css — AuzAir main site styles (plain CSS, no build step)
   ------------------------------------------------------------
   Linked in <head> via partials/header.php. Contains everything
   below the fold: about, services, products, stats, why, brands,
   testimonials, areas, faq, quote/form, footer, mobile bar, modal.

   NOTE on image url(): this file is served from assets/css/source/,
   so background images are referenced relative to that folder
   (../../images/...). Above-the-fold styles live in critical.css.
   ============================================================ */

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

.about-media {
  position: relative;
}

.about-media img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-exp {
  position: absolute;
  right: -6px;
  bottom: -22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 13px;
}

.about-exp .ae-ic {
  color: var(--blue);
  font-size: 40px;
}

.about-exp .ae-txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.about-exp strong {
  font-family: "Kanit",sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--blue);
  line-height: 1;
}

.about-exp .ae-sub {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--navy);
  margin-top: 4px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 24px 0 28px;
}

.checks li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
}

.checks li .material-icons {
  color: var(--blue);
  font-size: 21px;
  flex: none;
  margin-top: 1px;
}

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

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-call .ac-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
}

.about-call small {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

.about-call strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
}

@media (min-width:980px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.svc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .16s ease,box-shadow .16s ease;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc .svc-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.svc .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.svc:hover .svc-img img {
  transform: scale(1.06);
}

.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,var(--blue-deep) 0%,rgba(51,95,224,.86) 30%,rgba(51,95,224,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.svc .svc-ic {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.svc .svc-ic .material-icons {
  font-size: 30px;
}

.svc-body {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
  color: #fff;
}

.svc-body h3 {
  font-size: 23px;
  margin-bottom: 8px;
  color: #fff;
}

.svc-body p {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.svc-body p.clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 6px;
}

.svc-body p.clamp.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
  margin-bottom: 12px;
}

.svc-body .p-more {
  color: #fff;
}

.svc-body .o-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  transition: gap .15s;
}

.svc-body .o-link .material-icons {
  font-size: 18px;
}

.svc:hover .svc-body .o-link {
  gap: 11px;
}

@media (min-width:760px) {
  .svc-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

/* ===== PRODUCTS ===== */
.products {
  background: #fff;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.prod {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}

.prod:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cfe0fb;
}

.prod .p-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: var(--blue-tint);
  color: var(--blue);
  margin-bottom: 20px;
  transition: background .16s,color .16s;
}

.prod:hover .p-ic {
  background: var(--blue);
  color: #fff;
}

.prod .p-ic .material-icons {
  font-size: 36px;
}

.prod {
  padding-top: 0;
  overflow: hidden;
}

.prod .p-img {
  width: calc(100% + 56px);
  max-width: none;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0;
  margin: 0 -28px 20px;
  display: block;
}

.prod h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.prod p {
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 18px;
}

.prod p.clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 6px;
}

.prod p.clamp.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
  margin-bottom: 18px;
}

.p-more {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.p-more::after {
  content: "expand_more";
  font-family: "Material Icons";
  font-size: 18px;
  transition: transform .18s;
}

.p-more.open::after {
  transform: rotate(180deg);
}

.prod .p-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.prod .p-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eaecf1;
  color: var(--blue);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12.5px;
  font-weight: 600;
}

.prod .p-cat .material-icons {
  font-size: 15px;
}

.prod a.p-cat {
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  transition: background .15s;
}

.prod a.p-cat:hover {
  background: var(--blue);
}

.prod a.p-cat .material-icons {
  color: #fff;
}

.prod.prod-blue {
  background: linear-gradient(160deg,var(--blue) 0%,#81a1ff 100%);
  border-color: transparent;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 44px 30px;
}

.prod.prod-blue .p-ic {
  display: none;
}

.prod.prod-blue h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

.prod.prod-blue p {
  color: rgba(255,255,255,.9);
}

.prod.prod-blue .p-more {
  color: #fff;
}

.prod.prod-blue .p-cats {
  justify-content: flex-start;
  margin-top: 22px;
}

.prod.prod-blue a.p-cat {
  background: #fff;
  color: var(--blue);
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
}

.prod.prod-blue a.p-cat:hover {
  background: #eaf0ff;
}

.prod.prod-blue a.p-cat .material-icons {
  color: var(--blue);
}

.prod.prod-blue {
  min-height: 600px;
}

.prod.prod-blue .cta-img {
  width: calc(100% + 60px);
  max-width: none;
  margin: auto -30px -44px -30px;
  display: block;
  pointer-events: none;
}

.prod.prod-blue .pb-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width:980px) {
  .prod.prod-blue {
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
    gap: 24px;
    height: 273px;
    min-height: 0;
  }

  .prod.prod-blue .pb-body {
    flex: 1;
    min-width: 0;
    padding: 0;
  }

  .prod.prod-blue .cta-img {
    width: auto;
    max-width: 56%;
    height: auto;
    max-height: 273px;
    margin: 0;
    flex: none;
    align-self: center;
    object-fit: contain;
  }

  .prod.prod-banner {
    height: 273px;
    min-height: 0;
  }

  .prod.prod-banner .p-img {
    width: 42%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    align-self: stretch;
  }

  .prod.prod-banner .pb-body {
    padding: 0 30px;
  }

  .prod.prod-banner p.clamp,.prod.prod-blue p.clamp {
    -webkit-line-clamp: 1;
    margin-bottom: 2px;
  }

  .prod.prod-banner h3,.prod.prod-blue h3 {
    margin-bottom: 6px;
  }

  .prod.prod-banner .p-more,.prod.prod-blue .p-more {
    margin-bottom: 0;
  }

  .prod.prod-banner .p-cats,.prod.prod-blue .p-cats {
    margin-top: 12px;
  }
}

.prod.prod-banner {
  background: var(--navy);
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.prod.prod-banner .p-img {
  width: 42%;
  max-width: none;
  aspect-ratio: auto;
  height: auto;
  align-self: stretch;
  object-fit: cover;
  margin: 0;
  flex: none;
  border-radius: 0;
}

.prod.prod-banner .pb-body {
  flex: 1;
  min-width: 0;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.prod.prod-banner h3 {
  color: #fff;
}

.prod.prod-banner p {
  color: rgba(255,255,255,.9);
}

.prod.prod-banner .p-more {
  color: #fff;
}

.prod.prod-banner .p-cat {
  background: rgba(255,255,255,.2);
  color: #fff;
}

.prod.prod-banner .p-cat:nth-of-type(1) {
  background: var(--red);
  color: #fff;
}

.prod.prod-banner .p-cat:nth-of-type(2) {
  background: var(--blue);
  color: #fff;
}

.prod.prod-banner .p-cat .material-icons {
  color: #fff;
}

@media (max-width:559px) {
  .prod.prod-banner {
    flex-direction: column;
  }

  .prod.prod-banner .p-img {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .prod.prod-banner .pb-body {
    padding: 24px;
  }
}
/* ===== ICONS ONLY — strip decorative icon backgrounds ===== */
.p-ic,.f-ic,.eb-ic,.svc-ic,.ac-ic {
  background: transparent!important;
  box-shadow: none!important;
  border: none!important;
}

.prod:hover .p-ic {
  background: transparent!important;
  color: var(--blue);
}

.feat .f-ic {
  background: transparent!important;
  color: var(--red);
}

.feat:hover .f-ic {
  background: transparent!important;
  color: var(--red);
}

.eb-item .eb-ic,.eb-item.eb-emerg .eb-ic {
  background: transparent!important;
  color: var(--blue);
  box-shadow: none!important;
}

.svc .svc-ic .material-icons {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.5));
}

.about-call .ac-ic {
  background: transparent!important;
  color: var(--blue);
}

@media (min-width:980px) {
  .prod-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

@media (min-width:980px) {
  .prod.prod-banner,.prod.prod-blue {
    grid-column: span 2;
  }
}

/* ===== STATS BAND ===== */
.stats {
  background: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 18px;
  text-align: center;
}

.stat .s-num {
  font-family: "Kanit",sans-serif;
  font-weight: 800;
  font-size: clamp(54px,7vw,88px);
  color: var(--blue);
  line-height: 1;
  white-space: nowrap;
}

.stat .s-lab {
  margin-top: 4px;
  font-family: "Kanit",sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .2px;
}

@media (min-width:760px) {
  .stat-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

@media (max-width:600px) {
  .stat .s-num {
    font-size: 40px;
  }

  .stat .s-lab {
    font-size: 13px;
  }
}

/* ===== WHY / FEATURES ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease,box-shadow .16s ease;
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #cfe0fb;
}

.feat .f-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  margin-bottom: 16px;
  transition: background .16s,color .16s;
}

.feat:hover .f-ic {
  background: var(--blue);
  color: #fff;
}

.feat .f-ic .material-icons {
  font-size: 36px;
}

.feat h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.feat p {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

@media (min-width:560px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width:980px) {
  .why-grid {
    grid-template-columns: repeat(4,1fr);
  }
}

#why {
  background: var(--bg);
  padding-bottom: 170px;
}

#why .wrap {
  background: linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.5)),url('../../images/why-difference.jpg') center/cover;
  border-radius: 40px;
  padding: 64px 48px;
  box-shadow: var(--shadow);
  overflow: visible;
}

#why .kicker {
  background: var(--blue-tint);
  color: var(--blue);
}

#why .sec-head h2 {
  color: var(--blue);
}

#why .sec-head p {
  color: var(--muted);
}

#why .feat {
  background: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

#why .feat:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

#why .feat h3 {
  color: var(--navy);
}

#why .feat p {
  color: rgba(22,25,34,.7);
}

#why .feat .f-ic {
  color: var(--blue);
}

@media (min-width:980px) {
  #why .why-grid {
    margin-bottom: -196px;
  }
}

@media (max-width:600px) {
  #why .wrap {
    padding: 44px 22px;
    border-radius: 28px;
    background: var(--blue);
  }

  #why .sec-head h2 {
    color: #fff;
  }

  #why .sec-head p {
    color: rgba(255,255,255,.85);
  }

  #why .kicker {
    background: rgba(255,255,255,.16);
    color: #fff;
  }
}

/* ===== BRANDS ===== */
.brands {
  background: var(--bg);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.logo-slot img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-slot img[src*="samsung"] {
  height: 72px;
}

/* ===== TESTIMONIALS ===== */
.tgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 44px -14px rgba(129,161,255,.6),var(--shadow-sm);
  padding: 28px;
  position: relative;
}

.tcard .quote-ic {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--sky);
  font-size: 60px;
  font-family: Georgia,serif;
  line-height: 1;
  font-weight: 700;
}

.tcard .stars {
  display: inline-flex;
  margin-bottom: 12px;
}

.tcard .stars .material-icons {
  color: var(--star);
  font-size: 21px;
}

.tcard p {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 17px;
}

.who>span:not(.avatar):not(.gverify) {
  min-width: 0;
}

.who .name {
  display: block;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
}

.who .suburb {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.who .gverify {
  margin-left: auto;
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}

.who .gverify .g-ic {
  width: 15px;
  height: 15px;
  flex: none;
}

@media (max-width:600px) {
  .avatar {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .who .name {
    font-size: 14.5px;
  }

  .who .suburb {
    font-size: 12px;
  }

  .who .gverify {
    font-size: 10.5px;
  }
}

@media (min-width:860px) {
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
}

.tdots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.tdots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #cfd8ea;
  cursor: pointer;
  transition: width .2s ease,background .2s ease;
}

.tdots button:hover {
  background: #a9bbe0;
}

.tdots button.active {
  width: 30px;
  background: var(--blue);
}

/* ===== AREAS ===== */
.areas {
  background: var(--bg);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.chip .material-icons {
  font-size: 17px;
  color: var(--blue);
}

.chip.wide {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.chip.wide .material-icons {
  color: #fff;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (min-width:980px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  max-width: 840px;
  margin: 0 auto;
}

.acc {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary .material-icons {
  color: var(--blue);
  transition: transform .2s;
}

.acc[open] summary .material-icons {
  transform: rotate(45deg);
}

.acc .acc-body {
  padding: 0 22px 22px;
  color: var(--muted);
  font-weight: 500;
}

/* ===== QUOTE / FORM ===== */
.quote {
  background: linear-gradient(120deg,var(--navy) 0%,#12386e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 85% 0%,rgba(90,160,255,.16) 0%,rgba(90,160,255,0) 55%);
  pointer-events: none;
}

.quote .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.quote-info h2 {
  color: #fff;
  font-size: clamp(30px,5vw,46px);
}

.quote-info p.lead {
  color: #c7d4ea;
  font-weight: 500;
  margin-top: 14px;
}

.quote-info .qi-list {
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.quote-info .qi-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.quote-info .qi-list .material-icons {
  color: #5aa0ff;
}

.quote-info .qi-call {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.quote-info .qi-call .material-icons {
  color: #5aa0ff;
  font-size: 30px;
}

.quote-info .qi-call span {
  font-size: 26px;
}

.form-card {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.form-card h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.form-card .fc-sub {
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 6px;
}

.field input,.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 14px;
  border: 1px solid #d5deec;
  border-radius: 11px;
  background: #f7faff;
  color: var(--ink);
  min-height: 52px;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,99,230,.16);
  background: #fff;
}

.form-card .btn {
  width: 100%;
  font-size: 18px;
  margin-top: 4px;
}

.form-micro {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 12px;
}

.reassure span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
}

.reassure .material-icons {
  font-size: 17px;
  color: #0f9d58;
}

.form-success {
  display: none;
  background: #0f9d58;
  color: #fff;
  border-radius: 11px;
  padding: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
}

.form-success.show {
  display: block;
}

.hp-field {
  position: absolute!important;
  left: -9999px!important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width:980px) {
  .quote .wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue);
  color: #dbe4ff;
  padding: 72px 0 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.foot-logo {
  display: inline-flex;
}

.foot-logo img {
  height: 46px;
  filter: brightness(0) invert(1);
}

.foot-brand .tag {
  margin: 16px 0 14px;
  max-width: 320px;
  font-weight: 500;
}

.foot-brand .stars .material-icons {
  color: var(--star);
  font-size: 20px;
}

.foot-brand .rev {
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  color: #cdd8ea;
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.foot-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s,transform .15s;
}

.foot-social a:hover {
  background: #c31f17;
  transform: translateY(-2px);
}

.foot-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.foot-col h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}

.foot-col a,.foot-col p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #dbe4ff;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 15px;
}

.foot-col a .material-icons,.foot-col p .material-icons {
  font-size: 19px;
  color: #fff;
}

.foot-col a:hover {
  color: #fff;
}

.foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  color: #eaf0ff;
}

.pill .material-icons {
  font-size: 15px;
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.22);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.aiims-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  transition: color .15s;
}

.aiims-credit:hover {
  color: #fff;
}

.aiims-credit img {
  height: 40px;
  width: auto;
  display: block;
}

@media (min-width:760px) {
  .foot-grid {
    grid-template-columns: 1.5fr 1fr 1.1fr;
  }
}

/* ===== STICKY MOBILE ACTION BAR ===== */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -8px 24px rgba(11,30,59,.18);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-weight: 800;
  color: #fff;
  font-size: 15.5px;
}

.mobile-bar .mb-call {
  background: var(--navy);
}

.mobile-bar .mb-quote {
  background: var(--blue);
}

.mobile-bar .material-icons {
  font-size: 21px;
}

@media (max-width:759px) {
  body {
    padding-bottom: 60px;
  }

  .mobile-bar {
    display: grid;
  }
}

/* ===== QUOTE POPUP MODAL ===== */
.qmodal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(15,17,25,.6);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease,visibility .25s ease;
}

.qmodal.open {
  opacity: 1;
  visibility: visible;
}

.qmodal-card {
  position: relative;
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 34px 30px;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(16px) scale(.98);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

.qmodal.open .qmodal-card {
  transform: none;
}

.qmodal-card h3 {
  font-size: 26px;
  margin-bottom: 4px;
  color: #fff;
}

.qmodal-card .fc-sub {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.qmodal-card .field label {
  color: #fff;
}

.qmodal-card .field input,.qmodal-card .field textarea {
  background: #fff;
  border-color: transparent;
  color: var(--ink);
}

.qmodal-card .field input:focus,.qmodal-card .field textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.4);
}

.qmodal-usps {
  list-style: none;
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
}

.qmodal-usps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.94);
}

.qmodal-usps li .material-icons {
  font-size: 20px;
  color: #bcd0ff;
}

.qmodal-card .btn {
  width: 100%;
  font-size: 18px;
  margin-top: 4px;
}

.qmodal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s,color .15s;
}

.qmodal-close:hover {
  background: var(--red);
  color: #fff;
}
