/* ============================================================
   CTA SHORTCODE - ELEGAN & MENCOLOK (TANPA OVERFLOW)
   ============================================================ */

.blancong-cta-shortcode {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important; /* override max-width:900px */
    margin: 2rem auto !important;
    padding: 2rem 1.5rem !important;
    border-radius: 20px;
    background: linear-gradient(145deg, #0b0a0a 0%, #1a1717 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

/* Hapus pseudo-element glow yang pakai width:200% (bisa jadi penyebab) */
.blancong-cta-shortcode::before {
    display: none; /* matikan sementara */
}

/* Inner container */
.cta-inner {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    overflow: hidden;
}

/* Typography */
.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem) !important;
    font-weight: 700;
    background: linear-gradient(135deg, #f7e8b0, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.2rem 0;
    width: 100%;
}

.cta-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: #e8e0d5;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    word-wrap: break-word;
}

.cta-note {
    font-size: 0.85rem;
    color: #b8a88a;
    margin: 0;
    letter-spacing: 0.05em;
    opacity: 0.8;
    width: 100%;
}
.cta-note small {
    display: inline-block;
    padding: 0 0.5rem;
}

/* Buttons container */
.cta-inner .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem !important;
    margin: 0.2rem !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    min-width: 0 !important; /* hilangkan min-width */
    width: auto;
    max-width: 100% !important;
    flex-shrink: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button 1 */
.btn-1 {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #1a1717 !important;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
}
.btn-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e8c94a, #c9940a);
}

/* Button 2 */
.btn-2 {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
}
.btn-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #30e07b, #1aa08e);
}

/* Button 3 */
.btn-3 {
    background: linear-gradient(135deg, #5a4a3a, #3d3228);
    color: #e8e0d5 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.btn-3:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #6d5a48, #4a3c30);
}

/* Shine effect - hilangkan karena bisa overflow */
.btn-cta::after {
    display: none;
}

/* Animasi */
.blancong-cta-shortcode {
    animation: ctaFadeInUp 0.8s ease-out both;
}
@keyframes ctaFadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .blancong-cta-shortcode {
        padding: 1.5rem 1rem !important;
        margin: 1.5rem 0.5rem !important;
        border-radius: 16px;
    }
    .cta-inner .btn-cta {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0.8rem 1rem !important;
        font-size: 0.9rem;
        white-space: normal;
        justify-content: center;
    }
    .cta-title {
        font-size: 1.4rem !important;
    }
    .cta-subtitle {
        font-size: 0.9rem;
    }
    .cta-note {
        font-size: 0.75rem;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .blancong-cta-shortcode {
        padding: 2rem 1.5rem;
    }
    .cta-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    .cta-title,
    .cta-subtitle,
    .cta-note {
        flex: 0 0 100%;
        text-align: center;
    }
    .cta-inner .btn-cta {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.95rem;
    }
}

@media (min-width: 1025px) {
    .blancong-cta-shortcode {
        padding: 3rem 2rem;
    }
    .cta-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .cta-title,
    .cta-subtitle,
    .cta-note {
        flex: 0 0 100%;
        text-align: center;
    }
    .cta-inner .btn-cta {
        padding: 0.9rem 2.2rem !important;
        font-size: 1.05rem;
    }
}