/* ====================================================================== */
/* CTA BUTTON (Modern, Premium, Responsif | Biru – Merah – Hitam – Putih) */
/* ====================================================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    padding: 0.85rem 1.6rem;
    border-radius: 12px;

    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;

    cursor: pointer;
    border: none;
    outline: none;

    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;

    margin-top: 1.5rem;
}

/* Primary CTA (Biru Premium) */
.primary-cta {
    background: linear-gradient(135deg, #1E6BFF 0%, #1151C6 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(30, 107, 255, 0.35);
}

/* Hover State */
.primary-cta:hover {
    background: linear-gradient(135deg, #0C56E9 0%, #0A3F9E 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 107, 255, 0.55);
}

/* Active (Saat ditekan) */
.primary-cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(30, 107, 255, 0.40);
}

/* Large CTA */
.large-cta {
    padding: 1.1rem 1.9rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Icon Panah */
.primary-cta::after {
    content: "➜";
    font-size: 1.15rem;
    display: inline-block;
    transition: transform 0.25s ease;
    margin-left: 6px;
    opacity: 0.85;
}

.primary-cta:hover::after {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-button.large-cta {
        display: block;
        width: 100%;
        box-sizing: border-box;

        padding: 1rem 1.4rem;
        font-size: 1rem;
        border-radius: 10px;
        text-align: center;

        margin-top: 1.5rem;
    }

    .primary-cta {
        box-shadow: 0 6px 18px rgba(30, 107, 255, 0.40);
    }
}

.secondary-cta {
    background: linear-gradient(135deg, #FF3B3F 0%, #C6282A 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 59, 63, 0.35);
}

.secondary-cta:hover {
    background: linear-gradient(135deg, #E53033 0%, #A71F22 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 59, 63, 0.55);
}

.secondary-cta:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(255, 59, 63, 0.40);
}
