/*
 * MBA for Working Professionals — Page-Specific Styles
 * Shared design system: srusti-design-system.css (loaded first)
 */

/* ══════════ HERO VISUAL ══════════ */
.mba-wp-visual { position: relative; width: 420px; height: 420px; flex-shrink: 0; }
.mba-wp-circle { width: 100%; height: 100%; background: rgba(55,71,153,0.35); border: 1.5px solid rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: mba-wp-pulse 3s ease-in-out infinite; }
@keyframes mba-wp-pulse { 0%,100%{box-shadow:0 0 0 10px rgba(220,162,0,0.08),0 0 0 22px rgba(220,162,0,0.04);} 50%{box-shadow:0 0 0 18px rgba(220,162,0,0.12),0 0 0 36px rgba(220,162,0,0.06);} }
@media(prefers-reduced-motion:reduce){.mba-wp-circle{animation:none;}}
.mba-wp-circle svg { width: 120px; height: 120px; stroke: var(--gold); }

/* ══════════ PROGRAMME HIGHLIGHTS GRID ══════════ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.hl-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.hl-card-wide { grid-column: 1 / -1; }

.hl-label {
    font-family: "Antonio", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 8px;
}

.hl-value {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}

/* ══════════ ABOUT CONTENT ══════════ */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 15px;
    color: var(--body-gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ══════════ VISION QUOTE CARD (reuses MBA Vision pattern) ══════════ */
.vision-quote-card {
    background: var(--white);
    border-left: 8px solid var(--gold);
    border-radius: 22px;
    padding: 48px 52px;
    box-shadow: 0 8px 48px rgba(55,71,153,0.1);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.vision-quote-card::before {
    content: '\201C';
    font-family: "Anton", sans-serif;
    font-size: 240px;
    color: var(--gold);
    opacity: 0.06;
    position: absolute;
    top: -30px;
    left: 8px;
    line-height: 1;
    pointer-events: none;
}

.vision-statement {
    font-weight: 500;
    font-size: clamp(17px, 2vw, 22px);
    color: var(--navy);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ══════════ MISSION CARDS (reuses MBA Vision pattern) ══════════ */
.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.mission-badge {
    background: var(--gold);
    color: var(--navy);
    font-family: "Antonio", sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    letter-spacing: 1px;
    min-width: 58px;
    text-align: center;
}

.mission-text {
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.6;
    padding-top: 6px;
}

/* ══════════ PEDAGOGY GRID ══════════ */
.ped-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.ped-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.ped-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.ped-card h4 {
    font-family: "Anton", sans-serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 16px;
}

.ped-list {
    list-style: none;
    padding: 0;
}

.ped-list li {
    font-size: 14px;
    color: var(--body-gray);
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ped-list li:last-child { border-bottom: none; }

.ped-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.ped-card-cert {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ped-card-cert p {
    font-size: 15px;
    color: var(--body-gray);
    line-height: 1.7;
}

/* ══════════ CONTACT CARD ══════════ */
.contact-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { width: 24px; height: 24px; }

.contact-body p {
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-body a { color: var(--blue); font-weight: 600; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .ped-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .highlights-grid { grid-template-columns: 1fr; }
    .hl-card-wide { grid-column: auto; }
    .vision-quote-card { padding: 32px 24px; }
    .contact-card { flex-direction: column; align-items: center; text-align: center; }
}
