/* ========================================
   CONTACT PAGE WHATSAPP STYLING
   ======================================== */

/* === WHATSAPP CONTACT ITEM === */
.whatsapp-item {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(18, 140, 126, 0.08)) !important;
    border: 2px solid rgba(37, 211, 102, 0.3) !important;
    padding: 2rem !important;
}

.whatsapp-item:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 126, 0.12)) !important;
    border-color: #25D366 !important;
}

.whatsapp-item .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}

.whatsapp-item .contact-icon i {
    color: #ffffff !important;
    font-size: 1.8rem !important;
}

.whatsapp-item .contact-details h4 {
    color: #25D366 !important;
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
}

.whatsapp-item .contact-details p {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    background: #25D366;
    color: #ffffff !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.2rem;
}

/* === CONTACT CTA BUTTONS === */
.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn-luxury,
.contact-cta-buttons .btn-whatsapp {
    min-width: 150px;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .contact-cta-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-cta-buttons .btn-luxury,
    .contact-cta-buttons .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-link {
        width: 100%;
        justify-content: center;
    }
}
