/* Handy Angels */
:root{
  --blue-900:#0f2b4d;
  --blue-800:#16325c;
  --blue-700:#1a3f74;
  --blue-600:#1f56ae; /* Angel Blue */
  --gold-500:#f3b300; /* Halo Gold */
  --gold-400:#ffd166;
  --white:#ffffff;
  --cloud:#f7f9fc;
  --slate-900:#0b1220;
  --slate-700:#344054;
  --slate-600:#475467;
  --slate-500:#667085; /* Stone Gray */
  --sand-300:#d9c6a5;
  --danger:#d94b38; /* Emergency Accent */

  --radius-xl:24px;
  --radius-lg:18px;
  --radius-md:12px;
  --radius-sm:10px;

  --shadow-sm:0 6px 18px rgba(11,18,32,.10);
  --shadow-md:0 18px 46px rgba(11,18,32,.16);
  --shadow-lg:0 30px 90px rgba(11,18,32,.18);

  --container:1180px;
  --gutter:clamp(16px, 3vw, 28px);

  --font-heading: "Barlow Condensed", "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --ease:cubic-bezier(.2,.8,.2,1);
  --carousel-transition-duration:.98s;
  --carousel-autoplay-duration:5.2s;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}

body{
  margin:0;
  background:linear-gradient(180deg, var(--cloud), #fff 70%);
  color:var(--slate-900);
  font-family:var(--font-body);
  line-height:1.6;
  text-rendering:optimizeLegibility;
  width:100vw;
  overflow-x:hidden;
}

img{max-width:100%; height:auto}

a{color:inherit}

.container{
  width:min(100%, calc(var(--container) + 2*var(--gutter)));
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:var(--gutter);
  top:14px;
  width:auto;
  height:auto;
  z-index:9999;
  background:var(--white);
  padding:10px 14px;
  border-radius:999px;
  box-shadow:var(--shadow-md);
  outline:3px solid var(--gold-500);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(247,249,252,.90);
  backdrop-filter:saturate(165%) blur(16px);
  border-bottom:1px solid rgba(15,43,77,.10);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  flex-shrink:0;
  min-width:0;
}

.brand img{
  width:64px;
  height:64px;
  flex-shrink:0;
}

.brand .brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.02;
  min-width:0;
}

.brand .brand-name{
  font-family:var(--font-heading);
  font-weight:800;
  letter-spacing:.7px;
  text-transform:uppercase;
  font-size:2rem;
  color:var(--blue-600);
}

.brand .brand-tag{
  color:var(--slate-600);
  font-size:.96rem;
  line-height:1.1;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
}

.nav a{
  position:relative;
  text-decoration:none;
  padding:10px 12px;
  color:var(--slate-700);
  font-weight:700;
  white-space:nowrap;
  border-radius:0;
  background:none;
  transition:color .22s var(--ease), transform .22s var(--ease);
}

.nav a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:4px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .24s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"]{
  color:var(--blue-800);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after{
  transform:scaleX(1);
}

.nav a:hover{
  transform:translateY(-1px);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  margin-right:10px;
}

.btn-request{
  white-space:nowrap;
  padding-inline:18px;
  background: var(--blue-700);
}

.icon-call-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color:var(--slate-900);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 24px rgba(11,18,32,.10);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
  text-decoration:none;
  overflow:visible;
}

.icon-call-btn svg{
  display:block;
  width:22px;
  height:22px;
  flex:0 0 auto;
}

.icon-call-btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
  filter:saturate(1.04);
}

.icon-call-btn:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
}

.icon-call-popover{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px);
  pointer-events:none;
  background:rgba(15,43,77,.96);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  font-size:.95rem;
  line-height:1;
  white-space:nowrap;
  box-shadow:var(--shadow-md);
  transition:
    opacity .2s var(--ease),
    transform .2s var(--ease),
    visibility .2s var(--ease);
  z-index:1200;
}

.icon-call-popover::before{
  content:"";
  position:absolute;
  top:-6px;
  right:18px;
  width:12px;
  height:12px;
  background:rgba(15,43,77,.96);
  border-left:1px solid rgba(255,255,255,.10);
  border-top:1px solid rgba(255,255,255,.10);
  transform:rotate(45deg);
}

.icon-call-btn:hover .icon-call-popover,
.icon-call-btn:focus-visible .icon-call-popover{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

@media (max-width: 1360px){
  .icon-call-popover{
    display:none;
  }
    .icon-call-btn{
    width:56px;
    height:56px;
    padding-inline:0;
  }
}


.menu-btn{
  background:var(--blue-600);
  color:#fff;
  border-color:rgba(255,255,255,.08);
  margin-right:8px;
}

.menu-btn:hover{
  background:var(--blue-700);
}

.menu-btn:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
}

/* Mobile nav */
@media (max-width: 1360px){
  .brand img{
    width:56px;
    height:56px;
	margin-left:10px;
  }

  .brand .brand-name{
    font-size:1.7rem;
  }

  .brand .brand-tag{
    font-size:.88rem;
  }

  .nav{
    gap:2px;
  }

  .nav a{
    padding:10px 8px;
    font-size:.98rem;
  }

  .btn-request{
    font-size:.96rem;
    padding-inline:16px;
  }
}

.icon-btn{
  display:none;
  width:54px;
  height:54px;
  border-radius:16px;
  border:1px solid rgba(15,43,77,.10);
  background:rgba(255,255,255,.78);
  box-shadow:0 10px 24px rgba(11,18,32,.10);
  padding:0;
  align-items:center;
  justify-content:center;
}

@media (max-width: 1360px){
  .nav{display:none}
  .header-actions .btn-request{display:none}
  .header-actions .icon-call-btn{display:inline-flex}
  .icon-btn{display:inline-grid; place-items:center}
  .brand img{
    width:54px;
    height:54px;
  }
  .brand .brand-name{
    font-size:1.6rem;
  }
  .brand .brand-tag{
    font-size:.84rem;
  }
}

@media (max-width: 620px){
  .header-inner{
    padding:10px 0;
  }

  .brand{
    gap:12px;
  }

  .brand img{
    width:48px;
    height:48px;
  }

  .brand .brand-name{
    font-size:1.35rem;
  }

  .brand .brand-tag{
    font-size:.56rem;
  }
}

.mobile-panel{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(11,18,32,.48);
  backdrop-filter:blur(4px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:
    opacity .3s var(--ease),
    visibility 0s linear .3s;
}

.mobile-panel[aria-hidden="false"]{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:
    opacity .3s var(--ease),
    visibility 0s linear 0s;
}

.mobile-drawer{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(92vw, 390px);
  background:url('../img/wings.png') 40px center, linear-gradient(180deg, var(--blue-900), var(--blue-800));
  background-repeat: no-repeat;
  background-size: 100%;
  border-left:1px solid rgba(255,255,255,.10);
  padding:22px;
  box-shadow:var(--shadow-lg);
  transform:translateX(100%);
  opacity:1;
  transition:transform .34s var(--ease);
  will-change:transform;
}

.mobile-panel[aria-hidden="false"] .mobile-drawer{
  transform:translateX(0);
}

.mobile-close-btn{
  display:inline-grid;
  place-items:center;
  width:54px;
  height:54px;
  background:rgba(255,255,255,.10);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

.mobile-close-btn:hover{
  background:rgba(255,255,255,.16);
}

.mobile-drawer nav{
  display:grid;
  gap:4px;
  margin-top:10px;
}

.mobile-drawer nav a{
  position:relative;
  display:block;
  text-decoration:none;
  padding:14px 0;
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:1.15rem;
  transition:color .22s var(--ease), transform .22s var(--ease);
}

.mobile-drawer nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:8px;
  width:72px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .24s var(--ease);
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:focus-visible,
.mobile-drawer nav a[aria-current="page"]{
  color:var(--gold-400);
  transform:translateX(4px);
}

.mobile-drawer nav a:hover::after,
.mobile-drawer nav a:focus-visible::after,
.mobile-drawer nav a[aria-current="page"]::after{
  transform:scaleX(1);
}

.mobile-drawer .drawer-actions{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.mobile-drawer .drawer-actions .btn{
  min-height:58px;
  font-size:1.05rem;
}

.mobile-drawer .drawer-actions .btn-ghost{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}

.mobile-drawer nav a,
.mobile-drawer .drawer-actions,
.mobile-help{
  opacity:0;
  transform:translateX(16px);
  transition:
    opacity .28s var(--ease),
    transform .28s var(--ease);
}

.mobile-panel[aria-hidden="false"] .mobile-drawer nav a,
.mobile-panel[aria-hidden="false"] .mobile-drawer .drawer-actions,
.mobile-panel[aria-hidden="false"] .mobile-help{
  opacity:1;
  transform:translateX(0);
}

.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(1){ transition-delay:.06s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(2){ transition-delay:.09s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(3){ transition-delay:.12s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(4){ transition-delay:.15s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(5){ transition-delay:.18s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer nav a:nth-child(6){ transition-delay:.21s; }
.mobile-panel[aria-hidden="false"] .mobile-drawer .drawer-actions{ transition-delay:.24s; }
.mobile-panel[aria-hidden="false"] .mobile-help{ transition-delay:.27s; }

@media (prefers-reduced-motion: reduce){
  .mobile-panel,
  .mobile-drawer,
  .mobile-drawer nav a,
  .mobile-drawer .drawer-actions,
  .mobile-help{
    transition:none !important;
  }
}

.mobile-help{
  margin-top:16px;
  color:#fff;
}

.mobile-help .kbd{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(15,43,77,.18);
  background:var(--white);
  color:var(--blue-900);
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 24px rgba(11,18,32,.10);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow-md)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:3px solid var(--gold-500); outline-offset:3px}

.btn-primary{
  background:linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-color:rgba(0,0,0,.06);
  color:var(--slate-900);
}

.btn-ghost {
    background: var(--blue-600);
    color: #FFF;
}

.btn-danger{
  background:linear-gradient(135deg, var(--danger), #f06b5a);
  border-color:rgba(0,0,0,.06);
  color:#fff;
}

.icon-btn svg{
  display:block;
  width:24px;
  height:24px;
}

.menu-btn{
  background:var(--blue-600);
  color:#fff;
  border-color:rgba(255,255,255,.08);
}
.icon-btn:focus-visible{outline:3px solid var(--gold-500); outline-offset:3px}

/* Mobile nav */

.mobile-drawer .drawer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

/* Hero */
.hero{
  --hero-mobile-video-offset:0px;
  position:relative;
  min-height:78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(900px 450px at 20% 25%, rgba(243,179,0,.20), transparent 60%),
    radial-gradient(1000px 500px at 80% 30%, rgba(31,86,174,.26), transparent 65%),
    linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color:var(--white);
  isolation:isolate;
}

.hero .hero-content{
  padding-bottom:120px;
}

.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:.82;
  z-index:0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:-40% -10% auto -10%;
  height:70%;
  background:radial-gradient(closest-side, rgba(255,255,255,.20), transparent 70%);
  transform:skewY(-6deg);
  opacity:.45;
  pointer-events:none;
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  padding:clamp(56px, 7vw, 96px) 20px 70px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:clamp(18px, 3vw, 36px);
  align-items:center;
}
@media (max-width: 980px){
  .hero{
    min-height:100svh;
    align-items:end;
    overflow:clip;
  }

  .hero video{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100svh;
    min-width:100vw;
    min-height:100svh;
    max-width:none;
    object-fit:cover;
    object-position:center center;
    transform:translate3d(0, 0, 0);
  }

  .hero::before{
    background:linear-gradient(180deg, rgba(15,43,77,.50) 0%, rgba(15,43,77,.62) 36%, rgba(15,43,77,.88) 100%);
  }

  .hero-content{
    padding-top:clamp(76px, 10vw, 110px);
    padding-bottom:110px;
  }

  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-card{
    backdrop-filter:saturate(150%) blur(10px);
  }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(71,84,103,.80);
  border:1px solid rgba(255,255,255,.18);
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  font-size:.85rem;
}

.h1{
  font-family:var(--font-heading);
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-size:clamp(2.5rem, 4.6vw, 4.2rem);
  line-height:1.02;
  margin:14px 0 14px;
}

.lead{
  color:rgba(255,255,255,.90);
  font-size:1.1rem;
  max-width:60ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.trust-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(71,84,103,.80);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.92);
  font-weight:700;
  font-size:.95rem;
}

.hero-card{
  background:rgba(71,84,103,.80);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow:0 24px 80px rgba(0,0,0,.22);
}
.hero-card h2{
  margin:6px 0 10px;
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:1.8rem;
}
.hero-card p{margin:0; color:rgba(255,255,255,.86)}
.hero-card ul{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.hero-card li{display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.92)}

/* Sections */
.section{
  position:relative;
  padding:72px 0 clamp(128px, 14vw, 176px);
}
.section.alt{background:linear-gradient(180deg, #fff, var(--cloud))}
.section.dark{
  background:linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color:#fff;
}
.section.frntabout{
  --about-bg-offset:0px;
  position:relative;
  background:linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color:#fff;
  min-height:100svh;
  overflow:hidden;
  isolation:isolate;
}

.section.frntabout::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:min(52vw, 760px);
  height:100%;
  background:url("../img/handymanbg-opacity.png") right bottom / contain no-repeat;
  pointer-events:none;
  z-index:0;
  will-change:transform;
  transform:translate3d(0, var(--about-bg-offset), 0);
}
.section.frntabout::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    var(--blue-900) 0%,
    var(--blue-900) 2%,
    rgba(15,43,77,0.85) 5%,
    rgba(15,43,77,0.35) 8%,
    transparent 10%
  );
  pointer-events:none;
  z-index:0;
}
.section.frntabout > .container{
  position:relative;
  z-index:1;
  padding-right:min(18vw, 180px);
}

.section h2{
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:clamp(1.9rem, 2.8vw, 2.6rem);
  line-height:1.1;
  margin:0 0 10px;
}
.section p{color:var(--slate-700)}
.section.dark p{color:rgba(255,255,255,.86)}

.inline-video-wrap.section-vid {
	margin-top:-160px;z-index:5;position:relative;box-shadow:2px 2px 20px rgba(0,0,0, 0.4);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.section-head h2 {
	color:var(--blue-700);
}
.section.dark .section-head h2 {
	color:#fff;
}
.section-head .sub{
  margin:0;
  max-width:70ch;
}
.section-head .btn{
  white-space:nowrap;
}

@media (max-width: 900px){
  .section-head{flex-direction:column; align-items:flex-start}
  .section.frntabout{
    min-height:100svh;
    overflow:hidden;
	content:"";
  }

.section.frntabout::before{
  top:0;
  right:-200px;
  bottom:0;
  width:min(125vw, 680px);
  height:100svh;
  min-height:100svh;
  background-position:right bottom;
  background-size:auto 100%;
  transform:translate3d(0, var(--about-bg-offset), 0);
}
  .section.frntabout > .container{
    padding-right:min(8vw, 36px);
  }
}

/* Dividers */
.divider{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  width:100%;
  height:64px;
  pointer-events:none;
}
.divider.top{top:-1px; bottom:auto; transform:rotate(180deg)}

/* Hero divider enhancement */
.hero{
  --divider-parallax-offset:0px;
}

.section-divider{
  position:absolute;
  left:0;
  right:0;
  width:100%;
  line-height:0;
  pointer-events:none;
}

.hero-wave-divider{
  color:#fff;
  z-index:3;
  left:-2%;
  right:-2%;
  width:104%;
  bottom:-2px;
  transform:translate3d(0, var(--divider-parallax-offset), 0);
  will-change:transform;
  overflow:hidden;
}

.hero-wave-divider::before{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  bottom:-2px;
  height:clamp(52px, 7vw, 94px);
  background:var(--sand-300);
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  opacity:.24;
}

.hero-wave-divider .divider-svg{
  display:block;
  width:100%;
  min-width:calc(100% + 8px);
  height:clamp(70px, 10vw, 140px);
}

.hero-wave-divider path{
  fill:currentColor;
}

.hero-wave-divider .divider-desktop{
  animation:hero-wave-float 8s ease-in-out infinite alternate;
}

.hero-wave-divider .divider-mobile{
  display:none;
  animation:hero-wave-float 8s ease-in-out infinite alternate;
}

.divider-to-white{
  color:#fff;
}

@keyframes hero-wave-float{
  from{transform:translateX(0)}
  to{transform:translateX(-8px)}
}

@media (max-width: 1360px){
  .hero-wave-divider .divider-desktop{
    display:none;
  }

  .hero-wave-divider .divider-mobile{
    display:block;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-wave-divider{
    transform:none !important;
  }

  .hero-wave-divider .divider-desktop,
  .hero-wave-divider .divider-mobile{
    animation:none !important;
  }
}




	/* Reusable wave dividers for section transitions */
	.section{
	  --divider-color:#fff;
	  --divider-glow:rgba(217,198,165,.20);
	}

	.section-wave-divider{
	  color:var(--divider-color);
	  z-index:3;
	  left:-2%;
	  right:-2%;
	  width:104%;
	  bottom:-2px;
	  overflow:hidden;
	}

	.section-wave-divider::before{
	  content:"";
	  position:absolute;
	  left:-8%;
	  right:-8%;
	  bottom:-2px;
	  height:clamp(52px, 7vw, 94px);
	  background:var(--divider-glow);
	  border-radius:50% 50% 0 0 / 100% 100% 0 0;
	  opacity:1;
	}


	.section-wave-divider .divider-svg{
	  display:block;
	  width:100%;
	  min-width:calc(100% + 8px);
	  height:clamp(70px, 10vw, 140px);
	}

	.section-wave-divider path{
	  fill:currentColor;
	}

	.section-wave-divider .divider-desktop{
	  animation:hero-wave-float 8s ease-in-out infinite alternate;
	}

	.section-wave-divider .divider-mobile{
	  display:none;
	  animation:hero-wave-float 8s ease-in-out infinite alternate;
	}

	.divider-to-white{
	  --divider-color:#fff;
	  --divider-glow:rgba(217,198,165,.20);
	}

	.divider-to-sand{
	  --divider-color:rgba(247,242,235,1);
	  --divider-glow:rgba(232,238,247,1);
	}

	.divider-to-blue-soft{
	  --divider-color:rgba(232,238,247,1);
	  --divider-glow:rgba(217,198,165,.22);
	}

	.divider-to-gold-soft{
	  --divider-color:rgba(251,245,226,1);
	  --divider-glow:rgba(243,179,0,.20);
	}

	.divider-to-cloud{
	  --divider-color:var(--cloud);
	  --divider-glow:rgba(31,86,174,.16);
	}

	.divider-to-dark,
	.divider-to-footer{
	  --divider-color:var(--blue-900);
	  --divider-glow:rgba(217,198,165,.22);
	}

	.section-sand{
	  background:linear-gradient(180deg, rgba(247,242,235,1), #fff 72%);
	}

	.section-blue-soft{
	  background:linear-gradient(180deg, rgba(232,238,247,1), #fff 72%);
	}

	.section-gold-soft{
	  background:linear-gradient(180deg, rgba(251,245,226,1), var(--cloud) 72%);
	}

@media (max-width: 1360px){
  .section-wave-divider .divider-desktop{
    display:none;
  }

  .section-wave-divider .divider-mobile{
    display:block;
  }
}

@media (prefers-reduced-motion: reduce){
  .section-wave-divider .divider-desktop,
  .section-wave-divider .divider-mobile{
    animation:none !important;
  }
}


/* Cards and grids */
.grid{
  display:grid;
  gap:18px;
}
.grid.cols-3{grid-template-columns:repeat(3, 1fr)}
.grid.cols-2{grid-template-columns:repeat(2, 1fr)}
.grid.cols-4{grid-template-columns:repeat(4, 1fr)}
@media (max-width: 1360px){
  .grid.cols-4{grid-template-columns:repeat(2, 1fr)}
  .grid.cols-3{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 620px){
  .grid.cols-4,.grid.cols-3,.grid.cols-2{grid-template-columns:1fr}
}

.card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,43,77,.10);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.card.dark{
  background:rgba(13,33,57,.50);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 22px 70px rgba(0,0,0,.20);
  backdrop-filter:saturate(165%) blur(16px);
}
.card h3{
  margin:8px 0 6px;
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.7px;
  font-size:1.45rem;
}
.card p{margin:0; color:var(--slate-600)}
.card.dark p{color:rgba(255,255,255,.86)}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(31,86,174,.10);
  border:1px solid rgba(31,86,174,.14);
  color:var(--blue-800);
  font-weight:800;
  letter-spacing:.4px;
  text-transform:uppercase;
  font-size:.78rem;
}
.badge.gold{
  background:rgba(243,179,0,.88);
  border-color:rgba(243,179,0,.24);
  color:#5d3e00;
}

/* Services carousel */
.carousel{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .carousel{grid-template-columns:1fr}
}

.carousel-stage{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  min-height:420px;
  border:1px solid rgba(15,43,77,.10);
  box-shadow:var(--shadow-md);
  perspective:1800px;
  perspective-origin:center center;
  transform-style:preserve-3d;
}

.carousel-viewport{
  position:relative;
  width:100%;
  height:100%;
  min-height:420px;
  transform-style:preserve-3d;
}

.carousel-panel{
  position:absolute;
  inset:0;
  border-radius:var(--radius-xl);
  overflow:hidden;
  backface-visibility:hidden;
  transform-style:preserve-3d;
  transform-origin:center center;
  will-change:transform, opacity;
}

.carousel-panel .media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.02);
  transform:scale(1.02);
}

.carousel-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(15,43,77,.86), rgba(15,43,77,.36));
  z-index:1;
}

.carousel-panel::after{
  content:"";
  position:absolute;
  inset:auto -40% -50% -40%;
  height:70%;
  background:radial-gradient(closest-side, rgba(243,179,0,.26), transparent 68%);
  transform:skewY(-8deg);
  z-index:1;
}

.carousel-card{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  color:#fff;
  transform:translateZ(40px);
}

.carousel-card .service-title{
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.9px;
  font-size:2.1rem;
  margin:0;
  line-height:1.05;
}

.carousel-card .service-desc{
  margin:10px 0 16px;
  color:rgba(255,255,255,.88);
  max-width:60ch;
}

.carousel-card .service-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.carousel-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}

.carousel-meta .chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
}

.carousel-progress{
  position:relative;
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  overflow:hidden;
  flex:0 0 44px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.carousel-progress::before{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:50%;
  background:rgba(15,43,77,.22);
  z-index:1;
}

.carousel-progress-fill{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:0%;
  border-radius:0 0 999px 999px;
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.38));
  transition:height .18s linear;
}

.carousel-stage.is-autoplaying .carousel-panel.is-current .carousel-progress-fill{
  animation:carousel-progress-fill var(--carousel-autoplay-duration) linear forwards;
}

.carousel-stage.is-paused .carousel-panel.is-current .carousel-progress-fill,
.carousel-stage.is-animating-next .carousel-progress-fill,
.carousel-stage.is-animating-prev .carousel-progress-fill{
  animation:none !important;
}

@keyframes carousel-progress-fill{
  0%{height:0%;}
  100%{height:100%;}
}

.carousel-stage[data-direction="next"] .carousel-panel.is-current{
  transform-origin:left center;
}

.carousel-stage[data-direction="next"] .carousel-panel.is-next{
  transform-origin:right center;
}

.carousel-stage[data-direction="prev"] .carousel-panel.is-current{
  transform-origin:right center;
}

.carousel-stage[data-direction="prev"] .carousel-panel.is-next{
  transform-origin:left center;
}

.carousel-panel.is-current{
  transform:rotateY(0deg) translateZ(0);
  opacity:1;
  z-index:2;
}

.carousel-panel.is-next{
  transform:rotateY(89.8deg) translateZ(0);
  opacity:0;
  z-index:1;
}

.carousel-stage.is-animating-next .carousel-panel.is-current{
  animation:carousel-out-next var(--carousel-transition-duration) var(--ease) forwards;
}

.carousel-stage.is-animating-next .carousel-panel.is-next{
  animation:carousel-in-next var(--carousel-transition-duration) var(--ease) forwards;
}

.carousel-stage.is-animating-prev .carousel-panel.is-current{
  animation:carousel-out-prev var(--carousel-transition-duration) var(--ease) forwards;
}

.carousel-stage.is-animating-prev .carousel-panel.is-next{
  animation:carousel-in-prev .98s var(--ease) forwards;
}

@keyframes carousel-out-next{
  0%{
    transform:perspective(1800px) rotateY(0deg) scaleX(1);
    opacity:1;
  }
  100%{
    transform:perspective(1800px) rotateY(-89.8deg) scaleX(.985);
    opacity:0;
  }
}

@keyframes carousel-in-next{
  0%{
    transform:perspective(1800px) rotateY(89.8deg) scaleX(.985);
    opacity:0;
  }
  16%{
    transform:perspective(1800px) rotateY(72deg) scaleX(.988);
    opacity:1;
  }
  100%{
    transform:perspective(1800px) rotateY(0deg) scaleX(1);
    opacity:1;
  }
}

@keyframes carousel-out-prev{
  0%{
    transform:perspective(1800px) rotateY(0deg) scaleX(1);
    opacity:1;
  }
  100%{
    transform:perspective(1800px) rotateY(89.8deg) scaleX(.985);
    opacity:0;
  }
}

@keyframes carousel-in-prev{
  0%{
    transform:perspective(1800px) rotateY(-89.8deg) scaleX(.985);
    opacity:0;
  }
  16%{
    transform:perspective(1800px) rotateY(-72deg) scaleX(.988);
    opacity:1;
  }
  100%{
    transform:perspective(1800px) rotateY(0deg) scaleX(1);
    opacity:1;
  }
}

@media (prefers-reduced-motion: reduce){
  .carousel-stage,
  .carousel-viewport,
  .carousel-panel,
  .carousel-card{
    transform:none !important;
  }

  .carousel-stage.is-animating-next .carousel-panel.is-current,
  .carousel-stage.is-animating-next .carousel-panel.is-next,
  .carousel-stage.is-animating-prev .carousel-panel.is-current,
  .carousel-stage.is-animating-prev .carousel-panel.is-next{
    animation:none !important;
  }

  .carousel-panel{
    transition:opacity .25s ease;
  }

  .carousel-stage.is-autoplaying .carousel-panel.is-current .carousel-progress-fill{
    animation:none !important;
    height:0% !important;
  }
}

.icon-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

@media (max-width: 620px){
  .icon-grid{grid-template-columns: repeat(2, 1fr)}
}

.icon-tile{
  border-radius:16px;
  border:1px solid rgba(15,43,77,.10);
  background:rgba(255,255,255,.95);
  padding:12px;
  text-align:left;
  cursor:pointer;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.icon-tile:hover{transform:translateY(-1px); box-shadow:var(--shadow-sm)}
.icon-tile:focus-visible{outline:3px solid var(--gold-500); outline-offset:3px}
.icon-tile[aria-pressed="true"]{
  background:rgba(31,86,174,.08);
  border-color:rgba(31,86,174,.22);
}
.icon-tile .label{display:block; font-weight:800; color:var(--blue-900); line-height:1.15}
.icon-tile .tiny{display:block; color:var(--slate-600); font-size:.9rem; margin-top:4px}

.carousel-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  align-items:center;
}

.toggle{
  display:flex;
  gap:10px;
  align-items:center;
}
.toggle input{width:18px; height:18px}

/* Form */
.form-wrap{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:18px;
}
@media (max-width: 980px){
  .form-wrap{grid-template-columns:1fr}
}

.form{
  background:#fff;
  border:1px solid rgba(15,43,77,.10);
  border-radius:var(--radius-xl);
  padding:18px;
  box-shadow:var(--shadow-sm);
}

.field{
  display:grid;
  gap:6px;
  margin-bottom:12px;
}
label{font-weight:800; color:var(--slate-900)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,43,77,.18);
  font:inherit;
  background:#fff;
}
textarea{min-height:120px; resize:vertical}
input:focus, select:focus, textarea:focus{outline:3px solid rgba(243,179,0,.55); border-color:rgba(243,179,0,.75)}
.help{color:#fff; font-size:.95rem}

.form-actions{display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-top:10px}

.notice{
  border-radius:var(--radius-lg);
  padding:12px 14px;
  border:1px solid rgba(217,75,56,.26);
  background:rgba(217,75,56,.08);
  color:#8b271a;
  font-weight:800;
}

input[type="checkbox"],
input[type="radio"]{
  width:auto;
  padding:0;
  border:none;
  border-radius:0;
  box-shadow:none;
}

.consent-row{
  display:flex;
  align-items:flex-start;
  gap:8px;            /* space between checkbox and text */
}

.consent-row input{
  flex:0 0 auto;
  width:auto;
  margin:3px 0 0;
}

.consent-row span{
  flex:1;            /* text takes remaining width */
}

/* Lists */
.clean-list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.clean-list li{display:flex; gap:10px; align-items:flex-start}

/* Pillars */
.pillars .card{position:relative; overflow:hidden}
.pillars .card::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(243,179,0,.26), transparent 70%);
  right:-70px;
  top:-70px;
}

/* Footer */
.footer{
  background:linear-gradient(180deg, var(--blue-900), #0b203b);
  color:#fff;
  padding:56px 0 28px;
  position:relative;
}
.footer a{color:rgba(255,255,255,.92)}
.footer a:hover{color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:18px;
}
@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 620px){
  .footer-grid{grid-template-columns:1fr}
}
.footer h3{
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.8px;
  margin:0 0 10px;
}
.footer p{color:rgba(255,255,255,.84); margin:0}
.footer .fine{margin-top:22px; color:rgba(255,255,255,.70); font-size:.95rem}

/* Utility */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  border:0 !important;
}

.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.95em;
  background:rgba(255,255,255,.12);
  padding:2px 6px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
}

/* Page hero */
.page-hero{
  background:radial-gradient(900px 500px at 25% 30%, rgba(243,179,0,.18), transparent 60%),
             linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color:#fff;
  padding:54px 0;
  position:relative;
  overflow:hidden;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:auto -30% -60% -30%;
  height:80%;
  background:radial-gradient(closest-side, rgba(255,255,255,.20), transparent 70%);
  transform:skewY(-7deg);
  opacity:.45;
}
.page-hero .wrap{position:relative}
.page-hero h1{
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  margin:0 0 8px;
}
.page-hero p{margin:0; color:rgba(255,255,255,.86); max-width:80ch}

.breadcrumbs{
  margin-top:10px;
  color:rgba(255,255,255,.82);
  font-weight:700;
}
.breadcrumbs a{color:rgba(255,255,255,.92); text-decoration:none}
.breadcrumbs a:hover{text-decoration:underline}

/* Table-ish city grid */
.city-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
  margin-top:16px;
}
@media (max-width: 980px){.city-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 620px){.city-grid{grid-template-columns:1fr}}

.city-pill{
  background:rgba(255,255,255,.90);
  border:1px solid rgba(15,43,77,.10);
  border-radius:999px;
  padding:10px 12px;
  font-weight:800;
  color:var(--blue-900);
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.city-pill span{color:var(--slate-600); font-weight:700; font-size:.95rem}

/* Focus ring for any custom elements */
:focus-visible{scroll-margin-top:90px}



.inline-video-wrap{
  margin:14px 0 18px;
  border-radius:var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(15,43,77,.10);
  box-shadow:var(--shadow-sm);
  background:#dfe6ee;
}

.inline-video{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16 / 9;
  object-fit:cover;
  background:#dfe6ee;
}

@media (max-width: 980px){
  .inline-video-wrap{
    margin:14px 0 16px;
  }

  .inline-video{
    aspect-ratio:16 / 10;
  }
}


/* Reviews carousel */
.reviews-section{
  overflow:hidden;
}

.reviews-shell{
  position:relative;
  --review-delay:5000ms;
}

.reviews-stage{
  position:relative;
  transition:height .45s var(--ease);
}

.review-card{
  position:relative;
  display:none;
  inset:0;
  opacity:0;
  transform:translateX(60px) scale(.96) rotateY(-10deg);
  pointer-events:none;
  transition:
    opacity .65s var(--ease),
    transform .8s var(--ease),
    filter .6s var(--ease);
  background:
    radial-gradient(circle at top right, rgba(243,179,0,.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.88));
  border:1px solid rgba(15,43,77,.10);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-md);
  padding:22px;
  filter:blur(2px);
  transform-origin:center center;
  overflow:hidden;
}

.review-card::after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-70px;
  top:-70px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(31,86,174,.12), transparent 70%);
  pointer-events:none;
}

.review-card.is-active{
  opacity:1;
  transform:translateX(0) scale(1) rotateY(0deg);
  pointer-events:auto;
  filter:none;
  z-index:2;
  display:block;
}

.review-card.is-active{
  animation:reviewPulse var(--review-delay) linear;
}

@keyframes reviewPulse{
  0%,90%{ transform:translateX(0) scale(1); }
  95%{ transform:translateX(-2px) scale(1.01); }
  100%{ transform:translateX(0) scale(1); }
}

.review-card.is-leaving-prev{
  opacity:0;
  transform:translateX(70px) scale(.96) rotateY(10deg);
}

.review-card.is-leaving-next{
  opacity:0;
  transform:translateX(-70px) scale(.96) rotateY(-10deg);
}

.review-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:14px;
}

.review-top h3{
  margin:0;
  font-family:var(--font-heading);
  text-transform:uppercase;
  letter-spacing:.7px;
  font-size:1.7rem;
  line-height:1;
}

.review-meta{
  margin:6px 0 0;
  color:var(--slate-600);
  font-weight:700;
  font-size:.96rem;
}

.review-stars{
  flex:0 0 auto;
  color:var(--gold-500);
  letter-spacing:2px;
  font-size:1.05rem;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(243,179,0,.12);
  border:1px solid rgba(243,179,0,.22);
}

.review-text{
  margin:0;
  font-size:1.07rem;
  color:var(--slate-700);
}

.review-tags{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.review-tags li{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(31,86,174,.08);
  border:1px solid rgba(31,86,174,.14);
  color:var(--blue-800);
  font-weight:800;
  font-size:.88rem;
}

.reviews-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:18px;
}

.reviews-arrow{
  width:52px;
  height:52px;
  border-radius:999px;
  border:1px solid rgba(15,43,77,.14);
  background:#fff;
  color:var(--blue-900);
  font-size:1.2rem;
  font-weight:900;
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

.reviews-arrow:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-md);
}

.reviews-arrow:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
}

.reviews-dots{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  flex:1 1 auto;
}

.reviews-dot{
  position:relative;
  width:36px;
  height:6px;
  border-radius:999px;
  border:none;
  background:rgba(15,43,77,.18);
  overflow:hidden;
  cursor:pointer;
}

.reviews-dot::after{
  content:"";
  position:absolute;
  inset:0;
  width:0%;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-400));
  transition:width linear;
}

.reviews-dot.is-active{
  width:34px;
  background:linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

.reviews-dot.is-active::after{
  width:100%;
}

.reviews-dot.is-active::after{
  animation:review-progress var(--review-delay) linear forwards;
}

@keyframes review-progress{
  from{ width:0%; }
  to{ width:100%; }
}

.reviews-dot:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
}

.reviews-seo{
  background:
    radial-gradient(circle at top right, rgba(243,179,0,.12), transparent 30%),
    rgba(255,255,255,.88);
}

@media (max-width: 900px){
  .reviews-stage{
    min-height:560px;
  }

  .review-top{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 620px){
  .reviews-stage{
    min-height:650px;
  }

  .review-card{
    padding:18px;
  }

  .review-top h3{
    font-size:1.45rem;
  }

  .review-text{
    font-size:1rem;
  }

  .reviews-controls{
    gap:10px;
  }

  .reviews-arrow{
    width:46px;
    height:46px;
  }
}

@media (prefers-reduced-motion: reduce){
  .review-card{
    transition:none !important;
    transform:none !important;
    filter:none !important;
  }

  .reviews-arrow,
  .reviews-dot{
    transition:none !important;
  }
}

.reviews-shell{
  --review-delay:6500ms;
  touch-action:pan-y;
}

.review-card{
  user-select:none;
  -webkit-user-select:none;
}

.reviews-dot{
  position:relative;
  width:36px;
  height:6px;
  border-radius:999px;
  border:none;
  background:rgba(15,43,77,.18);
  overflow:hidden;
  cursor:pointer;
}

.reviews-dot::after{
  content:"";
  position:absolute;
  inset:0;
  width:0%;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-400));
}

.reviews-dot.is-active::after{
  animation:review-progress var(--review-delay) linear forwards;
}

@keyframes review-progress{
  from{ width:0%; }
  to{ width:100%; }
}

.final-cta-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap:24px;
  align-items:center;
}

.final-cta-content{
  min-width:0;
}

.final-cta-head{
  margin-bottom:18px;
}

.final-cta-head.section-head{
  display:block;
}

.final-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.final-cta-video-wrap{
  margin:0;
  align-self:start;
}

.final-cta-video{
  aspect-ratio:16 / 11;
}

@media (max-width: 980px){
  .final-cta-grid{
    grid-template-columns:1fr;
  }

  .final-cta-video-wrap{
    order:-1;
  }

  .final-cta-video{
    aspect-ratio:16 / 9;
  }
}



/* Team Section */

.team-feature-card,
.team-member-card {
  position: relative;
  overflow: hidden;
}

.team-feature-card::after,
.team-member-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(243,179,0,.16), transparent 70%);
  pointer-events: none;
}

.team-feature-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.team-feature-image-wrap {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(31,86,174,.12);
  box-shadow: 0 12px 28px rgba(11,18,32,.14);
  background: #fff;
}

.team-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-feature-content h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.team-grid {
  align-items: stretch;
}

.team-member-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.team-member-image-wrap {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(31,86,174,.12);
  box-shadow: 0 10px 24px rgba(11,18,32,.14);
  background: #fff;
}

.team-member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-meta h3 {
  margin: 4px 0 0;
}

@media (max-width: 900px) {
  .team-feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-feature-image-wrap {
    margin: 0 auto;
  }

  .team-feature-content .badge {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .team-member-header {
    align-items: flex-start;
  }

  .team-member-image-wrap {
    width: 74px;
    height: 74px;
    min-width: 74px;
  }
}



.service-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 62vh, 640px);
  display: flex;
  align-items: center;
  background: #16335f;
  color: #fff;
  isolation: isolate;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 26, 51, 0.82) 0%, rgba(19, 53, 102, 0.58) 55%, rgba(19, 53, 102, 0.38) 100%);
  z-index: -2;
}


.service-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 26, 51, 0.82) 0%, rgba(19, 53, 102, 0.58) 55%, rgba(19, 53, 102, 0.38) 100%);
  z-index: -2;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(110px, 14vw, 150px);
  padding-bottom: clamp(120px, 14vw, 170px);
  max-width: 760px;
}

.service-hero .breadcrumbs {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.78);
}

.service-hero .breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.service-hero .breadcrumbs a:hover {
  text-decoration: underline;
}

.service-hero .kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1c96b;
  font-size: 0.82rem;
}

.service-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-hero p {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.9);
}

.service-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-hero .section-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.service-hero .divider-svg {
  display: block;
  width: 100%;
  height: clamp(70px, 9vw, 140px);
}

@media (max-width: 767px) {
  .service-hero {
    min-height: 360px;
  }

  .service-hero-content {
    padding-top: 110px;
    padding-bottom: 105px;
  }

  .service-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }
}


.service-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("/assets/video/HACVTruck.jpg") center center / cover no-repeat;
  z-index: -3;
  transform: scale(1.02);
}


.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("/assets/video/HACVTruck.jpg") center center / cover no-repeat;
  z-index: -3;
  transform: scale(1.02);
}






















.service-detail-hero {
  position: relative;
  overflow: hidden;
  background: url(/assets/img/wings-left.png) left center / auto 100% no-repeat, linear-gradient(180deg, var(--blue-900), var(--blue-800));
  color: #fff;
  padding: clamp(56px, 7vw, 92px) 0 clamp(118px, 13vw, 170px);
  isolation: isolate;
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 18% 20%, rgba(243,179,0,.16), transparent 60%),
    radial-gradient(820px 420px at 85% 30%, rgba(255,255,255,.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.service-detail-hero__grid {
  position: relative;
  z-index: 2;
}

.service-detail-hero__content {
  position: relative;
  max-width: 1100px;
  padding-right: clamp(320px, 32vw, 520px);
}

.service-detail-hero .breadcrumbs {
  margin-bottom: 16px;
  color: rgba(255,255,255,.78);
}

.service-detail-hero .breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.service-detail-hero .breadcrumbs a:hover {
  text-decoration: underline;
}

.service-detail-hero h1 {
  margin: 14px 0 18px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: .95;
  color: #fff;
}

.service-detail-hero p {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(255,255,255,.88);
}

.service-detail-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-detail-hero__media {
  position: absolute;
  top: 58%;
  right: 0;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(260px, 28vw, 420px);
  pointer-events: none;
}

.service-detail-hero__image-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  background: rgba(255,255,255,.08);
}

.service-detail-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-hero .section-divider {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  width: 104%;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

/* Tablet/mobile: put image under title */
@media (max-width: 900px) {
  .service-detail-hero__content {
    padding-right: 0;
  }

  .service-detail-hero__media {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    justify-content: center;
    margin: 14px 0 18px;
  }

  .service-detail-hero__image-wrap {
    width: min(72vw, 320px);
  }
}

@media (max-width: 640px) {
  .service-detail-hero {
    padding-top: 42px;
    padding-bottom: 108px;
  }

  .service-detail-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    margin-bottom: 8px;
  }

  .service-detail-hero__image-wrap {
    width: min(78vw, 280px);
  }
}

/* Partner Section Enhancements */

/* Logo */
.partner-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.partner-logo {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.08));
}

/* Owner Header Layout */
.owner-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* Owner Image */
.owner-image-wrap {
  width: 100%;
  height: 100%;
  max-width: 300px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid rgba(31,86,174,.12);
  box-shadow: 0 10px 24px rgba(11,18,32,.14);
  background: #fff;
}

.owner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom:-25px;
}

/* Owner Meta */
.owner-meta h3 {
  margin: 4px 0 0;
}

/* Optional polish for cards */
.partner-card,
.partner-owner-card {
  position: relative;
  overflow: hidden;
}

/* Subtle glow accent */
.partner-card::after,
.partner-owner-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(243,179,0,.18), transparent 70%);
}