/* ============================================================
   CONTACT PAGE — AUSAF STEEL FAB
   Old Money Industrial Aesthetic
   ============================================================ */

/* ── PAGE BANNER ── */
.page-banner {
    height: 40vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(8,7,5,0.88) 100%),
        url("img/bg.jpg") center/cover no-repeat;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,146,58,0.35), transparent);
}

.page-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 56px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--ivory);
}

.page-banner p {
    margin-top: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
}

/* ── MAIN TWO-COLUMN LAYOUT ── */
.contact-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2%;
    gap: 80px;
    align-items: start;
}

/* ── LEFT: INFO COLUMN ── */
.contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: fadeInLeft 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.info-block {
    padding: 26px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass);
}

.info-value {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--ivory-dim);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.info-value:hover { color: var(--ivory); }

.info-whatsapp { color: #4ade80; }
.info-whatsapp:hover { color: #86efac; }
.info-whatsapp i,
.info-location i {
    margin-right: 6px;
    font-size: 13px;
}

.info-location { color: var(--ivory-dim); }
.info-location:hover { color: var(--brass-lt); }

.info-text { cursor: default; }
.info-text:hover { color: var(--ivory-dim); }

.hours-sub {
    font-size: 12px;
    color: var(--stone);
    letter-spacing: 0.5px;
}

.info-divider {
    height: 1px;
    background: var(--border-lt);
    width: 100%;
}

/* Socials */
.contact-socials {
    display: flex;
    gap: 10px;
    padding-top: 30px;
}

.csocial-btn {
    width: 38px; height: 38px;
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--ivory);
    text-decoration: none;
    border: 1px solid var(--border-lt);
    background: var(--surface);
    transition: all 0.3s;
}

.csocial-btn:hover { border-color: var(--brass); color: var(--brass-lt); transform: translateY(-2px); }

/* ── MAP STRIP ── */
.map-strip {
    width: 100%;
    height: 380px;
    position: relative;
    border-top: 1px solid var(--border-lt);
    border-bottom: 1px solid var(--border-lt);
    overflow: hidden;
    filter: grayscale(80%) contrast(1.1) brightness(0.6);
    transition: filter 0.5s ease;
}

.map-strip:hover { filter: grayscale(30%) contrast(1.05) brightness(0.75); }

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 32px 10%;
    pointer-events: none;
}

.map-directions-btn {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(14,13,11,0.92);
    border: 1px solid var(--border);
    border-radius: 2px;
    color: var(--brass-lt);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
}

.map-directions-btn:hover {
    background: var(--brass-dk);
    color: var(--ivory);
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 80px 6%;
    }

    .contact-info { position: static; }

    .map-strip { height: 300px; }
}

@media (max-width: 600px) {
    .page-banner h1 { font-size: 36px; letter-spacing: 2px; }
    .page-banner p  { font-size: 11px; }
    .contact-section { padding: 64px 5%; gap: 48px; }

    .map-strip  { height: 240px; }
    .map-overlay { padding: 20px 5%; }
}