/* ============================================================
   UV PLAY KIDS SCHOOL — INNER PAGES CSS v2.0
   Professional | Tight | Premium
   ============================================================ */

/* ===== LEADERSHIP / CHAIRMAN & DIRECTOR MESSAGE ===== */
.leadership-section {
    position: relative;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.leader-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.leader-card-inner {
    padding: 28px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Big decorative quote mark */
.leader-quote-icon {
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
    font-weight: 900;
}

/* Leader top: avatar + name */
.leader-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.leader-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.chairman-avatar {
    background: linear-gradient(135deg, #b8860b, #fbbf24, #f59e0b);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.35);
    border: 2px solid rgba(251, 191, 36, 0.5);
}

.director-avatar {
    background: linear-gradient(135deg, #5b21b6, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.leader-avatar-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.leader-card:hover .leader-avatar-glow {
    opacity: 0.6;
}

.leader-meta {
    flex: 1;
}

.leader-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.chairman-badge {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.director-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
}

.leader-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 2px;
}

.leader-title {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Message blockquote */
.leader-message {
    flex: 1;
    margin: 0 0 28px;
    border: none;
    padding: 0;
}

.leader-message p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 12px;
}

.leader-message p:last-child {
    margin-bottom: 0;
}

/* Signature */
.leader-signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.signature-line {
    height: 2px;
    width: 60px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.chairman-line {
    background: linear-gradient(90deg, #fbbf24, transparent);
}

.director-line {
    background: linear-gradient(90deg, #8b5cf6, transparent);
}

.signature-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

.signature-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card background glow */
.leader-card-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s;
}

.leader-card:hover .leader-card-glow {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .leader-card-inner {
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .leader-top {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .leader-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .leader-quote-icon {
        font-size: 6rem;
    }

    .leader-card-inner {
        padding: 24px 20px;
    }
}


/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 72px) 0 72px;
    background: var(--blue-950);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-breadcrumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.page-breadcrumb a {
    color: var(--gold-400);
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--gold-300);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--white);
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.admission-open-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 18px;
}

/* ===== MVV GRID (Mission/Vision/Values) ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mvv-card {
    padding: 36px 28px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 166, 35, 0.25);
}

.mvv-featured {
    background: linear-gradient(160deg, rgba(27, 42, 138, 0.4), rgba(124, 58, 237, 0.12));
    border-color: rgba(124, 58, 237, 0.25);
}

.mvv-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ===== STORY GRID ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-img-stack {
    position: relative;
}

.sis-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}

.sis-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sis-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.sis-float strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.sis-float small {
    font-size: 0.7rem;
    color: var(--gold-400);
    font-weight: 600;
}

.story-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 14px;
}

.story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 28px;
}

.sh-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
}

.sh-item span {
    color: var(--green-400);
}

/* ===== NUMBERS GRID ===== */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.num-card {
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.num-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.25);
}

.num-icon {
    font-size: 2rem;
}

.num-val {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.num-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===== WHY GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 28px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: rgba(245, 166, 35, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-8deg);
}

.why-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #05112e 0%, #0e2a65 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PROGRAM DETAIL CARDS ===== */
.prog-detail-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.prog-detail-card {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.prog-detail-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-md);
}

.pdc-featured {
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(27, 42, 138, 0.2));
    border-color: rgba(124, 58, 237, 0.2);
}

.pdc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue-900);
    background: var(--gradient-gold);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
}

.pdc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.pdc-reverse {
    direction: rtl;
}

.pdc-reverse>* {
    direction: ltr;
}

.pdc-age {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pdc-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
}

.pdc-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin-bottom: 20px;
}

.pdc-subjects,
.pdc-outcomes {
    margin-bottom: 18px;
}

.pdc-subjects h4,
.pdc-outcomes h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subject-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pdc-outcomes ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdc-outcomes li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.pdc-outcomes li::before {
    content: '✓';
    color: var(--green-400);
    font-weight: 900;
    font-size: 0.7rem;
}

.pdc-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/4;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    position: relative;
    margin-bottom: 14px;
    transition: transform 0.4s ease;
}

.pdc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdc-img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 5px 12px;
    background: rgba(2, 9, 23, 0.85);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
}

.pdc-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.psm-item {
    text-align: center;
    padding: 12px 8px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.psm-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--gold-400);
}

.psm-item span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

/* ===== PHILOSOPHY GRID ===== */
.philo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.philo-card {
    padding: 28px 20px;
    text-align: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.philo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.2);
}

.philo-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.philo-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.philo-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== FACILITIES DETAIL ===== */
.fac-detail-card {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--glass-border);
}

.fac-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.fdc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.fdc-reverse {
    direction: rtl;
}

.fdc-reverse>* {
    direction: ltr;
}

.fac-big-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.fdc-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: transform 0.4s ease;
}

.fdc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fdc-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.fdc-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0;
}

.fdc-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
    margin: 14px 0 20px;
}

.fdc-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.fdc-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 14px;
    background: var(--glass-white);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.fdc-feat:hover {
    border-color: rgba(245, 166, 35, 0.25);
    background: rgba(245, 166, 35, 0.04);
}

.fdc-feat span {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fdc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ALL FACILITIES GRID */
.all-fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.all-fac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.all-fac-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 166, 35, 0.25);
    box-shadow: var(--shadow-sm);
}

.afi-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.all-fac-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.all-fac-item p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

/* ===== ADMISSION PAGE ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
}

.proc-step {
    text-align: center;
    padding: 28px 18px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

.proc-step:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: var(--shadow-sm);
}

.proc-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.proc-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.proc-step h3 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 8px;
}

.proc-step p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.proc-arrow {
    display: none;
}

.admission-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: start;
}

.adm-form-wrap {
    width: 100%;
}

.adm-form-header {
    margin-bottom: 28px;
}

.adm-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.adm-form-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.adm-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.adm-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.adm-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.adm-sidebar-card {
    padding: 24px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.adm-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.docs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.docs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.docs-list li span {
    font-size: 1rem;
    flex-shrink: 0;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.oli-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-list-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 3px;
}

.offer-list-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.quick-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qc-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.qc-btn:hover {
    background: rgba(245, 166, 35, 0.08);
    border-color: rgba(245, 166, 35, 0.25);
    transform: translateX(4px);
}

.qc-btn strong {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
}

/* ===== CONTACT PAGE ===== */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contact-card {
    padding: 28px;
    text-align: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 166, 35, 0.2);
    box-shadow: var(--shadow-sm);
}

.cc-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cc-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 6px;
}

.cc-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-400);
    font-family: var(--font-heading);
    transition: var(--transition);
}

.cc-link:hover {
    color: var(--gold-300);
}

.cc-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.cc-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 8px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.hl-item {
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.hl-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.hl-item strong {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.map-card {
    padding: 28px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(9, 29, 74, 0.6), rgba(14, 42, 101, 0.4));
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    border: 1px dashed rgba(245, 166, 35, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.map-dot {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.map-label strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px;
}

.map-label span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-card {
    padding: 24px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.social-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.social-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.slg-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.slg-btn:hover {
    transform: translateY(-2px);
}

.slg-fb {
    background: rgba(24, 119, 242, 0.15);
    border: 1px solid rgba(24, 119, 242, 0.25);
}

.slg-ig {
    background: rgba(228, 64, 95, 0.15);
    border: 1px solid rgba(228, 64, 95, 0.25);
}

.slg-yt {
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.slg-wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.faq-card {
    padding: 24px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.faq-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: 3px;
}

.faq-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ===== GALLERY PAGE ===== */
.gallery-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.gf-btn {
    padding: 9px 20px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    font-family: var(--font-body);
    cursor: pointer;
}

.gf-btn:hover,
.gf-btn.active {
    background: var(--gradient-gold);
    border-color: var(--gold-500);
    color: var(--blue-900);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img-stack {
        display: none;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdc-grid {
        grid-template-columns: 1fr;
    }

    .philo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fdc-grid {
        grid-template-columns: 1fr;
    }

    .all-fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .admission-layout {
        grid-template-columns: 1fr;
    }

    .adm-sidebar {
        position: static;
    }

    .contact-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.2rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .philo-grid {
        grid-template-columns: 1fr;
    }

    .all-fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-row {
        grid-template-columns: 1fr;
    }

    .prog-detail-card {
        padding: 24px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .all-fac-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .pdc-stats-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================================
   ADDITIONAL PAGE STYLES — About / Programs / Facilities / Gallery
   ================================================================ */

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb a {
    color: var(--gold-400);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold-300);
}

.breadcrumb span:not(a) {
    color: rgba(255, 255, 255, 0.25);
}

/* ===== MISSION / VISION / VALUES ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.mvv-card {
    padding: 36px 28px;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-4px);
}

.mvv-featured {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
}

.mvv-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ===== ABOUT STORY GRID ===== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-story-imgs {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    z-index: 2;
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), transparent);
    border-radius: var(--radius-2xl);
}

.story-img-side {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 52%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.06);
    z-index: 3;
    aspect-ratio: 4/3;
}

.story-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 8px;
    text-align: center;
}

.story-float-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    z-index: 4;
    white-space: nowrap;
}

.story-float-badge strong {
    display: block;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
}

.story-float-badge small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.story-text p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.story-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
}

.story-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ===== WHY CHOOSE US GRID ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-card {
    padding: 24px 20px;
    border-radius: var(--radius-2xl);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== PROGRAMS DETAIL CARDS ===== */
.prog-detail-card {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 40px;
    margin-bottom: 28px;
    overflow: hidden;
    transition: var(--transition);
}

.prog-detail-card:hover {
    transform: translateY(-3px);
}

.prog-detail-featured {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.2);
}

.prog-detail-popular {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-400);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.prog-detail-inner {
    display: flex;
    gap: 52px;
    align-items: center;
}

.prog-detail-visual {
    flex-shrink: 0;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.prog-detail-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
}

.prog-big-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.prog-age-badge {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.prog-subtitle-tag {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.prog-detail-content {
    flex: 1;
}

.prog-detail-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.prog-detail-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.prog-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.prog-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.prog-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.prog-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.prog-glow-effect {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.12;
    pointer-events: none;
}

/* ===== EXAM PREP ===== */
.exam-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.exam-card {
    padding: 32px;
    border-radius: var(--radius-2xl);
    transition: var(--transition);
}

.exam-card:hover {
    transform: translateY(-4px);
}

.exam-icon {
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.exam-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.exam-list {
    list-style: none;
    margin-top: 16px;
}

.exam-list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.exam-list li::before {
    content: "✓  ";
    color: var(--green-400);
    font-weight: 800;
}

.exam-list li:last-child {
    border-bottom: none;
}

/* ===== FACILITIES DETAIL ===== */
.fac-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fac-detail-card {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 32px 28px 28px;
    overflow: hidden;
    transition: var(--transition);
}

.fac-detail-card:hover {
    transform: translateY(-4px);
}

.fac-detail-card:hover .fac-detail-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.fac-detail-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.fac-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.fac-detail-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.fac-detail-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

.fac-detail-arrow {
    margin-top: 18px;
    font-size: 1.2rem;
    color: var(--gold-400);
    opacity: 0;
    transition: all 0.3s;
    display: block;
}

.fac-detail-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.1;
    pointer-events: none;
}

/* ===== SAFETY SECTION ===== */
.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.safety-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 0;
}

.safety-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.safety-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.safety-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.safety-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.safety-img-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: visible;
}

.safety-img-wrap img {
    width: 100%;
    border-radius: var(--radius-2xl);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.safety-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(2, 9, 23, 0.5));
    border-radius: var(--radius-2xl);
}

.safety-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
}

.safety-badge strong {
    display: block;
    font-weight: 800;
    color: #fff;
    font-size: 0.88rem;
}

.safety-badge small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FAC STATS BAR ===== */
.fac-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 32px 40px;
    border-radius: var(--radius-2xl);
}

.fac-stat {
    text-align: center;
}

.fac-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1;
}

.fac-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    margin-top: 6px;
}

.fac-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
}

/* ===== CONTACT CARDS GRID ===== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.contact-card {
    padding: 28px 22px;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.contact-card-link {
    display: block;
    color: var(--gold-400);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.contact-card-link:hover {
    color: var(--gold-300);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    color: rgba(255, 255, 255, 0.5);
}

.hours-row strong {
    color: #fff;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
}

.contact-form-wrap {
    padding: 36px;
    border-radius: var(--radius-2xl);
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.qc-item:hover {
    color: var(--gold-400);
}

.qc-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== ADMISSION PAGE ===== */
.admission-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 0;
}

.adm-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
}

.adm-highlight strong {
    display: block;
    font-weight: 800;
    font-size: 0.88rem;
    color: #fff;
}

.adm-highlight small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
}

.admission-form-wrap {
    padding: 40px;
    border-radius: var(--radius-2xl);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.form-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 6px;
}

.form-section {
    margin-bottom: 32px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-success {
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ade80;
}

.form-error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    color: #f87171;
}

.form-submit-area {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.req {
    color: var(--red-400);
}

.text-gold {
    color: var(--gold-400);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 14px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exam-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fac-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admission-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-img-side {
        display: none;
    }

    .story-float-badge {
        display: none;
    }
}

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

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .exam-cards-grid {
        grid-template-columns: 1fr;
    }

    .fac-detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fac-stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px;
    }

    .fac-stat-divider {
        display: none;
    }

    .prog-detail-inner {
        flex-direction: column !important;
        gap: 24px;
    }

    .prog-detail-visual {
        width: 100%;
    }

    .prog-features-grid {
        grid-template-columns: 1fr;
    }

    .admission-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .admission-form-wrap {
        padding: 24px;
    }

    .safety-features {
        grid-template-columns: 1fr;
    }
}

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

    .fac-detail-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .admission-highlights {
        grid-template-columns: 1fr;
    }

    .form-submit-area {
        flex-direction: column;
    }

    .form-submit-area .btn {
        width: 100%;
        justify-content: center;
    }
}