/* ============================================
   CTA Section CSS — LumivioPress
   ============================================ */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem var(--main-padding);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-content {
        padding: 5rem var(--main-padding-md);
    }
}

/* Title */
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.6;
    text-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .cta-description {
        font-size: 1rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: .7rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
}

.cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}