/* Benefits Section Enhancements */
.benefits-section {
    background: #FFFFFF;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    isolation: isolate;
    overflow: hidden;
    padding: var(--space-16) 0;
}

.benefits-section .section-title {
    color: var(--dark-gray);
    font-size: var(--font-3xl);
    margin-bottom: var(--space-4);
    font-weight: var(--font-bold);
    text-align: center;
}

.benefits-section .section-subtitle {
    color: #373435;
    font-size: var(--font-lg);
    margin-bottom: var(--space-10);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px; /* Add padding to make room for the side arrows */
}

.benefit-slide {
    display: none;
    text-align: center;
    padding: var(--space-8);
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 var(--space-4);
    min-height: 380px;
    border: 1px solid rgba(236, 38, 143, 0.1);
}

.benefit-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.benefit-icon {
    font-size: var(--font-4xl);
    margin-bottom: var(--space-6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(236, 38, 143, 0.15) 0%, rgba(236, 38, 143, 0.05) 100%);
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(236, 38, 143, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(236, 38, 143, 0.1);
}

/* SVG icon styling within benefit icons */
.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    fill: none;
    transition: inherit;
}

.benefit-slide:hover .benefit-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(236, 38, 143, 0.15);
}

.benefit-content h3 {
    font-size: var(--font-2xl);
    margin-bottom: var(--space-6);
    color: var(--dark-gray);
    font-weight: var(--font-bold);
}

.benefit-content ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto var(--space-6);
    list-style-type: none;
}

.benefit-content li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(236, 38, 143, 0.1);
    color: #373435;
    font-size: var(--font-base);
    display: flex;
    align-items: center;
}

.benefit-content li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: var(--space-3);
    font-weight: var(--font-bold);
    display: inline-block;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

.benefit-content li:last-child {
    border-bottom: none;
}

.benefit-content .btn {
    background: var(--primary-color);
    color: var(--white);
    font-weight: var(--font-semibold);
    padding: 12px 24px;
    transition: all var(--transition-base);
    border-radius: var(--radius-lg);
    display: inline-block;
    margin-top: var(--space-4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.benefit-content .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.benefit-content .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(236, 38, 143, 0.3);
}

.benefit-content .btn:hover::after {
    left: 100%;
}

.benefit-content .btn:active {
    transform: translateY(-1px);
}

/* Benefits CTA */
.benefits-cta {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(236, 38, 143, 0.1);
}

.benefits-cta .btn {
    font-size: var(--font-lg);
    padding: var(--space-4) var(--space-8);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.benefits-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Responsive adjustments */
/* Move carousel arrows to the bottom and align with dots on mobile */


