/* ========== Premium Why Choose Us Section ========== */
.why-choose-us-section {
    padding: 120px 24px;
    background: #dae8fc;
    /* Lighter shade of the primary blue */
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .why-choose-us-section {
    background: #0b1120;
    /* Deep navy */
}

/* Background Elements */
.why-bg-blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.why-bg-blur.top-right {
    top: -200px;
    right: -200px;
}

.why-bg-blur.bottom-left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Content Column */
.why-intro {
    position: relative;
}

.why-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2563eb;
    /* Darker blue for light mode readability */
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

[data-theme="dark"] .why-eyebrow {
    color: #60a5fa;
    /* Original bright blue for dark mode */
}

.why-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-color);
}

[data-theme="dark"] .why-title {
    color: #fff;
}

.why-highlight {
    color: #2563eb;
    /* Darker blue for light mode */
}

[data-theme="dark"] .why-highlight {
    color: #60a5fa;
    /* Lighter blue for dark mode */
}

.why-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
}

.why-subtitle-box {
    background: rgba(59, 130, 246, 0.08);
    /* Light blue tint */
    border-left: 4px solid var(--blue);
    padding: 24px 32px;
    border-radius: 0 16px 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 40px;
    position: relative;
}

[data-theme="dark"] .why-subtitle-box {
    background: rgba(30, 41, 59, 0.6);
    color: #e2e8f0;
    border-color: #60a5fa;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.5);
}

/* Right Content Column - The Benefits Card */
.why-benefits-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .why-benefits-card {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Decorative corner gradient */
.why-benefits-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    border-radius: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(8px);
}

[data-theme="dark"] .benefit-item:hover {
    background: rgba(59, 130, 246, 0.1);
}

.benefit-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    /* Matches highlight color */
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .benefit-icon-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
    color: #60a5fa;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.benefit-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-color);
}

[data-theme="dark"] .benefit-content h3 {
    color: #f1f5f9;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-intro {
        text-align: center;
    }

    .why-subtitle-box {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .why-bg-blur {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 80px 20px;
    }

    .why-title {
        font-size: 2.5rem;
    }

    .why-benefits-card {
        padding: 24px;
        border-radius: 24px;
    }

    .benefit-item {
        padding: 12px;
    }
}