/* ═══════════════════════════════════════
   Maa'had Enrollment — Frontend Styles
   All rules scoped inside .maahad-wrap
   to prevent affecting theme header/footer
═══════════════════════════════════════ */

/* BASE WRAP — scoped, does NOT leak out */
.maahad-wrap {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    line-height: 1.5;
}
.maahad-wrap *,
.maahad-wrap *::before,
.maahad-wrap *::after {
    box-sizing: border-box;
}

/* Neutralise any theme styles on common tags INSIDE wrap only */
.maahad-wrap ul  { list-style: none; margin: 0; padding: 0; }
.maahad-wrap a   { text-decoration: none; }
.maahad-wrap img { max-width: 100%; height: auto; display: inline-block; }
.maahad-wrap h1,
.maahad-wrap h2,
.maahad-wrap p   { margin: 0; padding: 0; }

/* ── HERO ── */
.maahad-hero {
    background: #6B1010;
    padding: 64px 5% 56px;
    text-align: center !important;
    border-bottom: 3px solid #C9A84C;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.maahad-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.5);
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.maahad-hero-heading {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px !important;
    text-align: center;
}
.maahad-gold { color: #C9A84C; }
.maahad-hero-sub-wrap {
    width: 100%;
    display: block;
    text-align: center !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
}
.maahad-hero .maahad-hero-sub-wrap .maahad-hero-sub,
.maahad-hero .maahad-hero-sub {
    font-family: 'Lora', 'Georgia', serif !important;
    font-size: clamp(14px, 2vw, 16px) !important;
    color: rgba(255,255,255,0.75) !important;
    max-width: 520px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    line-height: 1.7 !important;
    font-style: italic !important;
    text-align: center !important;
    display: block !important;
    float: none !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}
.maahad-bnpl-banner {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    padding: 12px 20px;
    max-width: 580px;
    margin: 0 auto;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.maahad-bnpl-icon { font-size: 18px; line-height: 1; }

/* ── SCHEDULE BAR ── */
.maahad-schedule-bar {
    background: #111;
    padding: 18px 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.maahad-schedule-item {
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid #2A2A2A;
}
.maahad-schedule-item:last-child { border-right: none; }
.maahad-day {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 12px;
    color: #C9A84C;
    font-weight: 600;
}
.maahad-time { font-size: 11px; color: #888; margin-top: 3px; }

/* ── PROGRAMS SECTION ── */
.maahad-programs { background: #F9F7F4; padding: 70px 5%; }
.maahad-section-label {
    text-align: center;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #8B1A1A;
    margin-bottom: 10px !important;
    font-weight: 600;
    display: block;
}
.maahad-section-title {
    text-align: center;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: clamp(22px, 4vw, 30px);
    color: #111;
    margin: 0 0 8px !important;
}
.maahad-section-sub {
    text-align: center;
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    color: #6B6560;
    font-size: 15px;
    margin-bottom: 48px !important;
    display: block;
}

/* ── CARDS GRID ── */
.maahad-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}
.maahad-card {
    background: #fff;
    border: 1px solid #E0DBD3;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.maahad-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.maahad-featured { border: 2px solid #8B1A1A; box-shadow: 0 4px 20px rgba(139,26,26,.12); }
.maahad-featured:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(139,26,26,.18); }
.maahad-popular-badge {
    background: #8B1A1A;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 7px;
    display: block;
}
.maahad-card-header { background: #F2EFE9; border-bottom: 1px solid #E0DBD3; padding: 22px 22px 18px; }
.maahad-featured .maahad-card-header { background: #FDF5F5; }
.maahad-card-level {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8B1A1A;
    margin-bottom: 6px !important;
    font-weight: 600;
    display: block;
}
.maahad-card-name {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 17px;
    color: #111;
    margin-bottom: 4px !important;
    display: block;
}
.maahad-card-arabic {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-size: 12px;
    color: #6B6560;
    display: block;
}
.maahad-card-price-area { padding: 18px 22px 14px; border-bottom: 1px solid #E0DBD3; }
.maahad-original-price {
    font-size: 12px;
    color: #9A9490;
    text-decoration: line-through;
    margin-bottom: 4px !important;
    display: block;
}
.maahad-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 10px;
}
.maahad-dollar { font-size: 18px; color: #8B1A1A; font-weight: 600; }
.maahad-amount { font-size: 40px; font-weight: 700; color: #111; line-height: 1; }
.maahad-period { font-size: 12px; color: #6B6560; }
.maahad-bnpl-note {
    background: #FFF8EC;
    border: 1px solid #E8D5A0;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 12px;
    color: #7A5F10;
    display: block;
}
.maahad-features {
    padding: 18px 22px !important;
    list-style: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 !important;
}
.maahad-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #1A1A1A;
    line-height: 1.4;
    list-style: none !important;
    padding: 0 !important;
}
.maahad-features li::before { display: none !important; } /* kill theme bullet pseudo-elements */
.maahad-check {
    width: 17px;
    height: 17px;
    min-width: 17px;
    background: #FDF5F5;
    border: 1px solid #8B1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 9px;
    color: #8B1A1A;
    font-weight: 700;
    line-height: 1;
}
.maahad-featured .maahad-check { background: #8B1A1A; color: #fff; }
.maahad-card-footer { padding: 0 22px 22px; }
.maahad-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Cinzel', 'Georgia', serif;
    letter-spacing: .5px;
    transition: all .2s;
    text-align: center;
    text-decoration: none !important;
    line-height: 1.4;
}
.maahad-btn-outline { background: transparent; border: 2px solid #8B1A1A !important; color: #8B1A1A !important; }
.maahad-btn-outline:hover { background: #8B1A1A !important; color: #fff !important; }
.maahad-btn-solid { background: #8B1A1A !important; color: #fff !important; border: 2px solid #8B1A1A !important; }
.maahad-btn-solid:hover { background: #6B1010 !important; border-color: #6B1010 !important; }
.maahad-secure-note { text-align: center; font-size: 11px; color: #9A9490; margin-top: 8px; display: block; }

/* ── HOW IT WORKS ── */
.maahad-how { background: #fff; padding: 70px 5%; border-top: 1px solid #E0DBD3; }
.maahad-steps {
    max-width: 880px;
    margin: 44px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.maahad-step { text-align: center; }
.maahad-step-num {
    width: 52px;
    height: 52px;
    background: #8B1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 14px;
    line-height: 1;
}
.maahad-step-title {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 13px;
    color: #111;
    margin-bottom: 8px !important;
    display: block;
    font-weight: 600;
}
.maahad-step-desc { font-size: 12px; color: #6B6560; line-height: 1.6; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .maahad-cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .maahad-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .maahad-schedule-item { padding: 8px 12px; }
    .maahad-hero { padding: 48px 5% 40px; }
    .maahad-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 400px) {
    .maahad-steps { grid-template-columns: 1fr; }
    .maahad-schedule-item { padding: 8px 8px; }
}
