/* Contact Page Specific Styles */
.contact-page .section-padding {
    padding: 80px 0;
}

.contact-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: var(--brand-heading-font, "Lato", sans-serif);
}

.contact-page .lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #d9201d;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(217, 32, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #d9201d;
    font-size: 2rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p, .contact-info-card a {
    color: #555;
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 5px;
    display: block;
}

.contact-info-card a:hover {
    color: #d9201d;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #d9201d;
    box-shadow: 0 0 0 0.25rem rgba(217, 32, 29, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.btn-submit {
    background-color: #d9201d;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #b81b18;
    transform: translateY(-2px);
    color: #fff;
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
