/*
 * What We Provide Styles
 */

.wwp-section {
    padding: 100px 0;
    background: transparent;
}

.wwp-header {
    text-align: center;
    margin-bottom: 60px;
}

.wwp-badge {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.wwp-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.1;
}

.wwp-subtitle {
    color: var(--mw-cream);
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.wwp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.wwp-card {
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.wwp-card:hover {
    transform: translateY(-10px);
}

/* White Card Style */
.wwp-card--white {
    background: #fff;
    color: #0A0A12;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.wwp-card--white .wwp-card__icon-wrap {
    background: #f0f0f0;
}

.wwp-card--white .wwp-card__title {
    color: #0A0A12;
}

.wwp-card--white .wwp-card__desc {
    color: #6c757d;
}

/* Purple Card Style (Most Popular) */
.wwp-card--purple {
    background: linear-gradient(180deg, #D4AF37 0%, #1A1630 100%);
    color: #fff;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.wwp-card--purple .wwp-card__icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.wwp-card--purple .wwp-card__title {
    color: #fff;
}

.wwp-card--purple .wwp-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.wwp-card__popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mw-gold, #D4AF37);
    color: #0A0A12;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    z-index: 10;
}

.wwp-card__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.wwp-card--white .wwp-card__icon-wrap {
    background: #D4AF37;
    color: #fff;
}

.wwp-card--purple .wwp-card__icon-wrap {
    background: #fff;
    color: #D4AF37;
}

.wwp-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.wwp-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--mw-cream);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
}

.wwp-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.wwp-card__list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wwp-check {
    color: var(--mw-gold, #D4AF37);
    font-weight: 900;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .wwp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .wwp-card--purple {
        transform: none;
    }
}

@media (max-width: 640px) {
    .wwp-grid {
        grid-template-columns: 1fr;
    }
}
