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

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.08s var(--ease),
    width 0.2s var(--ease),
    height 0.2s var(--ease);
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--o60);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s var(--ease),
    width 0.25s var(--ease),
    height 0.25s var(--ease),
    border-color 0.2s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor,
body:has(input:hover) .cursor,
body:has(textarea:hover) .cursor {
  width: 6px;
  height: 6px;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(input:hover) .cursor-ring,
body:has(textarea:hover) .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--primary);
}

/* ── Page Layout ── */
main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

/* ── Hero Section ── */
.contact-hero {
  padding: 6rem clamp(0.5rem, 1vw, 2rem) 4rem;
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-left {
  position: relative;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: dotPulse 1.8s infinite;
}
@keyframes dotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.75);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 107, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--primary);
}
.eyebrow-text {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Hero H1 — clamp(2.8rem, 5.2vw, 4.6rem) ── */
.hero-heading {
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}
.hero-heading .accent {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-heading .outline {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: var(--font-size-large);
  color: var(--w50);
  line-height: var(--line-height-relaxed);
  max-width: 440px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

/* ── Info Cards ── */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--w03);
  border: 1px solid var(--w08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--o06);
  transition: width 0.3s var(--ease);
}
.info-card:hover {
  background: var(--o06);
  border-color: var(--o35);
  transform: translateX(6px);
}
.info-card:hover::before {
  width: 3px;
  background: var(--primary);
}

.info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--o10);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}
.info-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w38);
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
  color: var(--w80);
}

/* ── Status Bar ── */
.status-bar {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  background: rgba(0, 200, 100, 0.05);
  border: 1px solid rgba(0, 200, 100, 0.15);
  border-radius: var(--radius-sm);
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.5s forwards;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #00c864;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 200, 100, 0);
  }
}
.status-text {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(0, 200, 100, 0.8);
  text-transform: uppercase;
}

/* ── Form Side ── */
.form-container {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}

.form-card {
  background: var(--s2);
  border: 1px solid var(--w08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o60), transparent);
}

.form-header {
  margin-bottom: 2rem;
}
.form-title {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.form-subtitle {
  font-size: var(--font-size-small);
  color: var(--w38);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--w38);
}

input,
textarea,
select {
  background: var(--w05);
  border: 1px solid var(--w12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder {
  color: var(--w22);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--o60);
  background: var(--o06);
  box-shadow: 0 0 0 3px var(--o10);
}
textarea {
  resize: vertical;
  min-height: 130px;
}
select {
  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='rgba(255,255,255,0.38)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option {
  background: #111;
  color: var(--white);
}

/* ── Service Chips ── */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.chip {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--w12);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--w50);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  user-select: none;
  background: transparent;
  font-family: var(--font);
}
.chip:hover {
  border-color: var(--o35);
  color: var(--primary);
}
.chip.selected,
.chip.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--o10);
}

/* ── Submit Button ── */
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-submit:hover {
  background: transparent;
  border: 1px solid #ff8533;
  color: var(--color-primary) !important;
}
.btn-submit:hover::before {
  opacity: 1;
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit .arrow {
  transition: transform 0.2s var(--ease);
}
.btn-submit:hover .arrow {
  transform: translateX(4px);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.btn-submit:disabled:hover {
  background: var(--primary);
  box-shadow: none;
}

/* Loading state: keep text high-contrast (white) while sending */
.btn-submit.is-loading {
  color: var(--color-on-primary) !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  opacity: 1 !important;
  cursor: wait;
}
.btn-submit.is-loading .arrow {
  opacity: 0.9;
}
.btn-submit.is-loading:disabled {
  opacity: 1 !important;
  cursor: wait;
}

/* ── Success / Notification overlay (backdrop + card) ── */
.success-overlay {
  /* hidden by default */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.success-overlay[aria-hidden="false"],
.success-overlay.show,
.success-overlay.active {
  display: flex;
  pointer-events: auto;
}

.success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 10, 0.7);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  transition: opacity 220ms var(--ease);
}

.success-card {
  position: relative;
  background: var(--s2);
  border: 1px solid var(--w08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  width: min(92%, 520px);
  text-align: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 2px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(6px) scale(0.995);
  animation: successPop 320ms cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--w60);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
}
.success-close:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--w80);
}
.success-close svg {
  width: 16px;
  height: 16px;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 200, 100, 0.06),
    rgba(0, 200, 100, 0.02)
  );
  border: 1px solid rgba(0, 200, 100, 0.18);
}
.success-icon .checkmark {
  color: #00c864;
  stroke: currentColor;
}
.success-icon svg {
  width: 44px;
  height: 44px;
}

.success-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-top: 0.25rem;
}
.success-msg {
  font-size: 0.95rem;
  color: var(--w50);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.success-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.success-actions .btn {
  min-width: 140px;
}
.success-actions .btn-ghost {
  background: transparent;
  border: 1px solid var(--w08);
  color: var(--w80);
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Floating decoration ── */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--o10);
  pointer-events: none;
  animation: spin 20s linear infinite;
}
.deco-ring.r1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -80px;
  animation-duration: 25s;
}
.deco-ring.r2 {
  width: 180px;
  height: 180px;
  top: 20px;
  right: 20px;
  animation-direction: reverse;
  animation-duration: 15s;
  border-color: var(--o20);
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   OFFICES SECTION
══════════════════════════════════════════ */
.offices-section {
  max-width: 1350px;
  margin: 0 auto;
  padding: 5rem clamp(0.5rem, 1vw, 2rem) 5rem;
  position: relative;
}

.offices-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offices-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.offices-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--primary);
}
.offices-eyebrow-text {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Section titles — clamp(1.85rem, 3.4vw, 2.9rem) ── */
.offices-title {
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  color: var(--color-white);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}
.offices-title .accent {
  background: linear-gradient(
    115deg,
    var(--color-primary) 0%,
    rgba(255, 155, 60, 0.9) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offices-desc {
  font-size: var(--font-size-large);
  color: var(--w50);
  max-width: 540px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

/* ── Quick stats bar ── */
.offices-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: var(--w03);
  border: 1px solid var(--w08);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.offices-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o35), transparent);
}
.intro-stat {
  text-align: center;
}
.intro-stat-num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.intro-stat-label {
  font-size: 0.78rem;
  color: var(--w50);
  letter-spacing: 0.04em;
}
.intro-divider {
  width: 1px;
  height: 36px;
  background: var(--w08);
}

/* ── Branch Cards Grid ── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.branch-card {
  background: var(--s2);
  border: 1px solid var(--w08);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--o60), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.branch-card:hover {
  border-color: var(--o35);
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--o20);
}
.branch-card:hover::before {
  opacity: 1;
}

.branch-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.branch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.75) saturate(0.9);
}
.branch-card:hover .branch-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.85) saturate(1);
}
.branch-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
}

.branch-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--w12);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w80);
}
.branch-badge .flag {
  font-size: 1rem;
  line-height: 1;
}
.branch-num {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--o60);
}

.branch-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.branch-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), transparent);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.branch-card:hover .branch-body::before {
  opacity: 1;
}

.branch-city {
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.branch-country {
  font-size: var(--font-size-small);
  color: var(--primary);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.branch-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.branch-detail-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--o10);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.branch-detail-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}
.branch-detail-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.branch-detail-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w38);
}
.branch-detail-value {
  font-size: 0.88rem;
  color: var(--w70);
  line-height: 1.4;
}

.branch-status {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--w03);
  border: 1px solid var(--w08);
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.branch-card:hover .branch-status {
  background: var(--o06);
  border-color: var(--o20);
}
.branch-status-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.branch-status-dot {
  width: 6px;
  height: 6px;
  background: #00c864;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 200, 100, 0);
  }
}
.branch-status-text {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(0, 200, 100, 0.8);
  text-transform: uppercase;
}
.branch-tz {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--w38);
  letter-spacing: 0.05em;
}

/* ── Bottom Strip ── */
.bottom-strip {
  max-width: 1350px;
  margin: 0 auto;
  padding: 3rem clamp(0.5rem, 1vw, 2rem) 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--w08);
}
.strip-item {
  padding: 2rem;
  position: relative;
}
.strip-item + .strip-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--w08);
}
.strip-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--o35);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.strip-label {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--w80);
  margin-bottom: 0.4rem;
}
.strip-desc {
  font-size: var(--font-size-small);
  color: var(--w38);
  line-height: var(--line-height-relaxed);
}

/* ── Section Divider ── */
.section-divider {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 1vw, 2rem);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0s forwards;
}
.section-divider-inner {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--w08) 20%,
    var(--o35) 50%,
    var(--w08) 80%,
    transparent
  );
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── Form Error States ── */
input.error,
textarea.error,
select.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}
input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #ff4444;
  box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}
.error-message {
  font-size: 0.75rem;
  color: #ff6666;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  margin-top: -0.25rem;
  animation: slideDown 0.2s var(--ease);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — ≤ 900px
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    text-align: center;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-heading {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    text-align: center;
  }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .info-cards {
    width: 100%;
    max-width: 480px;
  }
  .status-bar {
    margin-left: auto;
    margin-right: auto;
  }
  .offices-title {
    font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .bottom-strip {
    grid-template-columns: 1fr;
    padding: 2rem clamp(0.5rem, 1vw, 2rem) 3rem;

    text-align: center;
  }
  .strip-item + .strip-item::before {
    display: none;
  }
  .offices-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .offices-section {
    padding: 3rem clamp(0.5rem, 1vw, 2rem);
  }
  .offices-intro {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .intro-divider {
    display: none;
  }
  .deco-ring {
    display: none;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — ≤ 600px
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .contact-hero {
    padding: 2rem 1.25rem;
  }
  .hero-heading {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }
  .offices-title {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }
  .offices-section {
    padding: 2.5rem clamp(0.5rem, 1vw, 2rem);
  }
  .bottom-strip {
    padding: 2rem clamp(0.5rem, 1vw, 2rem) 3rem;
  }
  .info-cards {
    max-width: 100%;
  }
  .branch-img-wrap {
    height: 180px;
  }
  .form-card {
    padding: 1.5rem;
  }
}


.btn-primary {
  padding: 0.95rem 2.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary) !important;
}


.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--color-white) !important;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-white-25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--primary) !important;
}