.elementor-5079 .elementor-element.elementor-element-b28b824{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d965a8e */:root {
  --navy: #1C355E;
  --navy-deep: #12243E;
  --navy-mid: #2B4A7A;
  --blue-soft: #6A9BC3;
  --charcoal: #2D3748;
  --body-gray: #546478;
  --border-cool: #D0D9E4;
  --input-border: #C8D1DC;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.font-heading { font-family: 'Montserrat', sans-serif; }
.font-body { font-family: 'Open Sans', sans-serif; }

/* ── Hero background depth ── */
.contact-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(106,155,195,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(106,155,195,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.015;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ── Eyebrow system ── */
.eyebrow-row,
.eyebrow-row-light {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.eyebrow-rule,
.eyebrow-rule-light {
  width: 40px;
  height: 2px;
  flex: 0 0 40px;
}

.eyebrow-rule {
  background: var(--blue-soft);
}

.eyebrow-rule-light {
  background: rgba(255,255,255,0.22);
}

.eyebrow-text,
.eyebrow-text-light {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.eyebrow-text {
  color: var(--blue-soft);
}

.eyebrow-text-light {
  color: rgba(255,255,255,0.55);
}

/* ── Legacy rules if still used elsewhere ── */
.rule-light { width: 40px; height: 2px; background: rgba(255,255,255,0.2); }
.rule-brand { width: 40px; height: 2px; background: var(--blue-soft); }

/* ── Form styling ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-cool);
  box-shadow: 0 4px 24px rgba(28,53,94,0.04);
}

.field-input {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--input-border);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.field-input:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(43,74,122,0.08);
}

.field-input::placeholder {
  color: #94A3B8;
  font-size: 13px;
}

select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23546478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea.field-input {
  resize: vertical;
  min-height: 100px;
}

.field-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body-gray);
  display: block;
  margin-bottom: 8px;
}

.field-group { margin-bottom: 20px; }

/* ── Checkbox ── */
.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 20px;
}

.check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--input-border);
  accent-color: var(--navy);
  margin-top: 2px;
  cursor: pointer;
}

.check-wrap span {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--body-gray);
  line-height: 1.5;
}

/* ── Submit buttons ── */
.btn-submit {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 32px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover { background: var(--navy-mid); }
.btn-submit:active { transform: scale(0.99); }

.btn-submit svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ── Contact info items ── */
.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-cool);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dual-grid { grid-template-columns: 1fr !important; }
  .info-row { flex-direction: column !important; gap: 24px !important; }
  .pad-main { padding-left: 32px !important; padding-right: 32px !important; }
}

@media (max-width: 640px) {
  .pad-main { padding-left: 20px !important; padding-right: 20px !important; }

  .eyebrow-row,
  .eyebrow-row-light {
    gap: 12px;
  }

  .eyebrow-rule,
  .eyebrow-rule-light {
    width: 32px;
    flex-basis: 32px;
  }

  .eyebrow-text,
  .eyebrow-text-light {
    font-size: 10px;
    letter-spacing: 2.4px;
  }
}/* End custom CSS */