/* Contact Page Styles */

/* General contact cards */
.contact-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #dddddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-card h4, 
.contact-card h5 {
    font-weight: 600;
}

.contact-card a {
    text-decoration: none;
    color: #0077b6;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Maps */
.map-container {
    border-radius: 8px;
    overflow: hidden;
}

/* Dark Mode */
.dark-mode .contact-card {
    background-color: #1e1e1e;
    border: 1px solid #444444;
    color: #e0e0e0;
}

.dark-mode .contact-card a {
    color: #80dfff;
}

.dark-mode .contact-card a:hover {
    color: #00b894;
}

.dark-mode .map-container iframe {
    filter: brightness(0.85) contrast(1.1);
}
