/* Contact Info Section */
.contact-info-section {
    background: #f7fcfd;
    padding: 70px 0 40px 0;
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-title {
    text-align: center;
    color: #0b6578;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 38px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info-box {
    display: flex;
    gap: 18px;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 5px 24px rgba(109,189,200,0.11);
    padding: 28px 25px;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 2px solid #e7ecee;
}

.contact-info-box:hover {
    box-shadow: 0 9px 32px rgba(109,189,200,0.19);
    border-color: #6dbdc8;
    transform: translateY(-6px) scale(1.025);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6dbdc8 0%, #0b6578 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-info-box h4 {
    margin: 0 0 5px 0;
    color: #224056;
    font-size: 1.08rem;
    font-weight: 700;
}

.contact-info-box p, .contact-info-box a {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.9;
    margin: 0;
    text-decoration: none;
}

.contact-whatsapp {
    color: #25D366;
    font-weight: 700;
    transition: color 0.3s;
}

.contact-whatsapp:hover {
    color: #128C7E;
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    gap: 11px;
    margin-top: 7px;
}

.social-links-contact a {
    background: #eaf6f7;
    color: #6dbdc8;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background 0.3s, color 0.3s;
}

.social-links-contact a:hover {
    background: #6dbdc8;
    color: white;
}

.ltr {
    direction: ltr;
    text-align: left;
}

@media (max-width: 700px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }
    .contact-info-box {
        padding: 20px 15px;
    }
    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
}
