/* ========================================================
   WHY CHOOSE US SECTION STYLING (#F8F9FA & #ed2227)
   ======================================================== */

.why-choose-section {
    padding: 80px 0; /* Desktop Padding: 80px */
    background-color: #F8F9FA !important;
}

.bg-light {
    background-color: #F8F9FA !important;
}

.text-red {
    color: #ed2227 !important;
}

/* Badge Styling */
.why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.why-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
}

.why-badge .badge-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.25;
}

.lead-desc {
    font-size: 15px;
    line-height: 1.75;
}

.max-w-700 {
    max-width: 700px;
}

/* Advantage Cards Styling */
.why-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 35px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover {
    border-color: #ed2227;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(237, 34, 39, 0.12);
}

/* Icon Box */
.why-icon-box {
    width: 56px;
    height: 56px;
    background-color: #111111;
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.why-card:hover .why-icon-box {
    background-color: #ed2227;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(237, 34, 39, 0.3);
}

/* Titles & Description Text */
.why-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 13.5px;
    color: #444444 !important;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Bottom Red Corner Accent Line */
.card-corner-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ed2227 0%, #990B0F 100%);
    transition: width 0.4s ease;
}

.why-card:hover .card-corner-accent {
    width: 100%;
}

/* ========================================================
   MOBILE RESPONSIVE ADJUSTMENTS (PADDING 30px)
   ======================================================== */

@media (max-width: 767.98px) {
    .why-choose-section {
        padding: 30px 0 !important; /* Mobile Padding: 30px */
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card-title {
        font-size: 18px;
    }
}