/* ===========================
   BASE (shared) — typography, layout, components
   =========================== */

/* Reset / base */
:root{
  --container: 960px;

  /* common tokens */
  --radius-8: 8px;
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-14: 14px;

  --badge-bg: #b71c1c;
  --cta-bg: #e53935;
  --fab-bg: #22c55e;

  /* default (theme overrides these) */
  --bg: #ffffff;
  --text: #0f172a;
  --muted: rgba(15,23,42,.78);
  --muted-2: rgba(15,23,42,.60);

  --panel-bg: #ffffff;
  --panel-border: rgba(15,23,42,.12);
  --divider: rgba(15,23,42,.12);

  --shadow-cta: 0 10px 30px rgba(0,0,0,.18);
  --shadow-card: 0 10px 24px rgba(15,23,42,.06);
  --shadow-card-soft: 0 10px 24px rgba(15,23,42,.04);

  --lock-left: var(--cta-bg);
  --accent-blue-bg: rgba(53,156,229,.14);
  --accent-blue-border: rgba(53,156,229,.20);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.buttons-box {
  display: flex; 
  gap: 5px;
}



.buttons-box .cta--secondary:hover {
  cursor: pointer;
  background-color: var(--panel-border);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 35px 8px; /* default mobile padding */
}

.no-padding-top {
  padding-top: 10px !important;
}

/* ===========================
   Typography
   =========================== */

h1{
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

h2{
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 10px !important;
  font-weight: 400;
}

h3{
  font-size: 15px;
  line-height: 1.25;
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 10px 0;
}

/* ===========================
   Badge
   =========================== */

.badge{
  display:inline-block;
  background: var(--badge-bg);
  color:#fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

/* ===========================
   CTA
   =========================== */

.cta{
  display:block;
  background: var(--cta-bg);
  color:#fff;
  text-align:center;
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  text-decoration:none;
  border-radius: var(--radius-8);
  margin: 10px 0 10px;
  box-shadow: var(--shadow-cta);
}

.cta-tight{ margin-top: 12px; }

.cta span{ padding-top: 10px; margin: 0; color:#fff; }

.cta p{
  color:#fff;
  text-decoration:none;
  text-align:center;
  margin:0 auto;
  width:100%;
  font-weight:100;
  font-size: 16px;
}

/* Phone CTA formatting */
a.cta.zphone{
  display:block;
  text-decoration:none;
  line-height: 1.15;
  font-size: 20px;
  font-weight: 800;
}

a.cta.zphone::before{
  content: "CALL NOW: ";
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .3px;
  opacity: .95;
  vertical-align: baseline;
}

a.cta.zphone::after{
  content: attr(data-sub);
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 100;
  opacity: .85;
}

a.cta.zphone:hover{
  background-color: rgb(255, 70, 70);
  transition: background-color 0.5s ease;
}

/* ===========================
   Trust line
   =========================== */

.trust{
  font-size: 13px;
  color: var(--muted-2);
  text-align:center;
  margin: 16px 0 22px;
}

/* ===========================
   Panels
   =========================== */

.panel{
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-10);
}

.panel--left{
  border-left: 4px solid var(--lock-left);
}

.lock{
  padding: 18px;
  margin: 0;
  font-size: 15px;
  box-shadow: var(--shadow-card);
  color: var(--text);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-10);
}

/* If you later apply .panel--left to .lock */
.lock.panel--left{ border-left: 4px solid var(--lock-left); }

.panic{
  padding: 20px;
  margin: 28px 0;
  box-shadow: var(--shadow-card);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-14);
}

.panic h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}

.panic ul{
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
}



.panic li{ margin-bottom: 8px; }

.panic p{ font-size: 15px; color: var(--muted); }

/* ===========================
   Sections / divider
   =========================== */

.section{ margin: 24px 0; }

.section h3{
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--text);
}

.section p{
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 10px;
  font-size: 15px;
}

.divider{
  height: 1px;
  background: var(--divider);
  margin: 42px 0;
}

/* ===========================
   HERO
   =========================== */

/* Hero wrapper (image-set / overlay defined inline in HTML) */
.hero{
  position: relative;
  padding-top: 100px;          /* space for topbar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  max-height: 850px;
  min-height: fit-content;
}

.hero-capability{
  margin-top: 20px;
  margin-bottom: 30px;
  color: white;
}

/* ===========================
   Trust logos row
   =========================== */

.trust-logos{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0 8px;
}

/* Your original behavior: 3 columns from 560px and above */
@media (min-width:560px){
  .trust-logos{ grid-template-columns: repeat(3, 1fr); }
}

.trust-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 6px 10px; /* mobile default */
  border-radius: var(--radius-12);
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  box-shadow: var(--shadow-card);
}

.trust-logo img{
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
}

.trust-logo span{
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--muted);
}

.trust-logo picture{ display:inline-block; line-height:0; }
.trust-logo picture img{ display:block; }

/* Compact version lower on page */
.trust-logos--compact .trust-logo{ box-shadow: none; }
.trust-logos--compact .trust-logo img{ width: 40px; height: 40px; }

/* ✅ MOBILE HERO TRUST LOGOS: compact row (desktop unchanged) */
@media (max-width:818px){
   .proof-split__media{
    max-height: 300px;
  }

  .hero .trust-logos{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 12px 0 0;
  }

  .hero .trust-logo{
    padding: 8px 6px;
    gap: 0;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .hero .trust-logo img{
    width: 34px;
    height: 34px;
  }

  /* Hide labels on mobile (clean like your screenshot). Remove if you want text */
  .hero .trust-logo span{
    display: none;
  }
}

/* Contractor avatar */
.contractor img{
  border-radius: 50%;
  overflow: hidden;
}

/* ===========================
   Cards / grids / icons
   =========================== */

  .float {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
  }


.grid-3{
  display:grid;
  gap: 12px;
  margin: 18px 0 10px;
}

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

.card {
  background: rgba(17, 23, 34, 0.18);
}

.card-2 {
    background: rgba(36, 73, 147, 0.54);
}

.card, .card-2{
  padding: 16px;

  border: 1px solid var(--panel-border);
  border-radius: var(--radius-14);
  box-shadow: var(--shadow-card);
}

.card h4, .card-2 h4{
  margin: 10px 0 6px;
  font-size: 16px;
  color: var(--text);
}

.card p, .card-2 p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: var(--radius-14);
  background: var(--accent-blue-bg);
  border: 1px solid var(--accent-blue-border);
}

.icon svg{
  width: 22px;
  height: 22px;
  opacity: .92;
}

/* ===========================
   Services
   =========================== */

.services{
  display:grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 12px;
}

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

.svc{
  padding: 12px;
  border-radius: var(--radius-12);
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  color: var(--muted);
  box-shadow: var(--shadow-card-soft);
}

.note{
  margin-top: 12px;
  padding: 12px;
  border-left: 4px solid var(--cta-bg);
  border-radius: var(--radius-10);
  border: 1px solid var(--panel-border);
  background: var(--panel-bg);
  color: var(--muted);
  box-shadow: var(--shadow-card);
}

/* ===========================
   Reviews
   =========================== */

.reviews{
  display:grid;
  gap: 12px;
  margin-top: 12px;
}

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

.review{
  padding: 16px;
  border-radius: var(--radius-14);
  border: 1px solid var(--panel-border);
  background-color: rgba(36, 73, 147, 0.659) !important;
  box-shadow: var(--shadow-card);
}

.stars{
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
}

.review p{
  margin: 0 0 10px;
  color: white;
  line-height: 1.6;
}

.who{
  font-size: 12px;
  color: var(--muted-2);
}

.mini-trust{
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

/* ===========================
   FAQ
   =========================== */

.faq{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

.faq details{
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-12);
  background: var(--panel-bg);
  padding: 12px 14px;
  box-shadow: var(--shadow-card-soft);
}

.faq summary{
  cursor:pointer;
  font-weight:700;
  color: var(--text);
}

.faq p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ===========================
   About badges
   =========================== */

.about-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(15,23,42,.04);
  font-size: 12px;
  color: var(--muted);
}

/* ===========================
   White-back section
   =========================== */

.white-back{
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  padding: 22px;
  border-radius: var(--radius-14);
  box-shadow: var(--shadow-card);
}

/* ===========================
   Stats
   =========================== */

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0 6px;
}

.stat{
  text-align:center;
  padding: 12px 10px;
  border-radius: var(--radius-12);
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow-card);
}

.stat strong{
  display:block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.stat span{
  display:block;
  font-size: 12px;
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width:420px){
  .stat strong{ font-size: 16px; }
  .stat span{ font-size: 11px; }
}

/* ===========================
   Proof split layout
   =========================== */

.proof-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 14px;
}

.proof-split__media iframe {
  height: 100% !important;
}

.proof-split__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

.proof-split__media img{
  width: 100%;
  height: 100%;
  max-height: 500px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.proof-split__caption{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.proof-split__cards{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px){
  .proof-split{ grid-template-columns: 1fr; }
  .proof-split__media{ max-height: 420px; }
}

/* ===========================
   Floating call button
   =========================== */

.fab-call{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: var(--fab-bg);
  z-index: 1000;
  text-decoration:none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
  border: 1px solid var(--panel-border);
}

.fab-call svg{
  width: 26px;
  height: 26px;
  fill: #fff;
}

.fab-call-label{
  position: fixed;
  right: 86px;
  bottom: 22px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  text-decoration:none;
  z-index: 1000;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

a.fab-call-label::before{
  content: attr(aria-label);
}

/* Wrapper + click-layer for FAB (your current pattern) */
.lp-fab-wrap{
  position: fixed;
  right: 10px;
  bottom: 20px;
}

.lp-fab-ico{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lp-fab-link{
  position: absolute;
  inset: 0;
  display: block;
  font-size: 0;
  text-decoration: none;
}

/* ===========================
   Footer
   =========================== */

.site-footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
}

.site-footer .container{
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 15px 15px;
}

.bottom-logo{
  display: flex;
  justify-content: center;
}

.bottom-logo a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bottom-logo img{
  height: 76px;
  width: auto;
  display: block;
}

.footer-center{
  max-width: 720px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-link,
.footer-phone{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .2px;
}

.footer-link:hover,
.footer-phone:hover{ text-decoration: underline; }

.footer-address{
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.footer-copyright{
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-top: 6px;
}

/* ===========================
   TOPBAR + MENU (final, non-duplicated)
   =========================== */

/* Legacy centered logo (disabled) */
.top-logo{ display:none !important; }

.topbar{
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 60;

  margin: 0 auto;
  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  /* match container width without breaking your layout */
  max-width: var(--container);
}

.topbar__logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 0;
}

.topbar__logo img{
  width: auto;
  display: block;
  height: 50px; /* mobile default */
}

.topbar__nav{
  position: relative;
  display: flex;
  align-items: center;
}

/* Hamburger */
.menu-btn{
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255, 255, 255, 0.033);
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.25s ease;
}

.menu-btn__icon{
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  border-radius: 2px;
}

.menu-btn__icon::before,
.menu-btn__icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:2px;
}
.menu-btn__icon::before{ top:-6px; }
.menu-btn__icon::after{  top: 6px; }

.menu-btn:focus{ outline: none; }
.menu-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 2px;
}

/* Dropdown (hidden by default) */
.menu{
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 14px 0px 14px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
  pointer-events: none;

  background: rgb(15, 25, 40); /* mobile default */
}

/* Menu links */
.menu__item{
  display:block;
  padding: 11px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-weight: 300;
  letter-spacing: .2px;
  font-size: 14px;
}
.menu__item:hover{ background: rgba(255,255,255,0.08); }
.menu__item:focus-visible{
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}


.buttons-box .cta--secondary {
  border: none;
  background-color: rgba(19, 17, 38, 0);
  border: 1px solid rgba(255, 255, 255, 0.119);
}

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

/* Desktop: hover open */
@media (min-width:819px){
  .proof-split__media{
    min-height: 100%;
    max-height: 400px;
  }

  /* iframe sizing */
  .map-frame iframe{
    height: 590px !important;
  }


  .buttons-box .cta--secondary {
    border: none;
    width: 20% !important;
    background-color: rgba(19, 17, 38, 0);
    border: 1px solid rgba(255, 255, 255, 0.119);
  }


  .buttons-box .cta {
    width: 80%;
  }

  .container{ padding: 15px 15px; }

  .hero{
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .hero-capability{
    margin-bottom: 30px;
    width: 60vw;
    min-width: 300px;
    max-width: 100vw;
  }



  .topbar{ max-width: 95%; }
  .topbar__logo img{ height: 64px; }

  .menu-btn{
    width: 46px;
    height: 42px;
    background: rgba(255,255,255,0.06);
  }

  .trust-logo{ padding: 10px 12px; }

  .menu{ background: rgba(15, 25, 40, 0.288); }

  .topbar__nav:hover .menu,
  .topbar__nav:focus-within .menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

 h2{
    font-size: 18px !important;
  }

/* Mobile: JS open state */
@media (max-width:818px){
  .map-frame iframe{
    height: 400px !important;
  }


  .buttons-box {
    flex-direction: column;
  }

  .buttons-box .cta, .buttons-box .cta--secondary {
   width: 100% !important;
  }

  .hero{
    padding-top: 66px; /* tighter on mobile so CTA appears higher */
  }

  h1{ font-size: 32px; }


 h2{
    font-size: 16px !important;
  }

  .topbar{
    max-width: 100%;
  }

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

  .topbar__nav.is-open .menu-btn{
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width:480px){
  .topbar{ top: 10px; }
}





/* ===========================
   Sticky bar (kept)
   =========================== */

.sticky{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--cta-bg);
  text-align:center;
  padding: 16px;
  z-index: 999;
}
.sticky a{
  color:#fff;
  font-size: 18px;
  font-weight:700;
  text-decoration:none;
}


.services-grid { gap: 14px; }

.service-card .service-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}

.service-ico{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.service-ico svg{ width:22px; height:22px; fill: currentColor; opacity:.95; }

.service-cta{
  display:inline-block;
  margin-top:10px;
  font-weight:700;
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  background: rgba(229,57,53,.16);
  border: 1px solid rgba(229,57,53,.35);
}

.service-card--wide{ grid-column: 1 / -1; }

.coverage-panel{
  border-radius:14px;
  padding:18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.coverage-bullets{ margin:10px 0 16px; padding-left:18px; }
.coverage-bullets li{ margin:6px 0; opacity:.9; }

@media (max-width: 900px){
  .service-card--wide{ grid-column:auto; }
}




.modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.modal.is-open { display: block; }

.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
}

.modal__panel{
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 10vh auto 0;
  padding: 18px 16px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.modal__close{
  position:absolute; top:10px; right:12px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 22px;
  cursor:pointer;
}

.modal__title{ margin: 6px 0 6px; }
.modal__subtitle{ margin: 0 0 12px; color: rgba(255,255,255,.75); font-size: 14px; }

.booking-form{ display:flex; flex-direction:column; gap:10px; }
.booking-form input, .booking-form select{
  width:100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size: 15px;
}
.booking-form input::placeholder{ color: rgba(255,255,255,.6); }
.booking-note{ margin-top: 6px; font-size: 12.5px; color: rgba(255,255,255,.7); }

.submit-cta {
  border: 1px solid rgba(255, 255, 255, 0.143);
}





.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

/* backdrop fade */
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  opacity: 0;
  transition: opacity .25s ease;
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

/* panel animation */
.modal__panel {
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 12vh auto 0;
  padding: 18px 16px 16px;
  border-radius: 14px;
  background: rgba(15,23,42,.95);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);

  /* initial state */
  opacity: 0;
  transform: translateY(18px) scale(.96);
  transition: 
    opacity .28s ease,
    transform .28s cubic-bezier(.22,.9,.32,1);
}

.modal.is-open .modal__panel {
  opacity: 1;
  animation: modalSettle .18s ease .18s forwards;
}

@keyframes modalSettle {
  to { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .modal__panel,
  .modal__backdrop {
    transition: none !important;
  }
}


.inscription a{
  padding: 5px 0px;
  font-size: 12px;
  color: rgb(255, 231, 145);
  text-decoration: none;
}

.inscription:hover {
  cursor: pointer;
  color: rgb(255, 243, 198);

}






.proof-split__media{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* overlay blocks interaction */
.overlap-map{
  position:absolute;
  inset:0;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;

  /* darker transparent overlay */
  background: linear-gradient(
    to bottom,
    rgba(13, 20, 24, 0.326) 0%,
    rgba(13, 20, 24, 0.372) 40%,
    rgba(13,20,24,.35) 70%,
    rgba(13,20,24,.25) 100%
  );

  pointer-events:auto; /* blocks map */
}

/* center message */
.coverage-box{
  max-width:420px;
  padding:18px 22px;
  border-radius:12px;
  text-align:center;
  color:#fff;

  background: rgba(13,20,24,.85);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.coverage-box span{
  display:block;
  font-size:13px;
  opacity:.9;
  margin-top:6px;
}



.review-proof{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:rgba(15,23,42,.85);
}

.star-gold svg{
  width:16px;
  height:16px;
  fill:#fbbf24; /* gold */
  flex:0 0 auto;
}

.review-proof strong {
  color: white;
}



.jobs-carousel{
  max-width:960px;
  margin:24px auto;
  padding: 0px 0px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  background:#ffffff00;
}

.jobs-carousel__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.jobs-carousel__head h2{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.2;
  color:#ffffff;
}

.jobs-carousel__head p{
  margin:0;
  color:rgba(255, 255, 255, 0.72);
  font-size:14px;
}

.jobs-carousel__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  background:#e53935;
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  white-space:nowrap;
}

.jobs-carousel__wrap{
  position:relative;
}

.jobs-carousel__viewport{
  overflow:hidden;
  border-radius:12px;
}

.jobs-carousel__track{
  display:flex;
  gap:12px;
  padding:2px;
  scroll-behavior:smooth;
  will-change:transform;
}

.job-card{
  flex:0 0 85%;
  background:#ffffff22;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.job-card__media{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 10;
  background:#f1f5f947;
}


.job-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.job-card__badge{
  position:absolute;
  top:10px;
  left:10px;
  background:rgba(15,23,42,.86);
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

.job-card__body{
  padding:12px 12px 14px;
}

.job-card__body h3{
  margin:0 0 8px;
  font-size:16px;
  color:#ffffff;
}

.job-card__meta{
  list-style:none;
  padding:0;
  margin:0 0 10px;
  display:grid;
  gap:6px;
  font-size:13px;
  color:rgba(255, 255, 255, 0.78);
}

.job-card__meta strong{
  color:#ffffff;
}

.job-card__note{
  margin:0;
  font-size:12px;
  color:rgba(223, 223, 223, 0.55);
}

.jobs-carousel__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.95);
  box-shadow:0 10px 24px rgba(15,23,42,.10);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  line-height:1;
  color:#0f172a;
}

.jobs-carousel__nav--prev{ 
  left:8px; 
  z-index: 9999999;
}
.jobs-carousel__nav--next{ 
  right:8px; 
  z-index: 9999999;
}

.jobs-carousel__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}

.jobs-carousel__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  background:rgba(77, 124, 235, 0.25);
  cursor:pointer;
}

.jobs-carousel__dot.is-active{
  background:rgba(15,23,42,.80);
  width:22px;
}

/* Responsive: show more on desktop */
@media (min-width: 800px){
  .job-card{ flex-basis: 45%; }
}
@media (min-width: 1100px){
  .job-card{ flex-basis: 31%; }
}