/* ==============================
   CONTACT HERO
============================== */
.contact-hero {
  background: var(--ink);
  padding: 72px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 22px;
}
.hero-kicker-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}
.contact-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.contact-hero-sub {
  font-size: 19px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ==============================
   MAIN CONTACT SECTION
============================== */
.contact-main {
  padding: 80px 32px;
  background: var(--deep);
}
.contact-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Hero form */
.hero-form {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,.25);
  position: relative;
}
.hero-form::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  border-radius: 0 0 4px 4px;
}

#stella-widget .row {
    padding-inline: 0px !important;
}

#stella-widget .module_hero_1 .content {
    justify-content: center;
} 

#stella-widget .module_hero_1 .content .content-block-stella {
    width: 100% !important;
}

#stella-widget .block-tabs-holder {
    border: none !important;
}

#stella-widget .form fieldset.span33.flex {
    flex-wrap: wrap;
    justify-content: center;
}

.form-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: #0C1E38;
  margin-bottom: 5px;
}
.form-sub {
  font-size: 16px;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 24px;
}
.fg { margin-bottom: 14px; }
.fg label {
  display: block;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 16px;
  font-family: var(--font-b);
  color: #1E293B;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: #94A3B8; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  background: #fff;
}
.fg select { cursor: pointer; }
.fg textarea { resize: vertical; min-height: 72px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.radio-opt {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 11px 12px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.radio-opt:has(input:checked) { border-color: var(--blue); background: #EFF6FF; }
.radio-opt input[type="radio"] { width: auto; margin-top: 3px; accent-color: var(--blue); flex-shrink: 0; }
.radio-text { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: #1E293B; display: block; }
.radio-sub  { font-size: 16px; color: #64748B; display: block; }

/* ==============================
   CONTACT INFO PANEL
============================== */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-heading {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.ci-item:first-child { border-top: 1px solid var(--border); }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 20px; height: 20px;
  stroke: var(--sky);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-label {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.ci-value {
  font-size: 16px;
  color: var(--light);
  line-height: 1.6;
  text-decoration: none;
  transition: color .2s;
}
.ci-value:hover { color: var(--white); }
.ci-value-block {
  display: block;
  font-size: 16px;
  color: var(--light);
  line-height: 1.6;
}

/* ==============================
   SERVICE AREA MAP EMBED
============================== */
.map-embed { 
  border-radius: var(--r-lg); 
  overflow: hidden; 
  margin-top: 0; 
}
.map-embed iframe { 
  display: block; 
  width: 100%; 
  height: 450px; 
  border: 0; 
  border-radius: var(--r-lg); 
}

/* ==============================
       CTA BANNER
    ============================== */
    .cta-band {
      background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
      padding: 88px 32px;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .cta-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .cta-inner h2 {
      font-family: var(--font-h);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -.025em;
      margin-bottom: 14px;
    }
    .cta-inner p { font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.65; margin-bottom: 32px; }
    .cta-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .cta-or { color: rgba(255,255,255,.45); font-size: 16px; }
    .cta-tel { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: rgba(255,255,255,.85); text-decoration: none; }
    .cta-tel:hover { color: #fff; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 991px){
  .contact-main-inner {
      grid-template-columns: 1fr;
      min-height: auto;
  }
  .contact-info-heading {
      text-align: center;
  }
  .contact-info-items {
      text-align: center;
  }
  .ci-item {
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
}
@media (max-width: 820px) {
  .contact-main-inner { grid-template-columns: 1fr; }
  .contact-info-panel { order: 2; }
}

@media (max-width: 768px) {
  .fg-row { grid-template-columns: 1fr; }
  .radio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-hero h1 { font-size: 30px; }
  .cta-row { flex-direction: column; }
}