/* CTA Banner Component */

.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(187, 154, 101, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__title {
    margin-bottom: 1rem;
}

.cta-banner__text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Light Style (Default) */
.cta-banner--light {
    background: linear-gradient(135deg, var(--secondary-color-600) 0%, var(--secondary-color-700) 100%);
}

.cta-banner--light .cta-banner__title {
    color: var(--primary-color-100);
}

.cta-banner--light .cta-banner__text {
    color: var(--ternary-color-100);
}

/* Dark Style */
.cta-banner--dark {
    background: linear-gradient(135deg, var(--primary-color-100) 0%, #5a4a3c 100%);
}

.cta-banner--dark .cta-banner__title {
    color: #fff;
}

.cta-banner--dark .cta-banner__text {
    color: rgba(255, 255, 255, 0.8);
}

/* Primary Style */
.cta-banner--primary {
    background: linear-gradient(135deg, var(--secondary-color-100) 0%, #8C6629 100%);
}

.cta-banner--primary .cta-banner__title {
    color: #fff;
}

.cta-banner--primary .cta-banner__text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner--primary .primary-button {
    background: #fff;
    color: var(--primary-color-100);
}

