@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --primary: #1a3c6e;
    --accent: #e8a020;
    --light: #f5f7fa;
    --white: #ffffff;
    --text: #2d3748;
    --muted: #718096;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #1a3c6e 0%, #2d6a9f 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav-brand .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -1px;
}

.nav-brand .brand-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.nav-brand .brand-text span {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .5rem;
    list-style: none;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links a {
    padding: .5rem .85rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--muted);
    transition: all .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--light);
    color: var(--primary);
}

.nav-links a.active {
    font-weight: 600;
}

.nav-cta {
    background: var(--gradient);
    color: white !important;
    padding: .5rem 1.25rem !important;
    border-radius: 8px !important;
    margin-left: .5rem;
}

.nav-cta:hover {
    opacity: .9;
    background: var(--gradient) !important;
    color: white !important;
}

/* ── HERO ── */
.hero {
    background: var(--gradient);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; max-width: 800px; margin: auto; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: .5px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--accent); }

.hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: .8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
    display: inline-block;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }

.btn-outline {
    border: 2px solid rgba(255,255,255,.6);
    color: white;
}

.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--accent);
    padding: 1.5rem 2rem;
}

.stats-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item { text-align: center; color: white; }
.stat-item .num { font-size: 1.8rem; font-weight: 800; display: block; line-height: 1; }
.stat-item .lbl { font-size: .78rem; opacity: .85; font-weight: 500; margin-top: .25rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--light); }

.container { max-width: 1200px; margin: auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-tag {
    display: inline-block;
    background: rgba(26,60,110,.08);
    color: var(--primary);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary);
    margin-bottom: .75rem;
}

.section-header p { color: var(--muted); max-width: 560px; margin: auto; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }

.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,.1); }

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(26,60,110,.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.card p { font-size: .88rem; color: var(--muted); }

/* ── HIGHLIGHT CARD ── */
.highlight-card {
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.highlight-card .big-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.highlight-card p { opacity: .85; margin-top: .5rem; }

/* ── RECRUITER LIST ── */
.recruiter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.recruiter-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    transition: all .2s;
}

.recruiter-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.recruiter-item::before {
    content: '🏫';
    font-size: 1.1rem;
}

/* ── TESTIMONIAL ── */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: .3;
    position: absolute;
    top: .5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: .75rem; }

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

.author-info strong { display: block; font-size: .9rem; color: var(--primary); }
.author-info span { font-size: .78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: .75rem;
    overflow: hidden;
}

.faq-q {
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-size: .92rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background .2s;
}

.faq-q:hover { background: var(--light); }

.faq-q .arrow { transition: transform .3s; font-size: .8rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    font-size: .88rem;
    color: var(--muted);
    background: var(--light);
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 1rem 1.5rem 1.25rem;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}

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

.contact-info-card {
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

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

.contact-detail .info strong { display: block; font-size: .85rem; opacity: .7; margin-bottom: .2rem; }
.contact-detail .info span { font-size: .92rem; }

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.map-card iframe { display: block; width: 100%; height: 320px; border: none; }

.map-note {
    background: white;
    padding: 1rem 1.5rem;
    font-size: .85rem;
    color: var(--muted);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

/* ── ALUMNI GRID ── */
.alumni-name-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.alumni-chip {
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    transition: all .2s;
}

.alumni-chip:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--gradient);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: .75rem;
}

.page-hero p { opacity: .8; font-size: 1rem; }

/* ── FOOTER ── */
footer {
    background: #0f2444;
    color: rgba(255,255,255,.7);
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

.footer-brand strong {
    display: block;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.footer-brand p { font-size: .83rem; line-height: 1.7; }

.footer-col h4 {
    color: white;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .83rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom span { color: var(--accent); }

/* ── PLACEMENT PACKAGE ── */
.package-highlight {
    background: linear-gradient(135deg, #1a3c6e, #e8a020);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.package-highlight .pkg-num {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.package-highlight .pkg-label {
    font-size: 1rem;
    opacity: .85;
    margin-top: .5rem;
}

.placement-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.placement-table th {
    background: var(--primary);
    color: white;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: .85rem;
    font-weight: 600;
}

.placement-table td {
    padding: .9rem 1.25rem;
    font-size: .88rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.placement-table tr:last-child td { border-bottom: none; }
.placement-table tr:hover td { background: var(--light); }

.badge-pkg {
    background: rgba(232,160,32,.15);
    color: #b07a10;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
}

/* ── PROGRAMS LISTING ── */
.programs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.program-row {
    display: flex;
    gap: 2rem;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background .2s;
    align-items: flex-start;
}

.program-row:last-child { border-bottom: none; }
.program-row:hover { background: var(--light); }

.program-row-left {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    min-width: 280px;
    flex-shrink: 0;
}

.program-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
}

.program-row:hover .program-num { color: var(--primary); }

.program-row-left h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .3rem;
}

.program-short {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 400;
}

.program-row-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.program-row-right p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
}

.program-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
}

.admission-strip {
    background: var(--gradient);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: white;
}

.admission-strip strong { display: block; font-size: 1.1rem; margin-bottom: .25rem; }
.admission-strip p { font-size: .88rem; opacity: .85; }

/* ── INDIVIDUAL PROGRAM PAGE ── */
.breadcrumb {
    font-size: .82rem;
    opacity: .7;
    margin-bottom: .75rem;
}

.breadcrumb a { color: white; text-decoration: underline; }

.info-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.info-strip-item {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

.info-strip-item:last-child { border-right: none; }
.info-strip-item span { display: block; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.info-strip-item strong { font-size: .92rem; color: var(--primary); }

.prog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .prog-layout { grid-template-columns: 1fr; }
    .program-row { flex-direction: column; gap: 1rem; }
    .program-row-left { min-width: unset; }
    .info-strip { flex-wrap: wrap; }
    .info-strip-item { min-width: 45%; border-bottom: 1px solid var(--border); }
}

.prog-main { display: flex; flex-direction: column; gap: 2.5rem; }

.prog-block h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--border);
}

.prog-block p { font-size: .92rem; color: var(--text); line-height: 1.8; }

/* Semester list */
.semester-list { display: flex; flex-direction: column; gap: 0; }

.semester-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.semester-item:last-child { border-bottom: none; }

.sem-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    min-width: 90px;
    padding-top: .15rem;
    flex-shrink: 0;
}

.sem-content strong {
    display: block;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: .5rem;
}

.sem-content p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }

.sem-outcome {
    font-size: .82rem;
    color: var(--primary);
    background: rgba(26,60,110,.06);
    padding: .5rem .85rem;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

/* Curriculum table */
.curriculum-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) { .curriculum-table { grid-template-columns: 1fr; } }

.curr-sem-block {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.curr-sem-title {
    background: var(--light);
    padding: .6rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--border);
}

.curr-sem-block ul {
    list-style: none;
    padding: .75rem 1rem;
    margin: 0;
}

.curr-sem-block ul li {
    font-size: .83rem;
    color: var(--text);
    padding: .35rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.curr-sem-block ul li:last-child { border-bottom: none; }

/* Sidebar */
.prog-sidebar { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-block {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
}

.sidebar-block h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--primary);
    margin-bottom: .75rem;
}

.sidebar-block p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block ul li {
    font-size: .83rem;
    color: var(--text);
    padding: .35rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-block ul li:last-child { border-bottom: none; }

.sidebar-apply-btn {
    display: block;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: .9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    transition: opacity .2s;
}

.sidebar-apply-btn:hover { opacity: .9; }

/* ── NAV DROPDOWN / MEGA MENU ── */
.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* Clean CSS chevron arrow */
.drop-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.drop-arrow::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
}

.has-dropdown.open .drop-arrow {
    transform: rotate(180deg);
}

/* Mega menu panel */
.mega-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    z-index: 999;
    height: 0;
    overflow: visible;
}

.has-dropdown.open .mega-menu {
    display: block;
    height: auto;
    overflow: visible;
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1rem 2rem;
}

/* Each program row inside mega menu */
.mega-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background .15s;
    border: 1px solid transparent;
    margin: .25rem;
}

.mega-item:hover {
    background: var(--light);
    border-color: var(--border);
}

/* Left column — program name */
.mega-left {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.mega-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    transition: color .15s;
}

.mega-item:hover .mega-num { color: var(--primary); }

.mega-left strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: .2rem;
}

.mega-left span {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 400;
}

/* Right column — meta info */
.mega-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .3rem .75rem;
    border-left: 1px solid var(--border);
    padding-left: 1.25rem;
}

.mega-meta {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5;
}

.mega-meta span {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--primary);
    opacity: .6;
}

/* Footer strip */
.mega-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: .75rem 2rem 1rem;
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border);
}

.mega-footer a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    transition: opacity .15s;
}

.mega-footer a:hover { opacity: .7; }

/* ── DEAN'S MESSAGE ── */
.dean-section {
    padding: 5rem 2rem;
    background: #0f2444;
    position: relative;
    overflow: hidden;
}

.dean-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232,160,32,.06);
    pointer-events: none;
}

.dean-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(45,106,159,.1);
    pointer-events: none;
}

.dean-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .dean-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Photo column */
.dean-photo-col { display: flex; justify-content: center; }

.dean-photo-wrap {
    position: relative;
    width: 320px;
}

.dean-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.dean-photo-badge {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(232,160,32,.4);
}

.dean-photo-badge strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.3;
}

.dean-photo-badge span {
    font-size: .75rem;
    opacity: .85;
}

/* Message column */
.dean-message-col { color: white; }

.dean-tag {
    display: inline-block;
    background: rgba(232,160,32,.15);
    color: var(--accent);
    border: 1px solid rgba(232,160,32,.3);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dean-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.dean-quote {
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem;
    margin: 0 0 2rem;
    background: rgba(255,255,255,.04);
    border-radius: 0 10px 10px 0;
}

.dean-quote p,
.dean-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,.9);
    line-height: 1.7;
    margin: 0 0 .5rem;
}

.dean-quote cite {
    font-size: .82rem;
    font-style: normal;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-top: .5rem;
}

.dean-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.dean-body p {
    font-size: .92rem;
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.dean-credentials {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    overflow: hidden;
}

.dean-cred-item {
    flex: 1;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center;
}

.dean-cred-item:last-child { border-right: none; }

.dean-cred-item strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: white;
    margin-bottom: .2rem;
}

.dean-cred-item span {
    font-size: .72rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .4px;
}
