/* ── Layout ── */
.main { padding: 2rem 0 80px; background: #f4f1ec; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ── Left Column ── */
.left-col { display: flex; flex-direction: column; gap: 1rem; }

/* Office card */
.office-card {
  background: #0d1b2a;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
  position: relative;
  overflow: hidden;
}
.office-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0a500;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.office-item {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.office-item:last-child { margin-bottom: 0; }
.office-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.office-item-body strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.office-item-body p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* Contact info cards */
.contact-chip {
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
}
.contact-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
.chip-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: #c9002b;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(201,0,43,.3);
}
.chip-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: .2rem;
  font-family: 'Sora', sans-serif;
}
.chip-value {
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a2e;
}
.chip-sub {
  font-size: .78rem;
  color: #6b7280;
  margin-top: .1rem;
}

/* ── Right Column — Form Card ── */
.form-card {
  background: #0d1b2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.14);
}
.form-card-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.form-card-header .flag { font-size: 1.1rem; }

.form-body { padding: 1.4rem 1.5rem 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .4rem;
  font-family: 'Sora', sans-serif;
}
.field label .req { color: #c9002b; margin-left: 2px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .72rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: .92rem;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.28); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #f0a500;
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(240,165,0,.12);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  background-color: rgba(255,255,255,.06);
}
.field select option { background: #152238; color: #fff; }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.submit-btn {
  width: 100%;
  padding: .9rem 1.5rem;
  background: #c9002b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.submit-btn:hover { background: #b10026; }
.submit-btn:active { transform: scale(.98); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.form-footer {
  margin-top: 1.2rem;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── Map ── */
.map-section {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  margin-bottom: 0;
  height: 420px;
  background: #ddd;
}
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(.1); }
