/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xxl) 0;
    background-color: #1a2f5a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-section .section-title {
    color: #fff;
}

.section-description {
    max-width: 800px;
    margin: 15px auto 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    gap: 40px;
    margin-top: var(--spacing-lg);
}

/* 3 Columns Layout (Default) */
.why-choose-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 4 Columns Layout */
.why-choose-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.why-choose-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition-base);
}

.why-choose-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: transparent;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin: 0 auto 25px;
}

.why-icon svg {
    width: 60px;
    height: 60px;
    fill: currentColor;
}

.why-content {
    text-align: center;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.why-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {

    .why-choose-grid-3,
    .why-choose-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-items {
        gap: 30px;
    }

    .why-choose-section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 767px) {

    .why-choose-grid-3,
    .why-choose-grid-4 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-items {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        padding: var(--spacing-md) 0;
    }

    .why-choose-item {
        padding: 30px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .why-icon svg {
        width: 30px;
        height: 30px;
    }

    .why-title {
        font-size: 16px;
    }

    .why-desc {
        font-size: 14px;
    }
}