/* ---- Main contact section ---- */
.contact-main { background: var(--off-white); padding: 80px 0; }

/* ---- Map ---- */
.map-wrap { overflow: hidden; box-shadow: 0 8px 32px rgba(10,31,60,0.13); height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---- Address card ---- */
.address-card { background: var(--blue-dark); padding: 36px 32px; }
.address-card h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.address-card .addr-divider { width: 40px; height: 3px; background: var(--blue-light); margin: 12px 0 24px; }
.addr-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.addr-row:last-child { margin-bottom: 0; }
.addr-icon { width: 36px; height: 36px; background: rgba(30,136,229,0.15); border: 1px solid rgba(30,136,229,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.addr-icon i { font-size: 0.95rem; color: var(--blue-light); }
.addr-label { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.addr-text { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.5; }
.addr-text a { color: rgba(255,255,255,0.82); text-decoration: none; }
.addr-text a:hover { color: var(--blue-light); }

/* ---- Contact form ---- */
.form-card { background: var(--white); padding: 48px 44px; box-shadow: 0 8px 40px rgba(10,31,60,0.1); height: 100%; }
.form-card .sub-text { color: var(--text-muted); font-size: 0.95rem; margin-top: 6px; margin-bottom: 32px; }
.form-field { margin-bottom: 20px; }
.form-field label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 6px; display: block; }
.form-control-hevea { width: 100%; border: 1px solid #d0dae6; border-radius: 0; padding: 12px 16px; font-family: var(--font-body); font-size: 0.92rem; color: var(--text-body); background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-control-hevea:focus { border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); background: var(--white); }
.form-control-hevea::placeholder { color: #aab4bf; }
textarea.form-control-hevea { resize: vertical; min-height: 130px; }
.btn-send { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-accent); color: var(--white); font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 40px; border: 2px solid var(--blue-accent); cursor: pointer; transition: all 0.25s; }
.btn-send:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn-send i { font-size: 1rem; transition: transform 0.2s; }
.btn-send:hover i { transform: translateX(4px); }
.form-success { display: none; background: #e8f5e9; border-left: 4px solid #43a047; padding: 16px 20px; font-size: 0.92rem; color: #2e7d32; margin-top: 16px; }

/* ---- Column label ---- */
.left-col-label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.left-col-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue-accent); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .form-card { padding: 36px 28px; }
  .address-card { padding: 32px 28px; }
}
@media (max-width: 767px) {
  .form-card { padding: 28px 20px; }
  .address-card { padding: 28px 20px; }
}
