/* =========================================
   BRIGHT ANGEL - CONTACT PAGE UI
   ========================================= */

/* --- 1. Contact Hero & Socials --- */
.contact-hero {
    padding: 160px 20px 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    text-align: center;
    border-bottom: 1px solid #cbd5e1;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
}

/* Premium Social Icons */
.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-btn.email-btn { background-color: var(--primary-color); width: auto; padding: 0 20px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; }
.social-btn.facebook { background-color: #3b5998; }
.social-btn.twitter { background-color: #1da1f2; }
.social-btn.linkedin { background-color: #0077b5; }
.social-btn.instagram { background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5); }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: var(--white);
}

/* --- 2. Department Cards --- */
.contact-departments {
    padding: 80px 0 40px 0;
    background: var(--bg-light);
}

.department-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.08);
    border-color: var(--primary-color);
}

.dept-header {
    background: rgba(0, 74, 173, 0.04);
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
}

.dept-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dept-header small {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.dept-body {
    padding: 25px;
}

/* Office Locations List */
.office-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e2e8f0;
}

.office-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.office-item p {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.office-item p strong {
    color: var(--text-dark);
    font-size: 1rem;
    display: block;
    margin-bottom: 8px;
}

.office-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.office-item a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* --- 3. Contact Form Section --- */
.contact-form-section {
    padding: 40px 0 80px 0;
    background: var(--bg-light);
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.form-wrapper h2 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
    outline: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .contact-hero { padding: 130px 20px 60px 20px; }
    .contact-hero h1 { font-size: 2.4rem; }
    .form-wrapper { padding: 25px; }
}