/* --- DARK THEME RESET --- */
.contact-dark {
    background: #000000;
    color: #ffffff;
    padding: 140px 5%;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER --- */
.header-section {
    margin-bottom: 80px;
    border-left: 4px solid #D4AF37;
    padding-left: 30px;
}

.title {
    font-size: clamp(50px, 8vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
}

.gold-text {     color: transparent;
    -webkit-text-stroke: 1px #D4AF37; }

.subtitle {
    font-size: 18px;
    color: #888;
    margin-top: 15px;
    max-width: 550px;
}

/* --- GRID & CARDS --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: 50px;
    transition: all 0.4s ease;
}

.info-card:hover {
    border-color: #D4AF37;
    background: #0c0c0c;
    transform: translateY(-5px);
}

.label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #444;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.detail {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
}

/* --- LINKS --- */
.contact-links { margin-bottom: 15px; }

.link {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.link:hover { color: #D4AF37; }

/* --- SOCIALS --- */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-box {
    padding: 15px;
    border: 1px solid #222;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.social-box:hover {
    background: #fff;
    color: #000;
}

/* --- PROGRESS BAR --- */
.status-badge {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 800;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 5px 12px;
}

.progress-track {
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    margin-top: 30px;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* --- ANIMATION --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 850px) {
    .info-grid { grid-template-columns: 1fr; }
}