/* ===== WHY CHOOSE US SECTION ===== */

.ptv-whyus-wrapper {
    padding: 80px 0;
    background: #FFF8EE;
}

.ptv-whyus-heading-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.ptv-whyus-badge {
    display: inline-block;
    background: rgba(251, 169, 49, 0.15);
    color: var(--primary, #fba931);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ptv-whyus-heading {
    font-size: 36px;
    font-weight: 700;
    color: #590c19;
    margin-bottom: 16px;
}

.ptv-why-heading {
    font-size: 36px;
    font-weight: 700;
    color: #590c19;
    margin-bottom: 16px;
}

.ptv-whyus-gradient {
    background: linear-gradient(90deg, var(--primary, #fba931), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ptv-whyus-subtitle {
    color: #590c19;
    font-size: 16px;
    line-height: 1.7;
}

.ptv-why-subtitle {
    color: #590c19;
    font-size: 16px;
    line-height: 1.7;
}

.ptv-whyus-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 26px;
    height: 100%;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ptv-whyus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(251, 169, 49, 0.2);
}

.ptv-whyus-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(251, 169, 49, 0.12);
    font-size: 28px;
    color: var(--primary, #fba931);
    transition: background 0.35s ease, color 0.35s ease;
}

.ptv-whyus-card:hover .ptv-whyus-icon {
    background: var(--primary, #fba931);
    color: #fff;
}

.ptv-whyus-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--secondary, #3d422f);
    margin-bottom: 12px;
}

.ptv-whyus-card p {
    font-size: 14.5px;
    color: #737373;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .ptv-whyus-wrapper {
        padding: 55px 0;
    }

    .ptv-whyus-heading {
        font-size: 28px;
    }

    .ptv-whyus-card {
        padding: 28px 20px;
    }
}