/* =============================== */
/* CTA FULL-WIDTH — PREMIUM BLUE   */
/* =============================== */

.secondary-cta-full {
    width: auto;
    padding: 4rem 1rem;

    /* Gradient biru premium — lebih soft & elegan */
    background: linear-gradient(135deg, #246BFF 0%, #0F3ECF 100%);
    color: #FFFFFF;

    text-align: center;
}

.secondary-cta-full .cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Judul CTA */
.secondary-cta-full h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

/* Deskripsi CTA */
.secondary-cta-full .cta-desc {
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #F2F6FF;   /* lebih putih, tetap lembut */
}

/* =============================== */
/* CTA BUTTON (diperbaiki warnanya) */
/* =============================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.8rem;

    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;

    background: #0A2FA0;      /* biru gelap elegan */
    color: #FFFFFF;
    border: none;

    box-shadow: 0 6px 18px rgba(10, 47, 160, 0.35);
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #0C3BCF;      /* sedikit lebih terang */
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(12, 59, 207, 0.35);
}

.cta-button:active {
    transform: scale(0.96);
}

/* Icon */
.cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Layout tombol */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 700px) {
    .contact-methods {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
