﻿/* Contact page specific styles - extends privacy-page.css */
a {
    color: #93c5fd;
    text-decoration: none;
}

    a:visited {
        color: #93c5fd; /* Same as normal links - no purple! */
    }

    a:hover {
        color: #3b82f6;
        text-decoration: underline;
    }

    a:active {
        color: #3b82f6;
    }
.contact-card {
    max-width: 800px;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-icon {
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-section .section-title {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 24px;
}

.primary-contact {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 12px;
    padding: 24px;
}

.contact-details {
    margin-left: 36px;
}

.contact-address {
    color: #e8eefc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: #e8eefc;
    font-size: 15px;
}

.contact-icon-small {
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-link {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

    .contact-link:hover {
        color: #3b82f6;
        border-bottom-color: #3b82f6;
    }

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 18px;
    background: linear-gradient(90deg, #1d4ed8, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: filter 0.2s;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}

    .contact-map-btn:hover {
        filter: brightness(1.1);
    }

    .contact-map-btn svg {
        flex-shrink: 0;
    }

.contact-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3) 50%, transparent);
    margin: 40px 0;
}

.support-notice {
    background: rgba(59,130,246,0.1);
    border-left: 4px solid #3b82f6;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 32px;
    display: flex;
    align-items: start;
    gap: 12px;
}

    .support-notice svg {
        color: #3b82f6;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .support-notice p {
        color: #d4e0f5;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .support-notice a {
        color: #93c5fd;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s;
    }

        .support-notice a:hover {
            border-bottom-color: #93c5fd;
        }

@media (max-width: 600px) {
    .contact-details {
        margin-left: 0;
    }

    .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-contact {
        padding: 16px;
    }
}
