
/* =========================
   WHY SECTION MODULE (UPGRADED ICON SYSTEM)
========================= */

.why-section {
    margin-top: 70px;
}

.why-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

/* GRID */
.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* CARD */
.why-card {
    display: flex;
    align-items: flex-start;

    gap: 16px;
    padding: 20px 22px;

    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);

    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* hover premium lift */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

/* ICON WRAPPER (IMPORTANT UPGRADE) */
.why-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;
    background: rgba(0,0,0,0.03);
}

/* ICON SIZE FIX */
.why-icon i {
    font-size: 22px;
    color: #111;

    line-height: 1;
}

/* TEXT */
.why-content {
    flex: 1;
}

.why-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #111;
}

.why-content p {
    font-size: 13.5px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* HOVER ACCENT LINE */
.why-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0%;
    background: #111;
    transition: 0.3s ease;
}

.why-card:hover::before {
    height: 100%;
}



/* =========================
   WHY SECTION BUTTON
========================= */

.why-footer {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end; /* RIGHT SIDE ALIGN */
}

/* BUTTON STYLE */
.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-transform: uppercase;
    text-decoration: none;

    background-color: rgb(230, 171, 64);
    color: var(--e-global-color-b0ae53a);
    fill: var(--e-global-color-b0ae53a);

    font-weight: 600;

    border: 1px solid rgb(230, 171, 64);
    border-radius: 5px;

    padding: 10px 16px;

    font-size: 12.5px;
    letter-spacing: 0.5px;

    transition: all 0.25s ease;
}

/* HOVER EFFECT */
.why-btn:hover {
    background-color: #111;
    border-color: #111;
    color: #fff;
    transform: translateY(-2px);
}

.why-btn i {
    margin-left: 8px;
    font-size: 12px;
    opacity: 1;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* hover animation */
.why-btn:hover i {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .why-cards {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 767px) {

    .why-footer {
        justify-content: center;
    }

    .why-btn {
        width: 100% !important;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .why-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }
}