/* ── CONTACT — DARK THEME ──────────────────────────────── */
.contact-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; } }
.contact-info__title { font-family: var(--font-ui); font-weight: 800; font-size: clamp(24px,4vw,32px); color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.contact-info__sub { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ci { display: flex; gap: 13px; align-items: flex-start; }
.ci__icon { width: 40px; height: 40px; min-width: 40px; background: rgba(27,79,138,.15); border: 1px solid rgba(27,79,138,.32); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.ci__label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.ci__value { font-size: 14px; color: var(--off-white); font-weight: 500; }
.investor-box { background: var(--navy-2); border: 1px solid rgba(27,79,138,.35); border-radius: var(--r-xl); padding: 20px; margin-bottom: 20px; }
.investor-box h4 { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 8px; }
.investor-box p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.map-block { background: var(--navy-2); border: 1px solid rgba(27,79,138,.28); border-radius: var(--r-xl); height: 180px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px; position: relative; overflow: hidden; }
.map-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(27,79,138,.14), transparent); }
.map-dot { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; animation: mapPulse 2s ease-in-out infinite; position: relative; z-index: 1; }
@keyframes mapPulse { 0%{box-shadow:0 0 0 0 rgba(245,166,35,.4)} 70%{box-shadow:0 0 0 16px rgba(245,166,35,0)} 100%{box-shadow:0 0 0 0 rgba(245,166,35,0)} }
.map-label { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--white); position: relative; z-index: 1; }
.map-sub { font-size: 12px; color: var(--muted); position: relative; z-index: 1; }
.contact-form { background: var(--navy-2); border: 1px solid rgba(27,79,138,.4); border-radius: var(--r-2xl); padding: 32px; position: relative; overflow: hidden; }
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue-glow)); }
.form-title { font-family: var(--font-ui); font-weight: 700; font-size: 18px; color: var(--white); margin-bottom: 22px; }
.form-grid { display: grid; gap: 14px; }
@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--muted-2); text-transform: uppercase; }
.form-input, .form-textarea, .form-select { width: 100%; background: rgba(5,13,26,.6); border: 1px solid rgba(27,79,138,.32); border-radius: var(--r-md); padding: 11px 14px; color: var(--white); font-family: var(--font-sans); font-size: 14px; transition: var(--t); outline: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: rgba(245,166,35,.5); background: rgba(5,13,26,.8); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(148,163,184,.45); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select option { background: var(--navy-2); color: var(--white); }
.form-submit { width: 100%; margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 16px; background: rgba(46,204,113,.1); border: 1px solid rgba(46,204,113,.3); border-radius: var(--r-lg); color: #2ECC71; font-weight: 600; margin-top: 12px; font-size: 14px; }
