/* ============================
   Contact Page Styling
   ============================ */

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 98, 181, 0.1); /* Primary light */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-box {
    background-color: var(--primary-color);
    color: #fff;
}

.contact-card-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card-text {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-text a:hover {
    color: var(--primary-color);
}

/* Form Section */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-control {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 98, 181, 0.1); /* Primary focus ring */
    border-color: var(--primary-color);
}

.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    min-height: 400px; /* Ensure visibility on mobile */
}

/* Section Headings */
.section-subheading {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
}
