/* ==========================================
   BUTOANE GLOBALE CTA (CALL & WHATSAPP)
   Cale: assets/css/cta.css
   ========================================== */

.hero-cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* --- BUTONUL SUNĂ --- */
.btn-suna-hero {
    flex: 1;
    min-width: 200px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #2563eb; /* Albastru profesional */
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-suna-hero:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-suna-hero:active {
    transform: translateY(0);
}

/* Badge-ul roșu cu textul "SUNĂ" */
.btn-suna-badge {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: #ef4444; /* Roșu alertă */
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.icon-cta-phone {
    fill: #ffffff;
    width: 16px;
    height: 16px;
}

/* --- BUTONUL WHATSAPP --- */
.btn-whatsapp-hero {
    flex: 1;
    min-width: 200px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(34, 197, 94, 0.1); /* Fundal verde fin */
    border: 2px solid #22c55e;
    color: #22c55e; /* Text verde */
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-whatsapp-hero:hover {
    background-color: #22c55e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* Când pui mouse-ul pe buton, iconița devine albă */
.btn-whatsapp-hero:hover .icon-cta-wa {
    fill: #ffffff;
}

.btn-whatsapp-hero:active {
    transform: translateY(0);
}

.icon-cta-wa {
    fill: #22c55e;
    width: 22px;
    height: 22px;
    transition: fill 0.2s ease;
}

/* --- RESPONSIVE (MOBIL) --- */
@media (max-width: 480px) {
    .hero-cta-container {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }
    .btn-suna-hero, .btn-whatsapp-hero {
        width: 100%;
    }
}