/* Section Full Width CTA Bar Styles */
.section-full-width-cta-bar {
    position: relative;
    /* Padding now handled via ACF utility classes on .cta-bar-content */
    margin: 0;
}

/* CTA Bar Link - Full clickable area */
.section-full-width-cta-bar .cta-bar-link {
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Dark Green color scheme (default) */
.section-full-width-cta-bar .cta-bar-link.cta-bar-dark-green {
    background-color: var(--paperwise-dark-green);
}

.section-full-width-cta-bar .cta-bar-link.cta-bar-dark-green:hover {
    background-color: var(--paperwise-dark-green-hover, #1a5449);
}

/* Teal color scheme */
.section-full-width-cta-bar .cta-bar-link.cta-bar-teal {
    background-color: var(--paperwise-teal);
}

.section-full-width-cta-bar .cta-bar-link.cta-bar-teal:hover {
    background-color: var(--paperwise-teal-hover, #4da393);
}

/* CTA Bar Content - Padding now handled via ACF and utility classes */

/* CTA Bar Inner - Flexbox for text and arrow */
.section-full-width-cta-bar .cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

/* CTA Text */
.section-full-width-cta-bar .cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--paperwise-accent);
    transition: all 0.3s ease;
    position: relative;
}

/* Animated underline on hover */
.section-full-width-cta-bar .cta-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--paperwise-accent);
    transition: width 0.3s ease;
}

.section-full-width-cta-bar .cta-bar-link:hover .cta-text::after {
    width: 100%;
}



/* CTA Arrow */
.section-full-width-cta-bar .cta-arrow {
    width: 27px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Arrow animation on hover */
.section-full-width-cta-bar .cta-bar-link:hover .cta-arrow {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 991px) {
    /* Padding now handled via ACF and utility classes */
    .section-full-width-cta-bar .cta-text {
        font-size: 18px;
    }

    .section-full-width-cta-bar .cta-arrow {
        width: 22px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    /* Padding now handled via ACF and utility classes */

    .section-full-width-cta-bar .cta-text {
        font-size: 16px;
        text-align: center;
    }

    .section-full-width-cta-bar .cta-bar-inner {
        flex-direction: column;
        gap: 12px;
    }

    .section-full-width-cta-bar .cta-arrow {
        width: 20px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .section-full-width-cta-bar .cta-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* Dark mode variant */
[data-bs-theme="dark"] .section-full-width-cta-bar .cta-bar-link {
    background-color: var(--dark-gray);
}

[data-bs-theme="dark"] .section-full-width-cta-bar .cta-bar-link:hover {
    background-color: var(--black);
}

[data-bs-theme="dark"] .section-full-width-cta-bar .cta-text {
    color: var(--paperwise-accent);
}

[data-bs-theme="dark"] .section-full-width-cta-bar .cta-text::after {
    background-color: var(--paperwise-accent);
}