/* Why Choose Our Company - Modern Redesign */

.why-choose-section {
    padding: 80px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 133, 90, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Section */
.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 0.8s ease-out;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.why-choose-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 133, 90, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    z-index: 1;
}

/* Content Section */
.why-choose-content {
    animation: fadeInRight 0.8s ease-out;
}

.why-choose-content .section-label {
    display: inline-block;
    color: #2F855A;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.why-choose-content h2 {
    color: #1F2937;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.why-choose-content .intro-text {
    color: #6B7280;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.core-value-item {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.core-value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2F855A;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.core-value-item:hover::before,
.core-value-item.active::before {
    transform: scaleY(1);
}

.core-value-item:hover {
    background: #FFFFFF;
    border-color: #2F855A;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.1);
}

.core-value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2F855A 0%, #38A169 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(47, 133, 90, 0.2);
    transition: all 0.3s ease;
}

.core-value-item:hover .core-value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(47, 133, 90, 0.3);
}

.core-value-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.core-value-text {
    flex-grow: 1;
}

.core-value-text h4 {
    color: #1F2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.core-value-text p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.core-value-check {
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.core-value-check i {
    font-size: 12px;
    color: #2F855A;
}

/* Stats Section */
.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2F855A;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.core-value-item {
    animation: fadeInUp 0.6s ease-out both;
}

.core-value-item:nth-child(1) { animation-delay: 0.1s; }
.core-value-item:nth-child(2) { animation-delay: 0.2s; }
.core-value-item:nth-child(3) { animation-delay: 0.3s; }
.core-value-item:nth-child(4) { animation-delay: 0.4s; }
.core-value-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image {
        order: 2;
    }
    
    .why-choose-content {
        order: 1;
    }
    
    .why-choose-content h2 {
        font-size: 32px;
    }
    
    .why-choose-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content h2 {
        font-size: 28px;
    }
    
    .why-choose-content .intro-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .core-value-item {
        padding: 18px 20px;
        gap: 16px;
    }
    
    .core-value-icon {
        width: 50px;
        height: 50px;
    }
    
    .core-value-icon i {
        font-size: 22px;
    }
    
    .core-value-text h4 {
        font-size: 16px;
    }
    
    .core-value-text p {
        font-size: 13px;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}












