/* ── CONTACT PAGE OVERRIDES ── */
body { background: var(--navy); }
nav { position: relative; z-index: 1001; }

/* semi-transparent footer over bg image */
footer { background: rgba(23,21,52,0.85); border-top: 1px solid rgba(255,255,255,0.07); padding: 2rem 2rem; position: relative; z-index: 1; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.82rem; }

/* ── FULL-PAGE BG IMAGE ── */
.page-wrap { min-height: 100vh; position: relative; display: flex; flex-direction: column; }
.bg-img { position: fixed; inset: 0; background-image: url('./img/hero-city-skyline.jpg'); background-size: cover; background-position: center; z-index: 0; }
.bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(19,52,75,0.97) 0%, rgba(19,52,75,0.93) 40%, rgba(19,52,75,0.82) 70%, rgba(19,52,75,0.75) 100%); }

/* ── CONTACT MAIN ── */
.contact-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; position: relative; z-index: 1; }
.contact-inner { max-width: 680px; width: 100%; text-align: center; }
.contact-inner h1 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 1.2rem; }
.contact-inner h1 .hl { color: var(--teal); }
.contact-sub { font-size: 1.08rem; color: rgba(255,255,255,0.68); line-height: 1.78; margin-bottom: 2.8rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── EMAIL ── */
.email-block { margin-bottom: 2.5rem; }
.email-link { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; color: var(--teal); text-decoration: none; border-bottom: 2px solid rgba(32,201,173,0.35); padding-bottom: 4px; transition: border-color 0.2s, color 0.2s; }
.email-link:hover { color: var(--white); border-color: var(--white); }
.email-hint { font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-top: 0.8rem; }

/* ── NEXT STEPS ── */
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 3rem; text-align: left; }
.next-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.5rem; }
.next-step-num { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.next-step h3 { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.next-step p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.divider span { font-size: 0.82rem; color: rgba(255,255,255,0.3); font-family: 'Montserrat', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── LINKEDIN ── */
.linkedin-block { margin-bottom: 3rem; }
.linkedin-link { display: inline-flex; align-items: center; gap: 0.7rem; font-family: 'Montserrat', sans-serif; font-size: 0.97rem; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; padding: 0.75rem 1.4rem; transition: all 0.2s; }
.linkedin-link:hover { color: var(--white); border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }
.linkedin-icon { width: 20px; height: 20px; flex-shrink: 0; }
.linkedin-sub { font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-top: 0.8rem; }

/* ── URGENCY ── */
.urgency { background: rgba(32,201,173,0.07); border: 1px solid rgba(32,201,173,0.2); border-radius: 8px; padding: 1.2rem 1.6rem; margin-bottom: 3rem; }
.urgency p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.65; font-style: italic; }
.urgency p strong { color: var(--teal); font-style: normal; }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .next-steps { grid-template-columns: 1fr; }
    .contact-inner h1 { font-size: 2rem; }
    .email-link { font-size: 1.3rem; }
}
