/* Contact Page Styles */
:root {
    --acdc-red: #800000;
    --acdc-red-hover: #660000;
    --acdc-text-dark: #22252a;
    --acdc-bg-card: #fdfaf8;
    --acdc-border: #f0e6e0;
}

.contact-heading {
    color: var(--acdc-red);
    font-size: 2.2rem;
}

.contact-divider {
    width: 60px;
    height: 4px;
    background-color: var(--acdc-red);
    border-radius: 2px;
}

/* Contact Info Cards */
.contact-card {
    background-color: var(--acdc-bg-card) !important;
    border: 1px solid var(--acdc-border) !important;
    border-radius: 12px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.08) !important;
}

.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(128, 0, 0, 0.06);
    color: var(--acdc-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background-color: var(--acdc-red);
    color: #ffffff;
}

.contact-card-title {
    color: var(--acdc-text-dark);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact-list li {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 6px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--acdc-red);
    text-decoration: none;
}

/* Social Media Icons */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--acdc-border);
    color: var(--acdc-red);
    font-size: 1.3rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.social-icon-link:hover {
    background-color: var(--acdc-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(128, 0, 0, 0.2);
}

/* Map Wrapper */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--acdc-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
}

/* Google Maps Watermark Hide hack fix */
.i4ewOd-pzNkMb-haAclff {
    visibility: hidden !important;
}