/* ==========================================================================
   MODERN CONTACT SUMMARY - DOLCE VITA
   ========================================================================== */

.modern-contact-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.modern-contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26155E;
    margin-bottom: 10px;
}

.modern-contact-section p.sub-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* CARDS GRID */
.contact-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border: 2px solid #5B41FF; /* Brand Purple */
    border-radius: 24px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.contact-card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(91, 65, 255, 0.1);
}

.contact-card-box span {
    font-size: 40px;
    color: #5B41FF;
    margin-bottom: 25px;
}

.contact-card-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #26155E;
}

.contact-card-box p {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* GREEN VARIATION (Trabaja con nosotros) */
.contact-card-box.card-green {
    background: #f1f8e9;
    border-color: #8bc34a;
}

.contact-card-box.card-green h4 {
    color: #33691e;
    margin-bottom: 0;
}

.contact-card-box.card-green i {
    color: #8bc34a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modern-contact-section {
        padding: 60px 20px;
    }
    .modern-contact-section h2 {
        font-size: 1.8rem;
    }
    .modern-contact-section p.sub-text {
        font-size: 16px;
        margin-bottom: 35px;
    }
    .contact-card-box {
        flex: 1 0 100%;
        max-width: 100%;
        padding: 35px 25px;
    }
    .contact-card-box span {
        font-size: 32px;
        margin-bottom: 15px;
    }
}
