/* =========================================================
   GLOBAL RESET + THEME VARIABLES
   Adjust colors here first.
========================================================= */
:root{
  --ink:#0d141a;
  --muted:rgba(13,20,26,.72);

  --blue1:#176BE0;
  --blue2:#014092;
  --red1:#ff0000;
  --red2:#b82121;

  --navy:#23334A;
  --bg:#ffffff;
  --border:rgba(13,20,26,.10);

  --radius:20px;
  --shadow:0 16px 36px rgba(0,0,0,.16);

  --container:1100px;

  /* Sticky bar height */
  --sticky-h:40px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);

  /* Sticky bar is fixed, so offset the page by its height */
  padding-top:var(--sticky-h);
}
img{ max-width:100%; display:block; }
a{ color:inherit; }

/* Improve keyboard accessibility */
:focus-visible{
  outline: 3px solid rgba(23,107,224,.55);
  outline-offset: 3px;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scroll-in animation utility (paired with main.js)
   Usage: add data-animate on any element. */
/*[data-animate]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}*/
/* -----------------------
   MOVEMENT LAYER (parent)
----------------------- */
/* ======================================================
   SCROLL REVEAL — CHROME SAFE
   ====================================================== */

/* isolate layout to stop Chrome reflow flash */
.hero__inner{
  contain: layout paint;
}
/* =====================================================
   MOVEMENT LAYER - PARENT ONLY
   ===================================================== */
   [data-animate]{
    will-change: transform;
    contain: layout paint; /* prevent Chrome reflow flashes */
  }
  
  /* -----------------------
     Slide Up (hero)
  ----------------------- */
  [data-animate="up"]{
    transform: translateY(64px); /* round pixels */
    transition: transform 1s cubic-bezier(.22,.61,.36,1);
  }
  
  [data-animate="up"].in{
    transform: translateY(0);
  }
  
  /* -----------------------
     Slide Left
  ----------------------- */
  [data-animate="slide-left"]{
    transform: translateX(-40px);
    transition: transform 0.9s ease;
  }
  
  [data-animate="slide-left"].in{
    transform: translateX(0);
  }
  
  /* -----------------------
     Slide Right
  ----------------------- */
  [data-animate="slide-right"]{
    transform: translateX(40px);
    transition: transform 0.9s ease 0.15s;
  }
  
  [data-animate="slide-right"].in{
    transform: translateX(0);
  }
  
  /* =====================================================
     OPACITY LAYER - CHILD ONLY
     ===================================================== */
  .hero__fade,
  .feature__fade{
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  
  [data-animate].in .hero__fade,
  [data-animate].in .feature__fade{
    opacity: 1;
  }
  
  /* =====================================================
     STAGGERED FADE (optional)
     ===================================================== */
  [data-delay]{
    transition-delay: calc(var(--delay, 0) * 0.08s);
  }
  
  [data-delay="1"]{ --delay: 1; }
  [data-delay="2"]{ --delay: 2; }
  [data-delay="3"]{ --delay: 3; }
  [data-delay="4"]{ --delay: 4; }
  [data-delay="5"]{ --delay: 5; }
  [data-delay="6"]{ --delay: 6; }
  


/* Prevent layout shift while partials load */
html.partials-loading body{
  visibility:hidden;
}

html.partials-ready body{
  visibility:visible;
}
/* =========================================================
   LAYOUT HELPERS
========================================================= */
.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
  /*padding: 0px 20px;*/
}
.section{ padding:36px 25px; }
.section--white{ background:#fff; }
.section--blue{
  /*position: relative;
  padding: 50px 0 50px;*/
  color: #fff;

  background:
    radial-gradient(1100px 520px at 30% 0%, rgba(23,107,224,.55), transparent 62%),
    radial-gradient(1100px 520px at 70% 0%, rgba(1,64,146,.45), transparent 62%),
    linear-gradient(180deg, #24364d 0%, #1f2d42 55%, #1b273a 100%);
}

/* soft light fade at top */
.section--blue::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 40%);
}

.center{ text-align:center; }
.grid-two{
  overflow: visible;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
/* Mobile responsiveness */
@media (max-width: 900px){
  .grid-two {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* space between left and right */
  }

  .container-about {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
/* =========================================================
   VISIBILITY HELPERS (reused across site)
========================================================= */

@media (min-width: 861px){
  .hide-desktop{ display:none !important; }
}

@media (max-width: 860px){
  .hide-mobile{ display:none !important; }
  .bl-trust{ grid-template-columns:1fr; }

  /* iOS background fix */
  .bl-hero{ background-attachment: scroll; }
}
/* =========================================================
   BUTTONS (single source of truth)
========================================================= */
.btn{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 22px;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;

  border: 2px solid rgba(255,255,255,0.35);
  transition: transform .15s ease, box-shadow .15s ease, background-image .15s ease, background-color .15s ease;
}

.btn--full{ width: 100%; }

/* Color variants */
.btn--red{
  color: #fff;
  background-image: linear-gradient(180deg, #ff0000 0%, #b82121 100%);
}

.btn--red:hover{
  background-image: linear-gradient(180deg, #b82121 0%, #8f1515 100%);
}

.btn--blue{
  color: #fff;
  background-image: linear-gradient(180deg, var(--blue1) 0%, var(--blue2) 100%);
  /*box-shadow: 0 16px 36px rgba(0,0,0,.30);*/
}

.btn--blue:hover{
  background-image: linear-gradient(180deg, var(--blue2) 0%, var(--blue2) 100%);
  /*box-shadow: 0 18px 40px rgba(0,0,0,.38);*/
}

.btn--ghost{
  background: #fff;
  color: var(--ink);
  border-color: rgba(13,20,26,.14);
}

.btn--ghost:hover{
  background: #f2f3f6;
}

/* Optional pressed feel */
.btn:active{
  transform: translateY(0);
}
/* =========================================================
   TEXT SWAP (Desktop vs Mobile label)
   Uses the SAME breakpoint as your layout (900px)
========================================================= */

.text-desktop{ display: inline; }
.text-mobile{ display: none; }

@media (max-width: 900px){
  .text-desktop{ display: none; }
  .text-mobile{ display: inline; }

  /* Center mobile menu buttons */
  .nav--mobile .btn{
    align-self: center;
    width: 90%;
    max-width: 220px;
  }
}
/* =========================================================
   STICKY BAR (fixed)
========================================================= */
.sticky-bar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
  min-height:var(--sticky-h);
  background: rgb(35, 51, 74);
  display:flex;
  align-items:center;
}
.sticky-bar__inner{
  display:flex;
  justify-content:center;
}
.sticky-bar__text{
  margin:0;
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;
}

/* Only the phone underlines on hover */
.sticky-bar__phone{
  text-decoration:none;
  font-weight:900;
  margin-left:6px;
}
@media (hover:hover){
  .sticky-bar__phone:hover{ text-decoration:underline; }
}
/* =========================================================
   HEADER (clean + responsive)
========================================================= */

.site-header{
  position: relative;               /* header scrolls normally */
  background: #fff;
  border-bottom: 1px solid rgba(13,20,26,.08);
  z-index: 1000;
}

.header__inner{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
}

/* Logo */
.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand__logo{
  width: min(400px, 48vw);
  max-height: 72px;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px){
  .brand__logo{
    width: min(320px, 70vw);
    max-height: 68px;
  }
}

/* Right-side group (nav + button + hamburger) */
.header-right{
  margin-left: auto;                /* pushes group to the far right */
  display: flex;
  align-items: center;
  gap: 22px;
}
/* =========================================================
   DESKTOP NAV
========================================================= */
.nav--desktop{
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link{
  position: relative;               /* IMPORTANT: anchors ::after underline */
  display: inline-block;
  text-decoration: none;
  color: var(--ink);
  opacity: .92;
  font-weight: 600;
  padding: 8px 2px 10px;            /* bottom space for underline */
  line-height: 1.1;
}

/* underline bar (short + centered like your image) */
.nav__link::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;                      /* sits slightly below text */
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #111;                 /* change to var(--blue2) if you want */
  border-radius: 999px;
  transition: width .22s ease;
}

.nav__link:hover{ opacity: 1; }
.nav__link:hover::after{ width: 100%; }

.nav__link.active{
  opacity: 1;
}
.nav__link.active::after{
  width: 100%;
}

/* =========================================================
   CTA BUTTON (never gets underline)
========================================================= */

.header__cta{
  text-decoration: none;            /* protects button */
  white-space: nowrap;
}

/* If your .btn adds pseudo elements anywhere, this blocks them */
.header__cta::after{ content: none !important; }

/* =========================================================
   HAMBURGER + MOBILE MENU (clean, non-redundant)
========================================================= */

/* Hamburger: hidden by default (desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(13,20,26,.12);
  background: #fff;
  cursor: pointer;
  padding: 10px;

  /* layout of bars when visible */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.hamburger__bar{
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hamburger -> X when open */
.hamburger.is-open .hamburger__bar:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2){
  opacity: 0;
}
.hamburger.is-open .hamburger__bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu: hidden by default (works with slide animation) */
.mobile-menu{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: #fff;
  border-bottom: 1px solid rgba(13,20,26,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  z-index: 1000;

  /* closed state */
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: transform .22s ease, opacity .22s ease, visibility 0s linear .22s;
}

.mobile-menu.is-open{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: transform .22s ease, opacity .22s ease, visibility 0s;
}

.mobile-menu__inner{
  padding: 18px 0 22px;
}

/* Mobile nav (right aligned + full-word underline) */
.nav--mobile{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding-right: 18px;
}

.nav--mobile .nav__link{
  position: relative;
  display: inline-block;  /* width = text width */
  text-align: right;
  padding-bottom: 8px;
  text-decoration: none;
}

/* underline spans the whole word/phrase */
.nav--mobile .nav__link::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;
  background: #111;
  border-radius: 999px;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav--mobile .nav__link:hover::after,
.nav--mobile .nav__link.active::after{
  transform: scaleX(1);
}

/* Divider */
.mobile-menu__divider{
  width: 100%;
  height: 1px;
  background: rgba(13,20,26,.10);
  margin: 12px 0;
}

/* =========================================================
   RESPONSIVE TOGGLE (ONLY place hamburger shows)
========================================================= */
@media (max-width: 965px){
  .nav--desktop{ display: none; }
  .header__cta{ display: none; }
  .hamburger{ display: flex; }
}
/* =========================================================
   HERO (full-screen + video bg on desktop, still on mobile)
========================================================= */

.hero{
  position: relative;
  min-height: 46vh;              /* full screen */
  display: grid;
  place-items: center;
  padding: 46px 0;                /* keeps your spacing */
  color: #fff;
  overflow: hidden;
  background: var(--navy);        /* fallback */
}

/* Background video (desktop) */
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Still image layer (mobile + fallback if video blocked) */
.hero__bg{
  position: absolute;
  inset: 0;
  background: url("../images/hero-poster.webp") center/cover no-repeat;
  z-index: 0;
  /*opacity: 0;*/                     /* hidden on desktop by default */
}
/* Overlay gradients for the premium look + readability */
.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(67, 73, 80, 0.35), transparent 80%),
    radial-gradient(900px 500px at 80% 10%, rgba(62, 50, 50, 0.18), transparent 80%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45));
}

/* Content above video + overlay */
.hero__inner{
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 92vw);
}

/* Pills / text */
.hero__pill{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
.home-page .hero__pill{
  font-size:12px;
}

.service-page .hero__pill{
  font-size:16px;
}
.hero__title{
  margin: 0 0 14px;
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 700;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.hero__sub{
  margin: 0 auto 18px;
  max-width: 850px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 22px rgba(0,0,0,.25);
  transform:translateX(0);
}

.hero__badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.badge{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.commercial__badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(13,20,26,0.10);
  background:rgba(255,255,255,0.75);
  font-weight:900;
  font-size:13px;
  color:rgba(16, 22, 27, 0.78);
}
/* Tagged images */
.commercial__img--tagged{
  position:relative;
}
.commercial__tag{
  position:absolute;
  left:14px;
  top:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.86);
  border:1px solid rgba(13,20,26,0.10);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(13,20,26,0.70);
}
/* Media column */
.commercial__media{
  display:grid;
  gap:14px;
  align-items:center;
}
.commercial__img{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(13,20,26,0.08);
  background:#f3f5f7;
}

.commercial__img img{
  width:100%;
  height:auto;
  display:block;
}
.hero__cta{
  display: flex;
  justify-content: center;
}

.hero__micro{
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
/* Mobile: show still image, hide video */
@media (max-width: 900px){
  .hero__video{ display: none; }
  .hero__bg{ opacity: 1; }
  .hero__pill{
    padding: 8px 12px;   /* smaller height */
    font-size: 12px;     /* smaller text */
    letter-spacing: .1em;
    margin-bottom: 14px;
  }
}
/* =========================
   Section Heading for white back ground
========================= */

.heading-center{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
}

.heading-white__title{
  margin: 0;
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
}

.heading-white__sub{
  margin: 14px auto 0;
  max-width: 860px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.7;
}
/* ===========================
   IMAGE STATS WRAP
=========================== */
.image-stats-container{
  position: relative;
  overflow: visible;
  padding-bottom: 80px;
}

.image-stats-wrap{
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.feature-image{
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
}

.stats--overlay{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 5;

  background: var(--blue2);
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
  padding: 22px 36px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;

  text-align: center;
  flex-wrap: nowrap;
}

.stats--overlay .stat{ min-width: 160px; color:#fff; }
.stats--overlay .stat__big{ font-size:36px; font-weight:800; line-height:1; margin:0 0 6px; }
.stats--overlay .stat__label{ font-size:16px; font-weight:600; opacity:.95; margin:0; }
.stats--overlay .stats__divider{ width:1px; height:56px; background:rgba(255,255,255,.35); }

@media (max-width: 900px){

  .image-stats-container{
    margin-bottom: 0px; /* space for the hang */
    padding-bottom: 10px;
  }

  .stats--overlay{
    left: 12px;
    right: 12px;
    bottom: 0px;

    padding: 12px 14px;
    gap: 12px;

    display: flex;
    flex-wrap: nowrap;        /* stay one row */
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
  }

  .stats--overlay .stat{
    flex: 1 1 0;              /* equal halves */
    min-width: 0;             /* allows text to shrink/wrap */
  }

  .stats--overlay .stat__big{
    font-size: 22px;
    line-height: 1.05;
    margin: 0 0 4px;
  }

  .stats--overlay .stat__label{
    font-size: 11px;
    line-height: 1.15;
    white-space: normal;      /* wrap instead of overflow */
    overflow-wrap: anywhere;  /* prevents cutting off */
    margin: 0;
  }

  .stats--overlay .stats__divider{
    width: 1px;
    height: 40px;
    flex: 0 0 1px;
    background: rgba(255,255,255,.28);
  }
}



/*===========================
   Card Glass 
============================*/
.card{
  border-radius:18px;
  border:1px solid rgba(13,20,26,.08);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}
.card--glass{
  background: rgba(255,255,255,0.88);
  padding:26px 24px;
}
.card__text{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.55;
}
.card__text--light{
  color: rgb(0, 0, 0);
}
.card__dividerNote{
  text-align:center;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(13,20,26,0.10);
  font-size:15.5px;
  color: rgba(13, 20, 26, 0.62);
}
.card-sub__heading{
  font-size: 16.5px;
    line-height: 1.7;
    color: rgba(13, 20, 26, 0.72);
}
/* Checklist bullets (✓) */
.checklist{
  list-style:none;
  padding:0;
  margin:12px 0 18px;
  display:grid;
  gap:10px;
}
.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:18px;
  line-height:1.55;
}
.checklist__text{
  display:block;
}
.checklist__text strong{
  margin-bottom:2px;
}

.checklist__desc{
  display:block;
  opacity:.85;
}
.checklist__stars{
  list-style:none;
  padding:0;
  margin:12px 0 18px;
  display:grid;
  gap:10px;
  font-size: 18px;
}
.check{
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(1,64,146,0.12);
  border:1px solid rgba(1,64,146,0.2);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--blue2);
  font-weight:900;
  font-size:12px;
  flex:0 0 22px;
}
.media-card{
  border-radius: var(--radius);
  overflow: hidden;              /* clips the image */
  border: 1px solid rgba(13,20,26,.10);
  box-shadow: var(--shadow);
  background: #fff;
  width: 100%;
  height: 300px;                 /* <-- crop height here */
}
.media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;             /* crops instead of squishing */
  object-position: center 30%;   /* moves image downward */
  display: block;
}
@media (max-width: 900px){
  .media-card{
    height: 180px;              /* controls visible crop height */
  }

  .media-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;         /* REQUIRED for cropping */
    object-position: center 35%;
  }
}
/* =========================
   SERVICES 3 IMAGE CARDS
========================= */
/* =========================
   GRID for Cards
========================= */

.cards-3{
  position: relative;
  z-index: 1;

  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px){
  .cards-3{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service{
  position: relative;
  border-radius: 18px;
  overflow: visible;                 /* IMPORTANT: allow overlap */
}

.service__img{
  position: relative;
  z-index: 1;                        /* image behind the body */
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
}

.service__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service__body{
  position: relative;
  z-index: 2;                        /* ensures it sits ON TOP of the image */

  background: #fff;
  color: var(--ink);
  padding: 20px 20px 22px;

  /* overlap */
  margin-top: -60px;

  /* rounded bottom + nice card feel */
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  text-align: center;
}
/* Titles & text */
.service__title{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.service__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15.5px;
}

/* =========================
   HOVER (optional premium feel)
========================= */

@media (hover:hover){
  .service{
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .service:hover{
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,.34);
  }
}

/* =========================
   MOBILE TWEAK
========================= */

@media (max-width: 900px){

  .service__img{
    height: 210px;
  }

  .service__body{
    margin-top: -50px;   /* slightly less overlap on mobile */
    padding: 18px;
  }
}
/* =========================================================
   Fixed Roof background + clean reusable layout
========================================================= */

.fixed-bg{
  position: relative;
  isolation: isolate;
  /*padding: clamp(52px, 6vw, 84px) 0;*/
  padding: 32px 0;

  /* Fixed background (reliable when applied to the SECTION) */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.fixed-bg--metal{
  background-image:url("../images/Metal Roof BG.png");
}

.fixed-bg--shingle{
  background-image:url("../images/Shingle Closeup BG.png");
}

.fixed-bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(1100px 650px at 50% 18%, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(6,10,16,.72) 0%, rgba(6,10,16,.82) 55%, rgba(6,10,16,.92) 100%),
    linear-gradient(90deg, rgba(1,64,146,.24) 0%, rgba(1,64,146,.16) 55%, rgba(1,64,146,.22) 100%);
}
/* Content above overlay */
.fixed-bg__inner{
  position: relative;
  z-index: 1;
}
/* iOS Safari: fixed is unreliable */
@supports (-webkit-touch-callout: none) {
  .fixed-bg{
    background-attachment: scroll;
    background-position: center;
  }
}
/* =========================================================
   LEFT CARD (your existing look, cleaned)
========================================================= */

.about-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(13,20,26,0.10);
  border-radius: 18px;
  padding: 26px 22px;
  backdrop-filter: blur(6px);
}

.about-card__eyebrow{
  text-align:center;
  font-weight: 900;
  /*color: rgba(13,20,26,0.70);*/
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 10px;
}
.section--dark{
  color: rgba(13,20,26,0.70);
}
.section--light{
  color: rgba(255, 255, 255, 0.8);
}

.about-card__title{
  text-align:center;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  /*font-size: clamp(26px, 3.6vw, 56px);*/
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0 0 14px;
}

.about-card__expect{ margin: 10px 0 16px; }

.about-card__expect-title{
  font-size:16px;
  font-weight:900;
  color: rgba(13,20,26,0.92);
  margin:0 0 10px;
  text-align:left;
}

/* Tiles */
.about-card__tiles{
  display:grid;
  gap:12px;
  margin:0 0 16px;
}

.about-tile{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,20,26,0.08);
  border-radius: 14px;
  padding: 16px;
}

.about-tile--primary{
  background: rgba(1,64,146,0.92);
  border: 1px solid rgba(255,255,255,0.18);
  color:#fff;
}

.about-tile__eyebrow{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  opacity:.9;
  margin:0 0 6px;
}

.about-tile__eyebrow--muted{
  color: rgba(13,20,26,0.60);
  opacity: 1;
}

.about-tile__big{
  font-size:26px;
  font-weight:900;
  line-height:1.05;
  margin:0;
}

.about-tile__title{
  font-size:18px;
  font-weight:900;
  line-height:1.2;
  margin:0 0 6px;
  color:#0d141a;
}

.about-tile__text{
  font-size:14.5px;
  line-height:1.6;
  margin-top:6px;
  opacity:.95;
}

.about-tile__text--muted{
  color: rgba(13,20,26,0.78);
  opacity:1;
  margin-top:0;
}

.about-card__cta{ text-align:center; }
/* what you'll get */
.replace__what{
  margin:14px;
  padding:12px;
  border-radius:14px;
  background: rgba(1,64,146,0.08);
  border: 1px solid rgba(1,64,146,0.18);
  text-align:center;
}
.replace__whatTitle{
  font-weight:800;
  color:#014092;
  margin-bottom:4px;
}
.replace__whatText{
  color: rgba(13,20,26,0.78);
  font-size:14.5px;
  line-height:1.6;
}
/* =========================================================
   RIGHT SIDE — option A (recommended): single rounded card
   with 2 stacked images like your screenshot
========================================================= */

.about-mediaCard{
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 14px 34px rgba(13,20,26,.22),
    0 55px 140px rgba(13,20,26,.22);
}

.about-mediaCard__row{
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.about-mediaCard__row + .about-mediaCard__row{
  border-top: 1px solid rgba(255,255,255,0.18);
}

.about-mediaCard__row img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
/* Right images */
.card__right{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.card__img{
  width:100%;
  aspect-ratio: 16 / 9;
  border-radius:14px;
  overflow:hidden;
  background:#e6e9ee;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:16px; /* matches your original */
}

@media (max-width: 900px){
  .card__card{
    grid-template-columns: 1fr;
  }
  .about-split__media {
    width: 100%;
    display: block; /* make sure it's visible */
    margin-top: 10px; /* optional spacing */
  }
}
/* Services Trust row */
.bl-trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  width:min(1100px, 100%);
  margin:0 auto;
  padding-top: 20px;
}

.bl-trust__card{
  background: rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:16px;
  padding:14px;
  text-align:center;
}
.replace__t{
  text-align:center;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:14px;
  padding:12px;
  color: rgba(255,255,255,0.92);
  font-size:14px;
  line-height:1.45;
}

.bl-trust__title{
  font-weight:700;
  font-size:16px;
  margin-bottom:4px;
}

.bl-trust__text{
  color: rgba(255,255,255,0.82);
  font-size:14px;
  line-height:1.5;
}
/*************************************
      Contact US Form
*************************************/
.contact-hero{
  position:relative;

  /* Allows section to be full screen but also grow with the form */
  min-height:100vh;

  /* KEEP YOUR background image */
  background: url("../images/Metal Roof BG.png") center/cover no-repeat;

  /* THIS makes it stay while scrolling */
  background-attachment: fixed;

  /* spacing */
  padding:64px 20px;

  /* keeps overlay working and content centered */
  display:flex;
  justify-content:center;
}

/* KEEP THE SAME OVERLAY look */
.contact-hero::before{
  content:"";
  position:absolute;
  inset:0;

  /* Use your exact overlay values here */
 background:
    radial-gradient(1100px 650px at 50% 18%, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(6,10,16,.72) 0%, rgba(6,10,16,.82) 55%, rgba(6,10,16,.92) 100%),
    linear-gradient(90deg, rgba(1,64,146,.24) 0%, rgba(1,64,146,.16) 55%, rgba(1,64,146,.22) 100%);

  z-index:0;
}

/* Content wrapper centered */
.contact-hero__content{
  position:relative;
  z-index:1;

  width:100%;
  max-width:1100px;

  text-align:center;

  display:flex;
  flex-direction:column;
  align-items:center; /* centers glass box */
}

/* Make sure title is white */
.contact-hero__title{
  color:#fff;
  font-size: clamp(36px, 5vw, 60px);
  font-weight:800;
  margin:0 0 12px;
  letter-spacing:-1px;
}

/* Subtitle */
.contact-hero__subtitle{
  color:#fff;
  font-size:clamp(18px, 2.2vw, 24px);
  max-width:760px;
  margin:0 0 44px;
  line-height:1.5;
  opacity:.95;
}

/* Glass container */
.contact-glass{
  width:100%;
  max-width:900px;

  padding:48px;
  border-radius:26px;

  /* keep the same overlay vibe */
  background: rgba(25,35,55,.55);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border:1px solid rgba(255,255,255,.22);

  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.22);
}

/* Mobile fix: background-attachment fixed is buggy on iOS */
@media(max-width:900px){
  .contact-hero{
    background-attachment: scroll;
  }
}

@media(max-width:900px){
  .contact-hero{
    padding:64px 46px;
  }
  .contact-glass{
    padding:28px;
    border-radius:20px;
  }
}
/* THANK YOU PAGE */

.thankyou{
  text-align:center;
  color:#fff;
  max-width:720px;
  margin:0 auto;
}

.thankyou__icon{
  width:72px;
  height:72px;
  margin:0 auto 20px;
  border-radius:50%;
  background:linear-gradient(180deg,#0bbf5e,#06994a);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:700;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.thankyou__title{
  font-size:clamp(28px,4vw,40px);
  margin:0 0 12px;
  font-weight:800;
  letter-spacing:.2px;
}

.thankyou__lead{
  font-size:18px;
  opacity:.9;
  margin-bottom:30px;
}

.thankyou__steps{
  
  gap:26px;
  margin:32px 0 34px;
  text-align:center;
}

.thankyou__stepTitle{
  font-weight:700;
  margin-bottom:8px;
}

.thankyou__list{
  margin:0;
  padding-left:18px;
  line-height:1.7;
}

.thankyou__small{
  margin:6px 0 12px;
  opacity:.85;
}

.thankyou__call{
  display:inline-block;
  padding:12px 20px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-weight:700;
  text-decoration:none;
}

.thankyou__actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:10px;
}

.thankyou__note{
  margin-top:26px;
  opacity:.7;
  font-size:14px;
}

/* Mobile */
@media (max-width:700px){
  .thankyou__steps{
    grid-template-columns:1fr;
    text-align:center;
  }
}
/* =========================
   CONTACT CARD + MAP SECTION
========================= */

.contact-block{ padding: 40px 0; }

.contact-block__inner{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  position: relative;
}

/* ---------- LEFT CARD ---------- */
.contact-card{
  width: 520px;
  max-width: 100%;
  text-align: center;
  color: #111;

  background: rgba(255,255,255,0.92);
  border: 3px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 28px;

  box-shadow: 0 14px 40px rgba(0,0,0,0.10);

  position: relative;
  z-index: 2;
}

.contact-card__title{
  margin: 0 0 18px;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.contact-card__chips{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.chip{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(1,64,146,0.08);
  border: 1px solid rgba(1,64,146,0.14);
  font-weight: 800;
  font-size: 13px;
  color: #014092;
  white-space: nowrap;
}

.contact-card__rows{
  margin-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.row{
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.row:last-child{ border-bottom: none; }

.row__label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  opacity: .65;
  margin-bottom: 8px;
}

.row__value{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.pill{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
}

.pill--neutral{
  font-size: 18px;
  color: #111;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
}

.pill--brand{
  font-size: 16px;
  color: #014092;
  border: 1px solid rgba(1,64,146,0.18);
  background: rgba(1,64,146,0.06);
}

.pill:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.contact-card__note{
  margin-top: 14px;
  font-size: 12px;
  opacity: .72;
}

/* ---------- RIGHT MAP ---------- */
.contact-map{
  width: 760px;
  max-width: calc(100% - 260px); /* prevents overflowing on medium screens */
  height: 520px;

  border-radius: 22px;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);

  margin-left: -60px; /* overlap */

  position: relative;
  z-index: 3;
}

.contact-map__frame{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- MOBILE / TABLET ---------- */
@media (max-width: 980px){
  .contact-block__inner{
    flex-direction: column;
    gap: 20px;
    padding: 20px
  }

  .contact-map{
    width: 100%;
    max-width: 520px; /* centers under the card */
    height: 360px;
    margin: 0;
  }
}

/* ===== Premium Lead Form (white text) ===== */

.lead-form{
  width:100%;
  color:#fff;
  font-family: Roboto, Arial, sans-serif;
}

/* CHANGE: 6-col grid on desktop so we can do 3-up rows */
.lead-form__grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:16px;
}

/* utility */
.span-2{ grid-column: 1 / -1; }

/* NEW: column span helpers */
.col-3{ grid-column: span 3; } /* half row */
.col-2{ grid-column: span 2; } /* third row */

.field{ text-align:left; }

.label{
  display:flex;
  align-items:baseline;
  gap:8px;
  font-weight:400;
  font-size:14px;
  letter-spacing:.06em;
  color: rgba(255,255,255,.90);
  margin: 0 0 8px;
}

.req{ color:#ff3b3b; font-weight:900; }

.input{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.95);   /* WHITE */
  color:#111;                          /* dark text */
  font-size:15px;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.input::placeholder{ color: rgba(0,0,0,.45); }

.input:focus{
   border-color:#176BE0;
   box-shadow:0 0 0 4px rgba(23,107,224,.20);
   background:#fff;
}

/* Select arrow look */
.select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.75) 50%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.75) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:44px;
}
.textarea{
  resize: vertical;
  min-height: 120px;
}

/* Error text hidden by default */
.error{
  display:none;
  margin-top:8px;
  font-size:12px;
  color: rgba(255,90,90,.95);
  font-weight:700;
}

/* Show error on invalid after "submitted" class is added (via JS below) */
.lead-form.submitted .input:invalid{
  border-color: rgba(255,90,90,.85);
  box-shadow: 0 0 0 4px rgba(255,90,90,.15);
}

.lead-form.submitted .input:invalid + .error{
  display:block;
}

/* Button */
.lead-form__footer{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top: 18px;
}

.btn-submit{
  width: min(360px, 100%);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  color:#fff;
  font-weight: 900;
  font-size: 16px;
  cursor:pointer;

  background: linear-gradient(180deg, #ff0000 0%, #b82121 100%);
  box-shadow: 0 18px 40px rgba(184,33,33,.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-submit:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 22px 55px rgba(184,33,33,.45);
}

.btn-submit:active{ transform: translateY(0); }

.fineprint{
  margin:0;
  font-size:12px;
  color: rgba(255,255,255,.70);
  text-align:center;
  max-width: 560px;
}

/* Honeypot (hidden) */
.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}

/* ----- Responsive layout ----- */
@media (max-width: 900px){
  .lead-form__grid{
    grid-template-columns: 1fr;
  }
  .span-2{ grid-column: auto; }
  .col-3{ grid-column: auto; }
  .col-2{ grid-column: auto; }
}
/* =========================================================
   FOOTER (matches your wording + premium dividers)
========================================================= */
.footer{
  background: var(--navy);
  color:#fff;
  padding:52px 0 26px;
}
.footer__inner{ }

.footer__divider{
  height:1px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.22) 15%,
    rgba(255,255,255,.22) 85%,
    rgba(255,255,255,0) 100%);
  margin: 0 0 34px 0;
}
.footer__grid{
  display:flex;
  gap:44px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footer__left{ min-width:280px; flex:1; max-width:560px; }
.footer__right{
  min-width:280px;
  flex:1;
  max-width:540px;
  padding-bottom: 28px;   /* fixes cramped bottom */
}

.footer__brand{
  margin:0 0 10px;
  font-size:34px;
  font-weight:700;
  letter-spacing:-.02em;
  line-height:1.15;
}
.footer__headline{
  margin:0 0 14px;
  font-size:22px;
  font-weight:700;
}
.footer__title{
  margin:0 0 8px;
  font-size:24px;
  font-weight:700;
}
.footer__text{
  margin:0 0 22px;
  font-size:18px;
  line-height:1.55;
  opacity:.92;
  max-width:520px;
}
.footer__text-lg{
  margin:0;
  font-size:20px;
  line-height:1.55;
  opacity:.92;
}
.footer__row{
  display:flex;
  gap:9px;
  align-items:center;
  margin-top:10px;
}
.footer__label{
  width:84px;
  font-weight:700;
  letter-spacing:.06em;
  opacity:.85;
}
.footer__link{
  color:#fff;
  text-decoration:none;
  font-size:18px;
}
@media (hover:hover){
  .footer__link:hover{ text-decoration:underline; }
}

.footer__social{
  margin-left:10px;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  text-decoration:none;
}
.footer__social span{
  font-size:22px;
  font-weight:800;
  line-height:1;
  color:#fff;
}

.footer__block{ margin-bottom:22px; }
.footer__pill{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  font-size:20px;
  font-weight:600;
  line-height:1.35;
}
.sep{ opacity:.55; }
.dot{ opacity:.6; }

.footer__bottom{
  margin-top:18px;
  text-align:center;
  font-size:18px;
  opacity:.92;
  font-weight:500;
}

/* Small footer divider at bottom */
.footer .footer__divider:last-of-type{
  margin:34px 0 18px;
}
@media (max-width: 900px){
  .footer__inner{
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer__right{
    padding-bottom: 26px;
  }
}