.contact-section {
    background-color: #1e1e1e;
    border-top: 1px solid #2a2a2a;
    padding: 3.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    z-index: 100;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #999;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
}

.contact-item .value {
    font-size: 1.05rem;
    color: #bbb;
    font-weight: 500;
    line-height: 1.5;
}

.contact-item .value a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item .value a:hover {
    color: #ffffff;
}

.map-container {
    width: 100%;
    height: 380px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) brightness(0.9);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) invert(0%) brightness(1);
}