/* Why Choose Us Section - Modern 2025 Agriculture Seeds Design */

.why-choose-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #2d2324 0%, #8b1e38 50%, #4b1e29 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.03) 35px,
            rgba(255, 255, 255, 0.03) 70px
        );
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(139, 30, 56, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(75, 30, 41, 0.45) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.6;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%
        ),
        linear-gradient(
            0deg,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 50%,
            transparent 100%
        );
    pointer-events: none;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(246, 227, 234, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.18) 100%);
    border: 2px solid rgba(246, 227, 234, 0.5);
}

.why-choose-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-choose-image-container:hover .why-choose-image-main {
    transform: scale(1.08);
}

.why-choose-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b1e38 0%, #d38aa7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 36px;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    z-index: 2;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.why-choose-video-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(139, 30, 56, 0.35);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.why-choose-video-button:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.8);
}

.why-choose-video-button i {
    margin-left: 5px;
    position: relative;
    z-index: 1;
}

.why-choose-content {
    padding: 20px 0;
}

.why-choose-tagline {
    display: inline-block;
    color: #f6e3ea;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.why-choose-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 3px;
    background: linear-gradient(90deg, #f6e3ea 0%, #e7b4c7 100%);
    border-radius: 2px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-description {
    font-size: 18px;
    line-height: 1.9;
    color: #f4edf0;
    margin-bottom: 40px;
}

.why-choose-features-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.why-choose-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.16) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(246, 227, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-choose-feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 227, 234, 0.16) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-feature-item:hover::after {
    opacity: 1;
}

.why-choose-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8b1e38 0%, #d38aa7 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why-choose-feature-item:hover::before {
    transform: scaleY(1);
}

.why-choose-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(246, 227, 234, 0.7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.why-choose-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(139, 30, 56, 0.26) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(246, 227, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(246, 227, 234, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.why-choose-feature-item:hover .why-choose-feature-icon-wrapper::before {
    width: 100px;
    height: 100px;
}

.why-choose-feature-icon {
    font-size: 32px;
    color: #f6e3ea;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-choose-feature-item:hover .why-choose-feature-icon {
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
}

.why-choose-feature-content {
    flex: 1;
}

.why-choose-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.why-choose-feature-item:hover .why-choose-feature-title {
    color: #f6e3ea;
}

.why-choose-feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #f4edf0;
    margin: 0;
}

.why-choose-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(246, 227, 234, 0.25);
}

.why-choose-stat-box {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 30, 56, 0.2) 100%);
    border-radius: 20px;
    border: 1px solid rgba(246, 227, 234, 0.25);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-choose-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 227, 234, 0.18), transparent);
    transition: left 0.6s ease;
}

.why-choose-stat-box:hover::before {
    left: 100%;
}

.why-choose-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(246, 227, 234, 0.8);
}

.why-choose-stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f6e3ea 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.why-choose-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #f4edf0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-choose-wrapper {
        gap: 60px;
    }
    
    .why-choose-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-choose-image-main {
        height: 500px;
    }
    
    .why-choose-title {
        font-size: 38px;
    }
    
    .why-choose-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-image-main {
        height: 400px;
    }
    
    .why-choose-title {
        font-size: 32px;
    }
    
    .why-choose-description {
        font-size: 16px;
    }
    
    .why-choose-feature-item {
        padding: 20px;
    }
    
    .why-choose-feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-feature-icon {
        font-size: 28px;
    }
    
    .why-choose-feature-title {
        font-size: 18px;
    }
    
    .why-choose-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-choose-feature-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.why-choose-feature-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-feature-item:nth-child(2) { animation-delay: 0.2s; }
.why-choose-feature-item:nth-child(3) { animation-delay: 0.3s; }

