:root {
    --contact-bg: #0b0d12;
    --contact-text-primary: #ffffff;
    --contact-text-secondary: #a4b1cd;
    --contact-accent: #ffffff;
    --contact-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--contact-bg);
    color: var(--contact-text-primary);
}

/* Hero Section */
.contact-hero {
    padding: 180px 0 100px;
    background-color: var(--contact-bg);
    position: relative;
    overflow: hidden;
}

.contact-title-large {
    font-family: 'Helvetica', sans-serif !important;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--contact-text-primary);
}

.contact-subtitle {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.5rem;
    color: var(--contact-text-secondary);
    line-height: 1.5;
    max-width: 600px;
    font-weight: 300;
    margin-bottom: 60px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 120px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    /* Increased visibility */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Stronger border */
    padding: 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.contact-label {
    font-family: 'Helvetica', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--contact-text-secondary);
    margin-bottom: 12px;
}

.contact-value {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.25rem;
    color: var(--contact-text-primary);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--contact-text-secondary);
}

.contact-cta-wrapper {
    margin-top: auto;
    padding-top: 24px;
}

/* Interactive Map / Location Section */
.location-section {
    padding: 0 0 120px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #1a1a1a;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.map-overlay-text {
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    z-index: 2;
    text-transform: uppercase;
}

/* Background texture overlay for map placeholder to look "architectural" */
.map-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #333 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .contact-title-large {
        font-size: 3.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}