/* ============================================================
   AIR POWER SOLUTIONS — styles.css
   Design: Industrial B2B · Steel Blue #0057c2 · Orange #e05316
   Font: Plus Jakarta Sans (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand — extracted from official APS logo */
  --blue:        #4268c7;   /* S square medium blue  */
  --blue-hover:  #3558b0;
  --blue-dark:   #1e3a5f;   /* A square dark navy    */
  --blue-sky:    #5bbde0;   /* P square sky blue     */
  --blue-light:  #e5eeff;
  --orange:      #e05316;
  --orange-hover:#c94a13;

  /* Dark surfaces */
  --dark:   #1e3a5f;   /* brand navy hero bg   */
  --dark-2: #0f1a35;   /* section--dark bg     */
  --dark-3: #243752;   /* card--dark bg        */

  /* Light surfaces */
  --surface:   #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #f1f5f9;
  --border:    #e2e8f0;

  /* Text */
  --text:          #0f172a;
  --text-muted:    #475569;
  --text-faint:    #94a3b8;
  --text-inv:      #f8fafc;
  --text-inv-muted:rgba(248,250,252,.72);

  /* Type scale (fluid) */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);

  /* Spacing (4px base) */
  --sp1:0.25rem; --sp2:0.5rem;  --sp3:0.75rem; --sp4:1rem;
  --sp5:1.25rem; --sp6:1.5rem;  --sp8:2rem;    --sp10:2.5rem;
  --sp12:3rem;   --sp16:4rem;   --sp20:5rem;   --sp24:6rem;

  /* Layout */
  --w-narrow:  680px;
  --w-default: 1040px;
  --w-wide:    1240px;

  /* UI */
  --r-sm:   0.375rem;
  --r-md:   0.625rem;
  --r-lg:   1rem;
  --r-full: 9999px;
  --dur:    180ms cubic-bezier(0.16,1,0.3,1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --font: 'Plus Jakarta Sans','Helvetica Neue',Arial,sans-serif;
  --header-h: 72px;
}

/* ===== BASE RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-h);
}
body{
  font-family:var(--font);
  font-size:var(--text-base);
  color:var(--text);
  background:var(--surface);
  line-height:1.65;
}
img,picture{display:block;max-width:100%;height:auto}
h1,h2,h3,h4,h5,h6{line-height:1.18;text-wrap:balance;font-weight:800}
p,li{text-wrap:pretty;max-width:68ch}
a{color:inherit;text-decoration:none;
  transition:color var(--dur)}
ul[role=list],ol[role=list]{list-style:none}
input,button,textarea,select{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:none}
:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:var(--r-sm)}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
}

/* ===== LAYOUT ===== */
.container{
  width:100%;
  max-width:var(--w-wide);
  margin-inline:auto;
  padding-inline:clamp(var(--sp4),4vw,var(--sp10));
}
.container--narrow  {max-width:var(--w-narrow)}
.container--default {max-width:var(--w-default)}

.section{padding-block:clamp(var(--sp12),7vw,var(--sp24))}
.section--alt {background:var(--surface-2)}
.section--dark{background:var(--dark-2);color:var(--text-inv)}
.section--blue{background:var(--blue);color:#fff}

/* ===== TYPOGRAPHY ===== */
.eyebrow{
  font-size:var(--text-xs);font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--blue);margin-bottom:var(--sp3);
}
.eyebrow--inv{color:#93c5fd}
.section-title{font-size:var(--text-xl);font-weight:800;margin-bottom:var(--sp5)}
.section-lead{
  font-size:var(--text-base);color:var(--text-muted);
  max-width:60ch;margin-bottom:var(--sp10);
}
.section--dark .section-lead{color:var(--text-inv-muted)}
.text-center{text-align:center}
.text-center .section-lead,.text-center .section-title{margin-inline:auto}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:var(--sp2);
  padding:var(--sp3) var(--sp6);
  border-radius:var(--r-md);
  font-size:var(--text-sm);font-weight:700;
  border:2px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:background var(--dur),color var(--dur),border-color var(--dur),box-shadow var(--dur),transform var(--dur);
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--orange);color:#fff;border-color:var(--orange)}
.btn-primary:hover{background:var(--orange-hover);border-color:var(--orange-hover)}
.btn-blue{background:var(--blue);color:#fff;border-color:var(--blue)}
.btn-blue:hover{background:var(--blue-hover);border-color:var(--blue-hover)}
.btn-outline{background:transparent;color:var(--blue);border-color:var(--blue)}
.btn-outline:hover{background:var(--blue);color:#fff}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn-ghost:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-lg{padding:var(--sp4) var(--sp8);font-size:var(--text-base)}

/* ===== SKIP LINK ===== */
.skip-link{
  position:absolute;top:-120px;left:var(--sp4);z-index:9999;
  padding:var(--sp2) var(--sp5);background:var(--blue);color:#fff;
  font-weight:700;border-radius:var(--r-md);
  transition:top var(--dur);
}
.skip-link:focus{top:var(--sp4)}

/* ===== HEADER ===== */
.site-header{
  position:sticky;top:0;z-index:100;
  height:var(--header-h);
  background:var(--surface);
  border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  height:100%;
  display:flex;align-items:center;justify-content:space-between;
  gap:var(--sp4);
}
.site-logo{
  display:flex;align-items:center;gap:var(--sp3);
  text-decoration:none;flex-shrink:0;
}
.logo-mark{width:38px;height:38px;flex-shrink:0}
.logo-text{display:flex;flex-direction:column;line-height:1.1}
.logo-text strong{font-size:var(--text-sm);font-weight:800;color:var(--dark)}
.logo-text span{font-size:var(--text-xs);font-weight:500;color:var(--text-muted)}

.main-nav{display:flex;align-items:center;gap:var(--sp1)}
.nav-link{
  padding:var(--sp2) var(--sp3);
  font-size:var(--text-sm);font-weight:600;
  color:var(--text-muted);border-radius:var(--r-sm);
  transition:color var(--dur),background var(--dur);
  white-space:nowrap;
}
.nav-link:hover,.nav-link.active{color:var(--blue);background:var(--blue-light)}
.nav-phone{
  font-size:var(--text-sm);font-weight:700;color:var(--text);
  padding-left:var(--sp4);margin-left:var(--sp2);
  border-left:1px solid var(--border);white-space:nowrap;
}
.nav-cta{margin-left:var(--sp2)}

/* Hamburger */
.hamburger{
  display:none;flex-direction:column;justify-content:center;
  gap:5px;width:40px;height:40px;padding:var(--sp2);
  border-radius:var(--r-sm);
}
.hamburger span{
  display:block;height:2px;background:var(--text);
  border-radius:2px;transition:transform var(--dur),opacity var(--dur);
}
.hamburger[aria-expanded=true] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger[aria-expanded=true] span:nth-child(2){opacity:0}
.hamburger[aria-expanded=true] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile nav */
.mobile-nav{
  display:none;position:fixed;
  top:var(--header-h);left:0;right:0;bottom:0;
  background:var(--surface);padding:var(--sp6);
  flex-direction:column;gap:var(--sp2);
  overflow-y:auto;z-index:99;
  border-top:1px solid var(--border);
}
.mobile-nav.open{display:flex}
.mobile-nav .nav-link{font-size:var(--text-base);padding:var(--sp3) var(--sp4);border-radius:var(--r-md)}
.mobile-nav .btn{width:100%;justify-content:center;margin-top:var(--sp4)}
.mobile-nav .nav-phone{border:none;padding:var(--sp3) var(--sp4);font-size:var(--text-base);margin:0}

@media(max-width:900px){
  .main-nav,.nav-phone,.nav-cta{display:none}
  .hamburger{display:flex}
}

/* ===== HERO ===== */
.hero{
  position:relative;
  background:var(--dark);
  color:var(--text-inv);
  overflow:hidden;
  display:flex;align-items:center;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(110deg,rgba(15,26,53,.97) 40%,rgba(15,26,53,.72) 100%);
  z-index:1;
}
.hero-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center right;
  opacity:.55;
}
/* Stronger left-side gradient ensures hero text readability over varied product imagery */
.hero::before{
  background:linear-gradient(95deg,
    rgba(15,26,53,0.96) 0%,
    rgba(15,26,53,0.88) 30%,
    rgba(15,26,53,0.5) 65%,
    rgba(15,26,53,0.25) 100%);
}
.hero-content{
  position:relative;z-index:2;
  padding-block:clamp(var(--sp16),10vw,var(--sp24));
}
.hero-eyebrow{
  font-size:var(--text-xs);font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:#93c5fd;margin-bottom:var(--sp4);
}
.hero h1{
  font-size:clamp(2.25rem,1rem+2.5vw,3.5rem);
  font-weight:800;margin-bottom:var(--sp5);
  line-height:1.05;max-width:20ch;
  letter-spacing:-0.015em;
}
.hero-lead{
  font-size:var(--text-base);color:var(--text-inv-muted);
  max-width:52ch;margin-bottom:var(--sp8);
  line-height:1.65;
}
.hero-actions{display:flex;gap:var(--sp3);flex-wrap:wrap}
.hero--home{min-height:640px}
.hero--inner{min-height:380px}
.hero--inner h1{font-size:clamp(2rem,1rem+2vw,3rem);font-weight:800;letter-spacing:-0.01em}

/* ===== BREADCRUMB ===== */
.breadcrumb{
  padding-block:var(--sp3);
  background:var(--surface-2);
  border-bottom:1px solid var(--border);
}
.breadcrumb ol{
  display:flex;flex-wrap:wrap;gap:var(--sp1) var(--sp2);
  list-style:none;font-size:var(--text-xs);color:var(--text-faint);
}
.breadcrumb li+li::before{content:'/';margin-right:var(--sp2)}
.breadcrumb a{color:var(--text-muted)}
.breadcrumb a:hover{color:var(--blue)}
.breadcrumb li:last-child{color:var(--text);font-weight:600}

/* ===== CARDS GRID ===== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(min(280px,100%),1fr));
  gap:var(--sp6);
}
.cards-grid--2{grid-template-columns:repeat(auto-fill,minmax(min(360px,100%),1fr))}
.cards-grid--4{grid-template-columns:repeat(auto-fill,minmax(min(220px,100%),1fr))}

/* ===== CARD ===== */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:var(--sp8);
  box-shadow:var(--shadow-sm);
  transition:box-shadow var(--dur),transform var(--dur),border-color var(--dur);
  display:flex;flex-direction:column;
}
a.card{text-decoration:none;color:inherit}
.card:hover{box-shadow:var(--shadow-md);border-color:var(--blue);transform:translateY(-3px)}
.card-icon{
  width:48px;height:48px;
  background:var(--blue-light);border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:var(--sp5);color:var(--blue);flex-shrink:0;
}
.card-icon svg{width:24px;height:24px}
.card h3{font-size:var(--text-base);font-weight:700;margin-bottom:var(--sp3)}
.card p{font-size:var(--text-sm);color:var(--text-muted);flex:1;margin-bottom:var(--sp5);max-width:100%}
.card-link{
  font-size:var(--text-sm);font-weight:700;color:var(--blue);
  display:inline-flex;align-items:center;gap:4px;
  margin-top:auto;transition:gap var(--dur);
}
.card-link:hover{gap:8px}

/* Dark card variant */
.card--dark{
  background:var(--dark-3);border-color:rgba(255,255,255,.08);
  color:var(--text-inv);
}
.card--dark:hover{border-color:rgba(255,255,255,.22)}
.card--dark p{color:var(--text-inv-muted)}
.card--dark .card-link{color:#93c5fd}
.card--dark .card-icon{background:rgba(255,255,255,.08);color:#93c5fd}

/* ===== SPLIT LAYOUT ===== */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(var(--sp8),5vw,var(--sp16));
  align-items:center;
}
@media(max-width:768px){.split{grid-template-columns:1fr}}
.split:has(> :only-child){grid-template-columns:minmax(0,var(--w-default));justify-content:center}
.split-img{
  width:100%;height:380px;
  object-fit:contain;
  background:var(--surface-2);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg);
  padding:var(--sp6);
}

/* ===== FEATURE LIST ===== */
.feature-list{list-style:none;display:flex;flex-direction:column;gap:var(--sp4)}
.feature-list li{display:flex;gap:var(--sp3);align-items:flex-start;max-width:100%}
.check{
  width:22px;height:22px;
  background:var(--blue);border-radius:var(--r-full);
  display:flex;align-items:center;justify-content:center;
  color:#fff;flex-shrink:0;margin-top:2px;
}
.check svg{width:12px;height:12px}
.feature-list li > div{flex:1;max-width:100%}
.feature-list strong{display:block;font-weight:700;font-size:var(--text-sm);margin-bottom:2px}
.feature-list p{font-size:var(--text-sm);color:var(--text-muted);margin:0;max-width:100%}

/* ===== PROCESS STEPS ===== */
.process-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:var(--sp8);
}
.step-num{
  font-size:clamp(2.5rem,2rem+1vw,4rem);
  font-weight:800;color:var(--blue-light);
  line-height:1;margin-bottom:var(--sp3);
}
.section--dark .step-num{color:rgba(255,255,255,.08)}
.process-step h3{font-size:var(--text-base);font-weight:700;margin-bottom:var(--sp2)}
.process-step p{font-size:var(--text-sm);color:var(--text-muted);margin:0;max-width:100%}
.section--dark .process-step p{color:var(--text-inv-muted)}

/* ===== FAQ (details/summary) ===== */
.faq-list{display:flex;flex-direction:column}
details.faq-item{border-bottom:1px solid var(--border)}
details.faq-item summary{
  padding:var(--sp5) 0;
  font-size:var(--text-base);font-weight:700;
  cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:var(--sp4);
}
details.faq-item summary::-webkit-details-marker{display:none}
details.faq-item summary::after{
  content:'+';font-size:1.5rem;font-weight:400;
  color:var(--blue);flex-shrink:0;
  transition:transform var(--dur);
  line-height:1;
}
details.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-answer{
  padding-bottom:var(--sp5);
  color:var(--text-muted);font-size:var(--text-sm);
  line-height:1.7;
}

/* ===== CTA BAND ===== */
.cta-band{
  background:var(--blue);color:#fff;
  padding-block:clamp(var(--sp12),6vw,var(--sp20));
  text-align:center;
}
.cta-band h2{
  font-size:var(--text-xl);font-weight:800;
  margin-bottom:var(--sp4);
  max-width:26ch;margin-inline:auto;
}
.cta-band p{
  color:rgba(255,255,255,.82);
  max-width:50ch;margin-inline:auto;
  margin-bottom:var(--sp8);
}
.cta-actions{display:flex;gap:var(--sp4);flex-wrap:wrap;justify-content:center}
.cta-band .btn-primary{background:var(--orange);border-color:var(--orange)}
.cta-band .btn-primary:hover{background:var(--orange-hover);border-color:var(--orange-hover)}

/* ===== GEO LINE ===== */
.geo-line{
  background:var(--surface-3);border-top:1px solid var(--border);
  padding:var(--sp5) 0;text-align:center;
  font-size:var(--text-sm);color:var(--text-muted);
}
.geo-line strong{color:var(--text)}

/* ===== TRUST / STATS STRIP ===== */
.trust-strip{
  padding:var(--sp6) 0;
  background:var(--surface-2);
  border-bottom:1px solid var(--border);
  text-align:center;
}
.trust-label{
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:var(--sp4);
  max-width:none;
}
.trust-logos{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:var(--sp6);
  list-style:none;
  padding:0;
  margin:0;
}
.trust-logos li{
  font-size:1rem;
  font-weight:600;
  color:var(--text);
  letter-spacing:-.005em;
  position:relative;
}
.trust-logos li:not(:last-child)::after{
  content:"";
  position:absolute;
  right:calc(var(--sp6) * -0.5);
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:1.25rem;
  background:var(--border);
}
@media (max-width: 768px){
  .trust-logos{gap:var(--sp4);flex-direction:column}
  .trust-logos li:not(:last-child)::after{display:none}
}

/* ===== CERT BADGES ===== */
.cert-badges{display:flex;flex-wrap:wrap;gap:var(--sp3);margin-top:var(--sp6)}
.cert-badge{
  display:inline-flex;align-items:center;gap:var(--sp2);
  padding:var(--sp2) var(--sp4);
  background:var(--blue-light);color:var(--blue);
  border-radius:var(--r-full);
  font-size:var(--text-xs);font-weight:700;
}

/* ===== TOWN GRID ===== */
.town-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(130px,1fr));
  gap:var(--sp3);margin-top:var(--sp6);
}
.town-tag{
  background:var(--surface-2);border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:var(--sp2) var(--sp4);
  font-size:var(--text-sm);font-weight:600;color:var(--text-muted);
  text-align:center;
}

/* ===== CONTACT FORM ===== */
.contact-form{display:flex;flex-direction:column;gap:var(--sp5)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:var(--sp5)}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}
.form-group{display:flex;flex-direction:column;gap:var(--sp2)}
.form-group label{font-size:var(--text-sm);font-weight:600;color:var(--text)}
.form-group input,
.form-group textarea,
.form-group select{
  padding:var(--sp3) var(--sp4);
  border:1.5px solid var(--border);
  border-radius:var(--r-md);
  background:var(--surface);
  font-size:var(--text-base);color:var(--text);
  transition:border-color var(--dur),box-shadow var(--dur);
  width:100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  outline:none;border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(0,87,194,.12);
}
.form-group textarea{min-height:140px;resize:vertical}
.required{color:var(--orange)}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--dark-2);color:var(--text-inv);
  padding-top:clamp(var(--sp12),6vw,var(--sp20));
}
.footer-grid{
  display:grid;
  grid-template-columns:1.8fr repeat(3,1fr);
  gap:var(--sp10);
  padding-bottom:var(--sp12);
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.footer-grid{grid-template-columns:1fr}}
.footer-brand p{
  font-size:var(--text-sm);color:var(--text-inv-muted);
  margin-top:var(--sp4);max-width:36ch;line-height:1.7;
}
.footer-brand address{
  font-style:normal;font-size:var(--text-sm);
  color:var(--text-inv-muted);margin-top:var(--sp4);line-height:1.85;
}
.footer-brand address a{color:var(--text-inv-muted)}
.footer-brand address a:hover{color:#fff}
.footer-col h4{
  font-size:var(--text-xs);font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-inv-muted);margin-bottom:var(--sp4);
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:var(--sp2)}
.footer-col a{
  font-size:var(--text-sm);color:rgba(248,250,252,.6);
  transition:color var(--dur);
}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-block:var(--sp5);
  display:flex;justify-content:space-between;align-items:center;
  gap:var(--sp4);flex-wrap:wrap;
}
.footer-bottom p{font-size:var(--text-xs);color:rgba(248,250,252,.4);margin:0;max-width:100%}
.footer-bottom a{color:rgba(248,250,252,.4);transition:color var(--dur)}
.footer-bottom a:hover{color:#fff}
.footer-badges{display:flex;gap:var(--sp3);flex-wrap:wrap}
.footer-badge{
  font-size:var(--text-xs);font-weight:700;
  color:rgba(248,250,252,.5);
  border:1px solid rgba(255,255,255,.15);
  padding:var(--sp1) var(--sp3);border-radius:var(--r-full);
}

/* ===== STATS ROW ===== */
.stats-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:var(--sp6);
  padding-block:var(--sp10);
  border-block:1px solid rgba(255,255,255,.1);
}
.stat{text-align:center}
.stat-number{
  font-size:clamp(2rem,1rem+2vw,3rem);
  font-weight:800;color:#fff;line-height:1;margin-bottom:var(--sp1);
}
.stat-label{
  font-size:var(--text-xs);color:var(--text-inv-muted);
  text-transform:uppercase;letter-spacing:.08em;
}

/* ===== INDUSTRY TAGS ===== */
.industry-tags{display:flex;flex-wrap:wrap;gap:var(--sp3);margin-top:var(--sp6)}
.industry-tag{
  padding:var(--sp2) var(--sp4);
  background:var(--surface-2);border:1px solid var(--border);
  border-radius:var(--r-full);
  font-size:var(--text-xs);font-weight:700;color:var(--text-muted);
}

/* ===== UTILITIES ===== */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.mt-4{margin-top:var(--sp4)}
.mt-6{margin-top:var(--sp6)}
.mt-8{margin-top:var(--sp8)}
.mt-10{margin-top:var(--sp10)}
.mb-8{margin-bottom:var(--sp8)}

/* ===== PAGE: CONTACT SPLIT ===== */
.contact-split{
  display:grid;grid-template-columns:1.3fr 1fr;
  gap:clamp(var(--sp8),5vw,var(--sp16));
}
@media(max-width:768px){.contact-split{grid-template-columns:1fr}}
.contact-info{display:flex;flex-direction:column;gap:var(--sp6)}
.contact-detail{display:flex;gap:var(--sp4);align-items:flex-start}
.contact-icon{
  width:44px;height:44px;
  background:var(--blue-light);border-radius:var(--r-md);
  display:flex;align-items:center;justify-content:center;
  color:var(--blue);flex-shrink:0;
}
.contact-icon svg{width:20px;height:20px}
.contact-detail h3{font-size:var(--text-sm);font-weight:700;margin-bottom:var(--sp1)}
.contact-detail p,.contact-detail a{font-size:var(--text-sm);color:var(--text-muted);max-width:100%}
.contact-detail a:hover{color:var(--blue)}

/* ===== EMERGENCY CALLOUT ===== */
.emergency-callout{
  background:var(--orange);color:#fff;
  padding:var(--sp6);border-radius:var(--r-lg);
  margin-top:var(--sp8);
}
.emergency-callout h3{font-size:var(--text-lg);font-weight:800;margin-bottom:var(--sp2)}
.emergency-callout p{color:rgba(255,255,255,.88);font-size:var(--text-sm);max-width:100%}
.emergency-callout a{color:#fff;font-weight:800;font-size:var(--text-lg)}

/* ===== LOGO IMAGE ===== */
.site-logo-img{height:60px;width:auto;display:block}

/* ===== AIR HIRE SOLUTIONS nav highlight ===== */
.nav-ahs{
  color:var(--blue-dark)!important;
  border:1.5px solid rgba(66,104,199,.25);
  border-radius:var(--r-sm);
}
.nav-ahs:hover,.nav-ahs.active{
  background:var(--blue);color:#fff!important;
  border-color:var(--blue);
}

/* Mobile nav: AHS link */
.mobile-nav .nav-ahs{border-color:rgba(66,104,199,.35);padding:var(--sp3) var(--sp4)}

/* ===== FLEX FIX: keep .check circles at 22x22 ===== */
.feature-list .check{flex:0 0 22px;width:22px;min-width:22px}

/* SCR product card image fix */
.card__img-wrap { overflow: hidden; }
.card__img-wrap img { width: 100%; display: block; }
