/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

   .why-choose-section {
    position: relative;
    background: var(--color-primary, #153C6D);
}

.why-choose-wrapper {
    display: flex;
    flex-direction: row-reverse; /* RTL: Image on left, content on right */
    min-height: 600px;
}

/* Image - Left Side (appears on left in RTL) */
.why-choose-image {
    flex: 0 0 52%;
    max-width: 45%;
    position: relative;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content - Right Side (appears on right in RTL) */
.why-choose-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.why-choose-content-inner {
    max-width: 972px;
    width: 100%;
    padding: 0 80px 0 60px;
    margin-left: auto;
}

/* Title */
.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 40px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-choose-section.animate-in .why-choose-title {
    opacity: 1;
    transform: translateY(0);
}

/* Features Grid */
.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

/* Single Feature */
.why-choose-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-choose-section.animate-in .why-choose-feature {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-feature-icon {
    flex-shrink: 0;
}

.why-choose-feature-icon svg {
    width: 40px;
    height: 40px;
}

.why-choose-feature-content {
    flex: 1;
}

.why-choose-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
    line-height: 1.4;
}

.why-choose-feature-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
}

/* Button */
.why-choose-button-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.why-choose-section.animate-in .why-choose-button-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-button {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary, #153C6D);
    background: white;
    border: 2px solid white;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-choose-button:hover {
    background: transparent;
    color: white;
}

/* Bottom Line */
.why-choose-bottom-line {
    height: 8px;
    background: #F6B38D;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .why-choose-content-inner {
        padding: 0 60px 0 40px;
        max-width: 700px;
    }
    
    .why-choose-title {
        font-size: 36px;
    }
}

@media (max-width: 1024px) {
    .why-choose-image {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .why-choose-content-inner {
        padding: 0 48px 0 32px;
    }
    
    .why-choose-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .why-choose-features {
        gap: 24px;
    }
    
    .why-choose-feature-title {
        font-size: 16px;
    }
    
    .why-choose-feature-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .why-choose-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .why-choose-image {
        flex: none;
        max-width: 100%;
        width: 100%;
        height: 300px;
        order: -1;
    }
    
    .why-choose-content {
        padding: 40px 0;
    }
    
    .why-choose-content-inner {
        padding: 0 24px;
        max-width: 100%;
    }
    
    .why-choose-title {
        font-size: 28px;
        margin-bottom: 28px;
        text-align: center;
    }
    
    .why-choose-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .why-choose-feature {
        text-align: right;
    }
    
    .why-choose-feature-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .why-choose-feature-title {
        font-size: 16px;
    }
    
    .why-choose-feature-description {
        font-size: 14px;
    }
    
    .why-choose-button-wrapper {
        text-align: center;
    }
    
    .why-choose-button {
        padding: 12px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .why-choose-image {
        height: 250px;
    }
    
    .why-choose-content {
        padding: 32px 0;
    }
    
    .why-choose-content-inner {
        padding: 0 16px;
    }
    
    .why-choose-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .why-choose-features {
        gap: 20px;
        margin-bottom: 28px;
    }
    
    .why-choose-feature {
        gap: 12px;
    }
    
    .why-choose-feature-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .why-choose-feature-title {
        font-size: 15px;
    }
    
    .why-choose-feature-description {
        font-size: 13px;
    }
    
    .why-choose-button {
        padding: 10px 28px;
        font-size: 14px;
    }
}

