/* Page header */
.page-header {
    background: var(--gradient-primary);
    padding: 4rem 0;
    border-radius: 0 0 40px 40px;
}

/* Contact Cards */
.contact-info-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: transform 0.2s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(47, 140, 143, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

/* Contact Form */
.contact-form-card {
    background: var(--color-bg-white);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    border: 1.5px solid var(--color-border);
    background-color: var(--color-bg-white);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(47, 140, 143, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    min-height: 400px;
}

/* Hours Table */
.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 0.75rem 0;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text-secondary);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: 16px !important;
    margin-bottom: 0.75rem;
    background: var(--color-bg-white);
}

.accordion-button {
    border-radius: 16px !important;
    font-weight: 500;
    padding: 1.2rem;
    background: var(--color-bg-white);
}

.accordion-button:not(.collapsed) {
    background: var(--color-secondary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(47, 140, 143, 0.2);
    border-color: var(--color-secondary);
}

/* Social Links */
.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
    transition: all 0.2s;
    border: 1px solid var(--color-border);
}

.social-link:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-3px);
}

.badge-accent {
    background-color: var(--color-accent);
    color: #1E3557;
    font-weight: 500;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #E57373, #C62828);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
}

@media (max-width: 768px) {
    .page-header {
        border-radius: 0 0 20px 20px;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}