/* Contact Page Styles */

/* Hero Banner */
.contact-hero {
    background: linear-gradient(rgba(29, 29, 29, 0.75), rgba(29, 29, 29, 0.75)), 
                url('../images/communication.png') no-repeat top center;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

/* Contact Info Section */
.contact-info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-bottom: 2rem;
    border-top: 4px solid var(--accent-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 1rem;
    min-width: 2.5rem;
    text-align: center;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Map Container */
.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Contact divider */
.contact-divider {
    height: 4px;
    width: 100px;
    margin: 2rem auto;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

/* Hours section */
.hours-card {
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.8rem 0;
}

.hours-table td:last-child {
    text-align: right;
}

/* Call to Action section */
.contact-cta {
    background-color: var(--secondary-color);
    color: white;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
}
