/* ================= BO CONTACT HERO WIDGET — default styling =================
   Scoped under .bo-contact-hero-wrap. Matches the exact source CSS:
   dark gradient hero, bordered info-strip with dividers (not separate
   cards), blue-tinted icon circles.
   ========================================================================= */

.bo-contact-hero-wrap{
  --ch-bg-start: #0A2347;
  --ch-bg-end: #071C38;
  --ch-accent: #1083E6;
  --ch-accent-soft: #BFE0FB;
  --ch-ease: cubic-bezier(.22,1,.36,1);
  --ch-ease-spring: cubic-bezier(.34,1.56,.64,1);
  font-family:'Roboto', sans-serif;
}

.bo-contact-hero-wrap .contact-hero{
  padding:130px 0 0;
  background:linear-gradient(180deg, var(--ch-bg-start) 0%, var(--ch-bg-end) 100%);
  position:relative;
  overflow:hidden;
}
.bo-contact-hero-wrap .contact-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 18%, rgba(16,131,230,.16), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(255,255,255,.04), transparent 36%);
  pointer-events:none;
}

.bo-contact-hero-wrap .ch-wrap{ max-width:1220px; margin:0 auto; padding:0 40px; }
.bo-contact-hero-wrap .contact-hero-inner{
  padding-bottom:0;
  position:relative;
  z-index:1;
}

/* ---------- Eyebrow / Heading / Lede ---------- */
.bo-contact-hero-wrap .ch-eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ch-accent-soft);
  font-weight:500;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
}
.bo-contact-hero-wrap .ch-eyebrow::before{
  content:'';
  width:18px; height:1px;
  background:var(--ch-accent-soft);
  display:inline-block;
}

.bo-contact-hero-wrap .contact-hero-inner h1{
  font-family:'Roboto Slab', serif;
  font-size:52px;
  font-weight:500;
  color:#fff;
  letter-spacing:-0.015em;
  margin-bottom:20px;
  line-height:1.08;
}
.bo-contact-hero-wrap .contact-hero-inner h1 em{
  font-style:italic;
  font-weight:400;
  color:var(--ch-accent);
}
.bo-contact-hero-wrap .contact-hero-inner > .reveal > p{
  font-family:'Roboto', sans-serif;
  font-size:16px;
  color:rgba(255,255,255,.72);
  max-width:520px;
  line-height:1.65;
  margin-bottom:48px;
}

/* ---------- Info strip (bordered, with dividers) ---------- */
.bo-contact-hero-wrap .contact-info-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-radius:18px 18px 0 0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  border-bottom:none;
  margin-top:8px;
}
.bo-contact-hero-wrap .cinfo-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:24px 28px;
  background:rgba(255,255,255,.05);
  border-right:1px solid rgba(255,255,255,.08);
  transition:background .3s var(--ch-ease);
  text-decoration:none;
  position:relative;
}
.bo-contact-hero-wrap .cinfo-card:last-child{ border-right:none; }
.bo-contact-hero-wrap .cinfo-card:hover{ background:rgba(255,255,255,.10); }

.bo-contact-hero-wrap .cinfo-icon{
  width:42px; height:42px;
  border-radius:10px;
  background:rgba(16,131,230,.18);
  border:1px solid rgba(16,131,230,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all .3s var(--ch-ease-spring);
}
.bo-contact-hero-wrap .cinfo-card:hover .cinfo-icon{
  background:var(--ch-accent);
  border-color:var(--ch-accent);
  transform:scale(1.08) rotate(-4deg);
}
.bo-contact-hero-wrap .cinfo-icon svg{
  width:17px; height:17px;
  stroke:var(--ch-accent);
  transition:stroke .3s var(--ch-ease);
}
.bo-contact-hero-wrap .cinfo-card:hover .cinfo-icon svg{ stroke:#fff; }

.bo-contact-hero-wrap .cinfo-card > div:not(.cinfo-icon){ min-width:0; }
.bo-contact-hero-wrap .cinfo-label{
  display:block;
  font-family:'IBM Plex Mono', monospace;
  font-size:9.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
  margin-bottom:4px;
}
.bo-contact-hero-wrap .cinfo-card strong{
  display:block;
  font-size:13.5px;
  font-weight:600;
  color:#fff;
  font-family:'Roboto', sans-serif;
  line-height:1.35;
  word-break:break-word;
}
.bo-contact-hero-wrap .cinfo-arrow{
  width:14px; height:14px;
  stroke:rgba(255,255,255,.35);
  margin-left:auto;
  flex-shrink:0;
  transition:transform .3s var(--ch-ease), stroke .3s var(--ch-ease);
}
.bo-contact-hero-wrap .cinfo-card:hover .cinfo-arrow{
  transform:translateX(4px);
  stroke:rgba(255,255,255,.7);
}
.bo-contact-hero-wrap .cinfo-card--addr{ cursor:default; }

/* ---------- Reveal helpers ---------- */
.bo-contact-hero-wrap .reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .8s var(--ch-ease), transform .8s var(--ch-ease);
}
.bo-contact-hero-wrap .reveal.in{ opacity:1; transform:translateY(0); }

.bo-contact-hero-wrap .stagger-children > *{
  opacity:0; transform:translateY(20px);
  transition:opacity .7s var(--ch-ease), transform .7s var(--ch-ease);
}
.bo-contact-hero-wrap .stagger-children.in > *{ opacity:1; transform:translateY(0); }
.bo-contact-hero-wrap .stagger-children.in > *:nth-child(1){ transition-delay:0ms; }
.bo-contact-hero-wrap .stagger-children.in > *:nth-child(2){ transition-delay:90ms; }
.bo-contact-hero-wrap .stagger-children.in > *:nth-child(3){ transition-delay:180ms; }

@media (prefers-reduced-motion: reduce){
  .bo-contact-hero-wrap .reveal,
  .bo-contact-hero-wrap .stagger-children > *{ opacity:1; transform:none; transition:none; }
}

/* ---------- Editor-active safety net ----------
   Elementor adds this class to the preview iframe <body> so plugins can
   force-show scroll-reveal content while editing, independent of any
   JS timing race. */
body.elementor-editor-active .bo-contact-hero-wrap .reveal,
body.elementor-editor-active .bo-contact-hero-wrap .stagger-children,
body.elementor-editor-active .bo-contact-hero-wrap .stagger-children > *{
  opacity:1 !important; transform:none !important;
}
/* ================= RESPONSIVE ================= */
@media (max-width:980px){
  .bo-contact-hero-wrap .contact-hero-inner h1{ font-size:40px; }
  .bo-contact-hero-wrap .contact-info-strip{ grid-template-columns:1fr; border-radius:14px; }
  .bo-contact-hero-wrap .cinfo-card{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .bo-contact-hero-wrap .cinfo-card:last-child{ border-bottom:none; }
}
@media (max-width:640px){
  .bo-contact-hero-wrap .ch-wrap{ padding:0 20px; }
  .bo-contact-hero-wrap .contact-hero{ padding:110px 0 0; }
  .bo-contact-hero-wrap .contact-hero-inner h1{ font-size:30px; }
  .bo-contact-hero-wrap .contact-hero-inner > .reveal > p{ font-size:14.5px; margin-bottom:36px; }
  .bo-contact-hero-wrap .cinfo-card{ padding:18px 18px; gap:12px; }
  .bo-contact-hero-wrap .cinfo-icon{ width:36px; height:36px; }
  .bo-contact-hero-wrap .cinfo-icon svg{ width:15px; height:15px; }
}