/* RadioDaysV2 - Radio Day Page Styles */
/* Brand: #3d1a6f (purple), #170a29 (dark), #fdb913 (yellow), #ed174c (red) */

/* ── Hero ── */
.rdv2-hero {
    position: relative;
    background: url('/images/backgrounds/bgmic.png') center center / cover no-repeat;
    color: #fff;
    padding: 9rem 0 5rem;
    text-align: center;
    overflow: hidden;
}
.rdv2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61,26,111,0.92) 0%, rgba(23,10,41,0.95) 100%);
}
.rdv2-hero-content { position: relative; z-index: 1; }
.wv2-page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.wv2-accent { color: #fdb913; }
.wv2-page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ── Brand Dots ── */
.rdv2-heading-dots {
    display: flex;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}
.rdv2-hero .rdv2-heading-dots { justify-content: center; }
.rdv2-heading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.rdv2-hdot-y { background: #fdb913; }
.rdv2-hdot-r { background: #ed174c; }
.rdv2-hdot-p { background: #3d1a6f; }

/* ── Sections ── */
.rdv2-section { padding: 5rem 0; }
.rdv2-section-alt { background: #f8f6fb; }
.rdv2-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #170a29;
    margin-bottom: 0.5rem;
}
.rdv2-section p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

/* ── Service Pills ── */
.rdv2-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.rdv2-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #170a29;
    background: #fff;
    box-shadow: 0 4px 16px rgba(61,26,111,0.1);
}
.rdv2-pill i { font-size: 0.5rem; }
.rdv2-pill-yellow i { color: #fdb913; }
.rdv2-pill-red i { color: #ed174c; }
.rdv2-pill-purple i { color: #3d1a6f; }

/* ── Cards ── */
.rdv2-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(61,26,111,0.08);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rdv2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(61,26,111,0.15);
}
.rdv2-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}
.rdv2-icon-yellow { background: #fdb913; color: #170a29; }
.rdv2-icon-red { background: #ed174c; }
.rdv2-icon-purple { background: #3d1a6f; }
.rdv2-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #170a29;
    margin-bottom: 1rem;
}
.rdv2-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rdv2-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
.rdv2-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fdb913;
    font-size: 0.8rem;
    top: 2px;
}

/* ── CTA ── */
.hv2-cta {
    background: #fdb913;
    color: #170a29;
    padding: 4rem 0;
    text-align: center;
}
.hv2-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.hv2-cta p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}
.hv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-purple:hover { background: #170a29; border-color: #170a29; color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .wv2-page-title { font-size: 2.25rem; }
    .rdv2-section { padding: 3.5rem 0; }
    .rdv2-hero { padding: 7rem 0 4rem; }
}
@media (max-width: 575px) {
    .rdv2-hero { padding: 5rem 0 3rem; }
    .wv2-page-title { font-size: 1.85rem; }
    .rdv2-pill { font-size: 0.85rem; padding: 0.5rem 1rem; }
}
