/* Why Choose Us Section Styles */

/* Main Section */
.why-choose-us {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,123,255,0.02) 0%, rgba(0,86,179,0.02) 100%);
    pointer-events: none;
}

/* Content Section */
.why-choose-content {
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.why-choose-content .section-header {
    margin-bottom: 40px;
}

.why-choose-content .section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #da000e, #0056b3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
}

.why-choose-content .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-content .section-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose List */
.why-choose-list {
    margin-bottom: 40px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-choose-item:hover {
    background: #ffffff;
    border-left-color: #da000e;
    box-shadow: 0 10px 30px rgba(0,123,255,0.1);
    transform: translateX(5px);
}

.item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #da000e, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.item-icon i {
    font-size: 24px;
    color: #ffffff;
}

.why-choose-item:hover .item-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0,123,255,0.4);
}

.item-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.item-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #da000e, #0056b3);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,123,255,0.4);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #da000e;
    border: 2px solid #da000e;
    box-shadow: 0 4px 15px rgba(0,123,255,0.1);
}

.cta-buttons .btn-outline:hover {
    background: #da000e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,123,255,0.3);
}

/* Visual Section */
.why-choose-visual {
    position: relative;
    padding-left: 30px;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Stats Card */
.stats-card {
    top: 20px;
    right: -20px;
    background: linear-gradient(135deg, #da000e, #0056b3);
    color: #ffffff;
    text-align: center;
    min-width: 120px;
}

.stats-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.stats-item p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Quality Card */
.quality-card {
    bottom: 20px;
    left: -30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quality-badge i {
    font-size: 28px;
    color: #ffffff;
}

.quality-badge h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.quality-badge p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

/* Rating Card */
.rating-card {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #ffffff;
    text-align: center;
}

.rating-content .stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.rating-content .stars i {
    font-size: 16px;
    color: #ffffff;
}

.rating-content p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stats-card {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.quality-card {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.rating-card {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .why-choose-content .section-title {
        font-size: 32px;
    }
    
    .why-choose-visual {
        padding-left: 0;
    }
    
    .floating-card {
        position: static;
        margin-bottom: 20px;
        animation: none;
    }
    
    .stats-card,
    .quality-card,
    .rating-card {
        position: static;
        transform: none;
        display: inline-block;
        margin: 10px;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-choose-content .section-title {
        font-size: 28px;
    }
    
    .why-choose-content .section-description {
        font-size: 14px;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .item-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .item-icon i {
        font-size: 20px;
    }
    
    .item-content h4 {
        font-size: 16px;
    }
    
    .item-content p {
        font-size: 13px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        padding: 12px 24px;
        justify-content: center;
        width: 100%;
    }
    
    .floating-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .stats-item h3 {
        font-size: 24px;
    }
    
    .quality-badge i {
        font-size: 24px;
    }
}