:root {
  --contact-bg: #f7f7f7;
  --contact-ink: #0f172a;
  --contact-muted: #475569;
  --contact-border: rgba(15, 23, 42, 0.08);
  --contact-accent: #2563eb;
  --contact-accent-strong: #1d4ed8;
  --contact-accent-soft: #e0ecff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Satoshi", "Inter", system-ui, sans-serif;
  background: var(--contact-bg);
  color: var(--contact-ink);
}

@keyframes contact-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-page {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}

.contact-page::before,
.contact-page::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.35;
  pointer-events: none;
}

.contact-page::before {
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 65%);
}

.contact-page::after {
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 70%);
}

.contact-shell {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero {
  margin-bottom: 70px;
  animation: contact-rise 0.8s ease both;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--contact-border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--contact-accent-strong);
}

.contact-hero h1 {
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin: 18px 0 18px;
}

.contact-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--contact-muted);
  margin: 0 0 22px;
}

.contact-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #ffffff;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
}

.contact-hero-card {
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(145deg, #0f172a, #111827);
  color: #e2e8f0;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.contact-hero-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.contact-hero-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-metric strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-metric span {
  font-size: 12px;
  color: #cbd5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
  gap: 28px;
  align-items: start;
}

.contact-flow {
  margin-top: 80px;
  animation: contact-rise 0.8s ease both;
  animation-delay: 0.2s;
}

.contact-flow-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.contact-flow-header h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.4px;
  color: #0f172a;
}

.contact-flow-header p {
  margin: 0 0 26px;
  color: var(--contact-muted);
  line-height: 1.6;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.flow-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 26px;
  padding: 96px 28px 28px;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.flow-step {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 46px;
  font-weight: 700;
  color: #eef2f7;
  opacity: 0.7;
  letter-spacing: -1px;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.flow-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  position: relative;
  z-index: 1;
}

.flow-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.flow-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #2563eb;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.28);
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-card::after {
  content: "\2713";
  position: absolute;
  top: 36px;
  left: 36px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 2;
}

.flow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.flow-card:hover::before {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.35);
}

.contact-assurance {
  margin-top: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #041a3a 0%, #062752 55%, #031a35 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  box-shadow: 0 30px 70px rgba(2, 13, 33, 0.35);
  align-items: center;
}

.assurance-copy h3 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.assurance-copy p {
  margin: 0;
  color: #cfe0ff;
  font-size: 14px;
  line-height: 1.7;
}

.assurance-metric {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #d7e7ff;
}

.assurance-avatars {
  display: inline-flex;
  align-items: center;
}

.assurance-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #041a3a;
  margin-left: -10px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5f5);
  box-shadow: 0 6px 16px rgba(2, 13, 33, 0.35);
}

.assurance-avatars span:first-child {
  margin-left: 0;
  background: linear-gradient(135deg, #f8fafc, #dbeafe);
}

.assurance-avatars span:nth-child(2) {
  background: linear-gradient(135deg, #fde68a, #fca5a5);
}

.assurance-avatars span:nth-child(3) {
  background: linear-gradient(135deg, #a5b4fc, #38bdf8);
}

.assurance-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.assurance-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 28, 60, 0.65);
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.assurance-list span::after {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #ffffff;
  background: rgba(3, 24, 56, 0.5);
}

.assurance-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(9, 37, 74, 0.75);
  box-shadow: 0 12px 26px rgba(2, 13, 33, 0.28);
}

.contact-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--contact-border);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  animation: contact-rise 0.8s ease both;
  animation-delay: 0.06s;
}

.contact-form-card h1,
.contact-form-card h2 {
  font-size: 28px;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.contact-form-card p {
  margin: 0 0 24px;
  color: var(--contact-muted);
  line-height: 1.6;
}

.form-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.form-highlight-label {
  color: #1d4ed8;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 4px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-required {
  color: #ef4444;
  font-weight: 700;
}

.input,
.textinput {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f8fafc;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #94a3b8 50%),
    linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
  background-color: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  background-clip: padding-box;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

select.input:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

select.input:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, #1d4ed8 50%),
    linear-gradient(135deg, #1d4ed8 50%, transparent 50%);
  border-radius: 16px;
}

select.input:invalid {
  color: #94a3b8;
}

select.input option {
  color: #0f172a;
  font-weight: 500;
  padding: 12px 14px;
  background: #ffffff;
}

select.input option:checked {
  background: #e8f0ff;
  color: #1d4ed8;
}

select.input option:disabled {
  color: #94a3b8;
}

select.input optgroup {
  color: #1d4ed8;
  font-weight: 700;
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.custom-select {
  position: relative;
}

.custom-select__native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.custom-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.custom-select__trigger:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.custom-select__trigger.is-placeholder {
  color: #94a3b8;
}

.custom-select__icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  display: grid;
  place-items: center;
  background: rgba(248, 250, 252, 0.9);
}

.custom-select__icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.custom-select.is-open .custom-select__icon::before {
  transform: rotate(-135deg);
  border-color: #1d4ed8;
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

.custom-select.is-open .custom-select__menu {
  display: block;
}

.custom-select__group {
  padding: 10px 12px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #64748b;
}

.custom-select__option {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-select__option:hover {
  background: #e8f0ff;
  color: #1d4ed8;
}

.custom-select__option[aria-selected="true"] {
  background: #e8f0ff;
  color: #1d4ed8;
  font-weight: 600;
}

.custom-select__option[aria-selected="true"]::after {
  content: "\2713";
  font-size: 12px;
  color: #1d4ed8;
}


.custom-select__option.is-disabled {
  color: #94a3b8;
  cursor: not-allowed;
}

.custom-select__option.is-disabled:hover {
  background: transparent;
  color: #94a3b8;
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: #f3b4b4;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.custom-select.is-valid .custom-select__trigger {
  border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.textinput {
  min-height: 160px;
  resize: vertical;
}

.input:focus,
.textinput:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #ffffff;
}

.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #b91c1c;
}

.input.is-invalid,
.textinput.is-invalid {
  border-color: #f3b4b4;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.input.is-valid,
.textinput.is-valid {
  border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.form-message {
  display: none;
  width: 100%;
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.form-message--success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.form-message--error {
  background: #fff7f7;
  color: #7a1f1f;
  border-color: #f3b4b4;
  border-left: 4px solid #ef4444;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  position: relative;
  padding-left: 44px;
}

.form-message--error::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.btn-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 26px;
}

.submit-btn {
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--contact-border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  animation: contact-rise 0.8s ease both;
  animation-delay: 0.14s;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.contact-info-card p {
  margin: 0 0 20px;
  color: var(--contact-muted);
  line-height: 1.6;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #f8fafc;
  color: var(--contact-ink);
  text-decoration: none;
}

.info-text span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.info-text strong {
  display: block;
  font-size: 14px;
}

.info-item--address {
  align-items: center;
}

.info-item--address .info-text {
  min-width: 0;
}

.info-item--address .info-text strong {
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.info-highlight {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #e2e8f0;
}

.info-highlight h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.info-highlight p {
  margin: 0;
  font-size: 13px;
  color: #cbd5f5;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.contact-socials a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.contact-socials img {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-socials svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #0f172a;
  transition: fill 0.2s ease;
}

.contact-socials a:hover svg {
  fill: #1d4ed8;
}

:root {
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
  --glass-shadow-soft: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.contact-page {
  background: linear-gradient(160deg, #f8fafc 0%, #edf2f7 45%, #f6f8fb 100%);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--contact-accent-strong);
}

.contact-form-card,
.contact-info-card,
.map-card,
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-form-card,
.contact-info-card {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}


.info-item {
  background: rgba(248, 250, 252, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--glass-shadow-soft);
}

.contact-flow {
  animation: none;
}

.form-field {
  position: relative;
}

.form-field:focus-within label {
  color: var(--contact-accent-strong);
}

.input,
.textinput {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.form-field:focus-within .input,
.form-field:focus-within .textinput {
  background: #ffffff;
  transform: translateY(-1px);
}

.field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.form-footnote {
  margin: 14px 0 0;
  font-size: 12px;
  color: #64748b;
}

.contact-map {
  margin-top: 36px;
}

.map-card {
  padding: 28px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.map-header {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.map-header > div {
  max-width: 640px;
}

.map-header .section-eyebrow {
  background: #e8f0ff;
  border-color: rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
}

.map-header h3 {
  margin: 10px 0 6px;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.map-header p {
  margin: 0;
  color: var(--contact-muted);
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.map-link svg {
  width: 16px;
  height: 16px;
  color: #1d4ed8;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.map-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #d7dce3;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(1) saturate(0.3) contrast(0.9) brightness(1.05);
  position: relative;
  z-index: 1;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 2;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 3;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 4;
}

.map-pin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.map-pin-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

.map-pin-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.map-pin-text strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.map-pin-text span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.contact-faq {
  margin-top: 80px;
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-faq .section-eyebrow {
  background: #eef4ff;
  border-color: rgba(37, 99, 235, 0.18);
  color: #1d4ed8;
}

.faq-header h2 {
  margin: 12px 0 10px;
  font-size: 32px;
  letter-spacing: -0.4px;
}

.faq-header p {
  margin: 0 auto;
  color: var(--contact-muted);
  line-height: 1.6;
}

.faq-grid {
  margin: 32px auto 0;
  display: grid;
  gap: 16px;
  width: min(820px, 100%);
}

.faq-item {
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e8eef6;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  min-height: 44px;
  padding: 2px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: #1d4ed8;
}

.faq-content {
  margin-top: 12px;
  color: var(--contact-muted);
  line-height: 1.6;
  font-size: 14px;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.faq-item:hover summary {
  color: #1d4ed8;
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.22);
  background: #f8fbff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.faq-item[open] summary {
  color: #1d4ed8;
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
}

.faq-cta::after {
  content: ">";
  font-size: 14px;
}

.faq-cta:hover {
  color: #0f172a;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body:not(.js-ready) .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 768px) {
  .map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-link {
    width: 100%;
    justify-content: center;
  }

  .map-frame {
    min-height: 280px;
  }

  .map-frame iframe {
    height: 280px;
  }

  .map-pin {
    padding: 8px 12px;
    gap: 10px;
  }

  .map-pin-icon {
    width: 36px;
    height: 36px;
  }

  .faq-item summary {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero,
  .contact-form-card,
  .contact-info-card,
  .contact-flow,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .contact-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-assurance {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .contact-hero-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 34px;
  }

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

  .btn-wrapper {
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 24px;
  }

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

  .assurance-metric {
    flex-wrap: wrap;
  }

  .assurance-list span {
    padding: 12px 16px;
  }

  .flow-card {
    padding: 84px 22px 24px;
    border-radius: 22px;
  }

  .flow-card::before {
    top: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .flow-card::after {
    top: 30px;
    left: 30px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .flow-step {
    top: 18px;
    right: 18px;
    font-size: 36px;
  }
}
