/* =========================
   CUSTOM TEMPLATE SECTION
========================= */

.cts-premium-section {
    margin: 120px 0;
    padding: 120px 24px;
    background: #ffffff;
}

.cts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* IMAGE */
.cts-image-wrapper {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

.cts-image {
    width: 100%;
    display: block;
}

/* CONTENT */
.cts-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    background: #f3f3f3;
    color: #444;
}

.cts-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #0b0b0b;
    margin-bottom: 24px;
}

.cts-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
    margin-bottom: 24px;
}

/* CTA */
.cts-button {
    display: inline-block;
    margin-top: 32px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #0084ff;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cts-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cts-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .cts-heading {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .cts-heading {
        font-size: 28px;
    }

    .cts-description {
        font-size: 16px;
    }
}

.cts-premium-section {
    margin: 25px;
    padding: 50px;
    border-radius: 23px;
}













/* =========================
   CTA BUTTON GROUP
========================= */

.cts-button-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON (already exists, kept for clarity) */
.cts-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #0084ff;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cts-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* SECONDARY BUTTON */
.cts-secondary-button {
    background: transparent;
    color: #0084ff;
    border: 2px solid #0084ff;
}

.cts-secondary-button:hover {
    background: #0084ff;
    color: #ffffff;
}

