.contact-hero {
    background: #f8f9fa;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-card, .contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

.section-title {
    font-weight: 700;
    color: #2d3436;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #0d6efd;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-box {
    min-width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.info-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.info-text p, .info-text a {
    color: #636e72;
    text-decoration: none;
    margin: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover { transform: translateY(-3px); color: #fff; opacity: 0.9; }

.facebook { background: #3b5998; }
.instagram { background: #e4405f; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.linkedin { background: #0077b5; }

.official-info p {
    font-size: 0.85rem;
    color: #b2bec3;
    margin-bottom: 0.3rem;
}

.form-control {
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 0.8rem 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.05);
}

.map-card iframe {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 1.5rem;
}