:root {
    --color-cardinal: #8c1515;
    --color-cardinal-dark: #6e0f0f;
    --color-ink: #141b2d;
    --color-ink-soft: #2d3954;
    --color-cream: #f6f3ed;
    --color-paper: #ffffff;
    --color-border: #e4ded4;
    --shadow-soft: 0 12px 30px rgba(20, 27, 45, 0.1);
    --radius-lg: 20px;
    --radius-md: 12px;
    --space: clamp(16px, 2vw, 24px);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --motion-fast: 220ms;
    --motion-medium: 560ms;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at 90% 4%, rgba(140, 21, 21, 0.1), transparent 42%),
        radial-gradient(circle at 8% 12%, rgba(20, 27, 45, 0.08), transparent 35%),
        var(--color-paper);
    line-height: 1.6;
}

.js-animate body {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--motion-medium) var(--ease-smooth), transform var(--motion-medium) var(--ease-smooth);
}

.js-animate body.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    filter: blur(1px);
    transition:
        opacity var(--motion-medium) var(--ease-smooth),
        transform var(--motion-medium) var(--ease-smooth),
        filter var(--motion-medium) var(--ease-smooth);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js-animate body,
    .js-animate body.is-ready {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

main {
    overflow: hidden;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(20, 27, 45, 0.08);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-ink);
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 10px;
}

.brand span {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    line-height: 1.15;
}

.brand small {
    font-weight: 500;
    color: var(--color-ink-soft);
    font-size: 0.8rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-ink);
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(140, 21, 21, 0.1);
    color: var(--color-cardinal-dark);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    color: var(--color-ink);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-toggle::after {
    content: '\25BE';
    font-size: 0.72rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
    background: rgba(140, 21, 21, 0.1);
    color: var(--color-cardinal-dark);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    padding: 6px;
    display: grid;
    gap: 2px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a {
    display: block;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown:hover .dropdown-toggle::after,
.nav-dropdown:focus-within .dropdown-toggle::after,
.nav-dropdown.is-open .dropdown-toggle::after {
    transform: rotate(180deg);
}

.portal-btn {
    background: var(--color-cardinal);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--color-ink);
}

.hero-slider {
    position: relative;
    min-height: clamp(460px, 73vh, 650px);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.55s ease, transform 0.9s ease;
    overflow: hidden;
}

.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(0.95);
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(20, 27, 45, 0.8), rgba(140, 21, 21, 0.72)),
        repeating-linear-gradient(
            -30deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.08) 3px,
            transparent 3px,
            transparent 26px
        );
}

.slide-content h1,
.slide-content h2,
.slide-content p {
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    min-height: clamp(460px, 73vh, 650px);
    padding: clamp(72px, 12vh, 140px) 0 clamp(68px, 7vh, 92px);
    max-width: 760px;
}

.slide p {
    max-width: 65ch;
    font-size: 1.08rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.section .eyebrow,
.page-hero .eyebrow {
    color: var(--color-cardinal);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-cardinal);
    color: #fff;
    box-shadow: 0 10px 26px rgba(140, 21, 21, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--color-cardinal-dark);
}

.btn-light {
    background: #fff;
    color: var(--color-ink);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

.link-arrow {
    display: inline-block;
    color: var(--color-cardinal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.link-arrow:hover {
    color: var(--color-cardinal-dark);
    transform: translateX(3px);
}

.slider-dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(20, 27, 45, 0.28);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: transform var(--motion-fast) var(--ease-smooth), background var(--motion-fast) var(--ease-smooth);
}

.slider-dots button.is-active {
    background: #fff;
    transform: scale(1.18);
}

.stats-band {
    background: var(--color-ink);
    color: #fff;
    padding: 28px 0;
}

.stats-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 14px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    opacity: 0.65;
    transition: opacity 0.35s ease;
}

.stats-band.is-visible .stat-number {
    opacity: 1;
}

.stats-grid strong {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.president-section {
    background: linear-gradient(180deg, #ffffff, rgba(246, 243, 237, 0.45));
}

.president-grid {
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    gap: 30px;
    align-items: center;
}

.president-photo-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.president-photo {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.president-message {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-soft);
}

.president-signature {
    margin-top: 20px;
    color: var(--color-ink-soft);
}

.campus-life-grid {
    display: grid;
    grid-template-columns: minmax(240px, 420px) 1fr;
    gap: 28px;
    align-items: stretch;
}

.campus-life-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.campus-life-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.campus-life-content {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.campus-life-highlights {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.campus-item {
    background: rgba(246, 243, 237, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 14px;
}

.campus-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.why-video-section {
    background: linear-gradient(180deg, rgba(246, 243, 237, 0.45), #fff);
}

.why-video-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1fr);
    gap: 22px;
    align-items: start;
}

.youtube-card,
.why-choose-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
}

.youtube-card:hover,
.why-choose-card:hover {
    border-color: var(--color-cardinal);
    box-shadow: 0 12px 32px rgba(140, 21, 21, 0.12);
    transform: translateY(-4px);
}

.youtube-card h3,
.why-choose-card h3 {
    color: var(--color-cardinal);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    margin-top: 0;
}

.youtube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0 8px;
}

.youtube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-note {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}

.why-point {
    background: linear-gradient(135deg, rgba(246, 243, 237, 0.8) 0%, rgba(140, 21, 21, 0.03) 100%);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s ease;
}

.why-point:hover {
    background: linear-gradient(135deg, rgba(246, 243, 237, 1) 0%, rgba(140, 21, 21, 0.08) 100%);
    border-color: var(--color-cardinal);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(140, 21, 21, 0.08);
}

.why-point h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--color-cardinal);
    font-weight: 700;
}

.why-point p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-ink-soft);
    line-height: 1.6;
}

.section {
    padding: clamp(56px, 7vw, 96px) 0;
}

.section-tinted {
    background: linear-gradient(180deg, rgba(246, 243, 237, 0.9), #fff);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.split-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.feature-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.news-card,
.callout {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.program-item {
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
    border: 2px solid transparent;
    border-left: 5px solid var(--color-cardinal);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.program-item:hover {
    border-left-color: var(--color-cardinal-dark);
    border-color: var(--color-cardinal);
    box-shadow: 0 12px 32px rgba(140, 21, 21, 0.12);
    transform: translateY(-6px);
    background: linear-gradient(135deg, #ffffff 0%, rgba(140, 21, 21, 0.04) 100%);
}

.program-item h3 {
    color: var(--color-cardinal);
    font-size: 1.15rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.program-item p {
    color: var(--color-ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.program-list {
    display: grid;
    gap: 16px;
}

.programs-intro {
    padding-right: 1.5rem;
}

.programs-intro h2 {
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.programs-intro p {
    color: var(--color-ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.global-partners-section {
    background:
        radial-gradient(circle at 10% 8%, rgba(140, 21, 21, 0.08), transparent 28%),
        radial-gradient(circle at 90% 90%, rgba(20, 27, 45, 0.08), transparent 30%),
        #fff;
}

.partners-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
    background: linear-gradient(160deg, #ffffff 0%, #fbfaf8 100%);
    border: 1px solid rgba(20, 27, 45, 0.1);
    border-top: 4px solid rgba(140, 21, 21, 0.85);
    border-radius: var(--radius-md);
    padding: 22px 22px 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 240ms var(--ease-smooth), box-shadow 240ms var(--ease-smooth), border-color 240ms var(--ease-smooth);
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(140, 21, 21, 0.3);
    box-shadow: 0 18px 32px rgba(20, 27, 45, 0.12);
}

.partner-card h3 {
    margin: 2px 0 0;
    font-size: 1.1rem;
}

.partner-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.partner-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: #fff;
    flex-shrink: 0;
}

.partner-brand h3 {
    margin: 0;
}

.partner-kicker {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cardinal);
    background: rgba(140, 21, 21, 0.1);
    border: 1px solid rgba(140, 21, 21, 0.2);
    border-radius: 999px;
    padding: 3px 9px;
}

.partner-note {
    margin: 0 0 10px;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
}

.partner-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.partner-list li {
    position: relative;
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--color-ink-soft);
    line-height: 1.45;
}

.partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cardinal), var(--color-cardinal-dark));
    box-shadow: 0 0 0 3px rgba(140, 21, 21, 0.12);
}

.partners-cta {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.department-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.department-photo-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.department-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(20, 27, 45, 0.12);
    border-color: rgba(140, 21, 21, 0.35);
}

.department-photo-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    margin-bottom: 0.85rem;
}

.department-photo-card h3 {
    color: var(--color-cardinal);
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
}

.department-photo-card p {
    margin: 0;
    color: var(--color-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.faculty-degree {
    font-style: italic;
    color: rgba(20, 27, 45, 0.75);
    font-size: 0.85rem;
    margin: 0.4rem 0 0.3rem !important;
}

.dean-profile-grid {
    gap: 1.5rem;
}

.dean-profile-card {
    border-top: 4px solid rgba(140, 21, 21, 0.85);
    padding: 1.1rem;
}

.dean-profile-image {
    aspect-ratio: 5 / 4;
    margin-bottom: 0.8rem;
}

.dean-role-badge {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.22rem 0.62rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-cardinal-dark);
    background: rgba(140, 21, 21, 0.1);
    border: 1px solid rgba(140, 21, 21, 0.22);
    border-radius: 999px;
}

.dean-email-link {
    display: inline-block;
    margin-top: 0.55rem;
    color: var(--color-cardinal);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(140, 21, 21, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.dean-email-link:hover,
.dean-email-link:focus-visible {
    color: var(--color-cardinal-dark);
    border-color: var(--color-cardinal-dark);
}

.faculty-department {
    color: rgba(140, 21, 21, 0.7);
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 !important;
}

/* Honor Graduates Gallery */
.honor-graduate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.honor-graduate-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-graduate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(140, 21, 21, 0.15);
}

.honor-graduate-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.honor-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--color-cardinal), rgba(140, 21, 21, 0.8));
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(140, 21, 21, 0.3);
}

.honor-icon {
    display: inline-block;
    font-size: 1rem;
}

.honor-graduate-card h3 {
    margin: 1rem 1rem 0.4rem;
    color: var(--color-cardinal);
    font-size: 0.95rem;
}

.honor-gpa {
    margin: 0 1rem 1rem;
    color: rgba(140, 21, 21, 0.75);
    font-weight: 500;
    font-size: 0.85rem;
}

.testimonial-section {
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    min-height: 270px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--color-cardinal);
    border-radius: 14px;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.testimonial-card.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-quote {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(140, 21, 21, 0.2);
    box-shadow: 0 8px 18px rgba(20, 27, 45, 0.16);
    flex-shrink: 0;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.testimonial-meta strong {
    color: var(--color-cardinal);
    font-size: 1rem;
}

.testimonial-meta span {
    color: var(--color-ink-soft);
    font-size: 0.9rem;
}

.testimonial-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.testimonial-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(20, 27, 45, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dots button.is-active {
    background: var(--color-cardinal);
    transform: scale(1.15);
}

.news-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card .meta {
    margin: 0 0 8px;
    color: var(--color-cardinal);
    font-weight: 700;
    font-size: 0.86rem;
}

.event-list {
    display: grid;
    gap: 16px;
}

.event-list article {
    border-left: 5px solid var(--color-cardinal);
    background: #fff;
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-list article:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(20, 27, 45, 0.1);
}

.event-list article .btn-sm {
    margin-top: 0.75rem;
}

.academic-downloads-section .section-heading {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.academic-downloads-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
}

.academic-downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.academic-download-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2rem;
}

.academic-download-icon {
    font-size: 2.4rem;
    margin-bottom: 0.9rem;
    line-height: 1;
}

.academic-download-item h3 {
    margin-bottom: 0.65rem;
}

.academic-download-item p {
    margin-bottom: 1.2rem;
    max-width: 34ch;
}

.academic-download-item .btn {
    display: inline-block;
    margin-top: auto;
}

@media (max-width: 980px) {
    .academic-downloads-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .academic-downloads-section .section-heading {
        text-align: left;
        max-width: none;
    }

    .academic-downloads-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .academic-download-item {
        align-items: flex-start;
        text-align: left;
        padding: 1.25rem;
    }

    .academic-download-item p {
        max-width: none;
    }
}

.page-hero {
    background:
        linear-gradient(120deg, rgba(20, 27, 45, 0.95), rgba(140, 21, 21, 0.92)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    color: #fff;
    padding: clamp(70px, 14vh, 130px) 0 clamp(40px, 8vh, 74px);
}

@media (hover: none) {
    .feature-card:hover,
    .news-card:hover,
    .callout:hover,
    .department-photo-card:hover,
    .honor-graduate-card:hover,
    .event-list article:hover,
    .program-item:hover,
    .btn:hover,
    .link-arrow:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(1120px, 94%);
    }

    .page-hero {
        padding: 34px 0 22px;
    }

    h1 {
        font-size: clamp(1.75rem, 8vw, 2.15rem);
    }

    h2 {
        font-size: clamp(1.35rem, 6.4vw, 1.7rem);
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-row .btn {
        width: 100%;
    }
}

.page-hero p {
    max-width: 70ch;
}

.about-overview-hero {
    background:
        linear-gradient(120deg, rgba(20, 27, 45, 0.88), rgba(140, 21, 21, 0.82)),
        url('../images/slider2.jpeg') center/cover no-repeat;
}

.office-president-hero {
    background: linear-gradient(120deg, rgba(20, 27, 45, 0.88), rgba(140, 21, 21, 0.82));
}

.office-vice-president-hero {
    background: linear-gradient(120deg, rgba(20, 27, 45, 0.88), rgba(140, 21, 21, 0.82));
}

.history-hero {
    background:
        linear-gradient(120deg, rgba(20, 27, 45, 0.9), rgba(110, 15, 15, 0.83)),
        url('../images/slider3.jpeg') center/cover no-repeat;
}

.about-highlight-band {
    padding-top: 34px;
    padding-bottom: 34px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-stat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding: 18px 14px;
}

.about-stat-card strong {
    display: block;
    color: var(--color-cardinal);
    font-family: 'Merriweather', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-pillar-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.about-timeline {
    display: grid;
    gap: 14px;
}

.about-timeline article {
    background: #fff;
    border-left: 5px solid var(--color-cardinal);
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-soft);
    padding: 14px 18px;
}

.about-timeline h3 {
    margin-bottom: 6px;
}

.about-cta .btn-row {
    justify-content: center;
}

.clean-list {
    margin: 0;
    padding-left: 20px;
}

.clean-list li {
    margin-bottom: 8px;
}

.ordered {
    list-style: decimal;
}

.text-link {
    margin-top: 18px;
    display: inline-block;
    color: var(--color-cardinal);
    text-decoration: none;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #c8c1b6;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.form-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 0.9rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.form-alert-success {
    background: rgba(24, 128, 56, 0.12);
    border: 1px solid rgba(24, 128, 56, 0.32);
    color: #0f5d2a;
}

.form-alert-error {
    background: rgba(140, 21, 21, 0.1);
    border: 1px solid rgba(140, 21, 21, 0.28);
    color: var(--color-cardinal-dark);
}

.contact-hero-actions {
    margin-top: 1.25rem;
}

.contact-visit-actions {
    margin-top: 1rem;
}

.contact-map-wrap {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.contact-map {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

.map-detail-layout {
    margin-top: 1.25rem;
}

.cta {
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(130deg, var(--color-cardinal), var(--color-cardinal-dark));
    color: #fff;
    padding: clamp(56px, 10vw, 88px) 0;
}

.cta-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-inner p {
    max-width: 62ch;
    margin: 0 auto;
}

.cta .btn-row {
    justify-content: center;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    text-align: center;
}

.download-card p {
    max-width: 44ch;
    margin: 0 auto 16px;
}

.history-archive-section {
    background: linear-gradient(180deg, #ffffff, rgba(246, 243, 237, 0.55));
}

.site-footer {
    color: #f6f6f6;
    background: #101722;
    padding-top: 54px;
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.25fr 1fr 1fr;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 12px;
}

.footer-grid a {
    display: block;
    color: #f6f6f6;
    text-decoration: none;
    margin-bottom: 8px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
    padding: 14px;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 83px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 4%;
        opacity: 0;
        transform: translateY(-16px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 12px;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
        padding: 0 0 4px 12px;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: none;
        pointer-events: none;
        transition: max-height 0.2s ease, opacity 0.2s ease;
    }

    .nav-dropdown.is-open .dropdown-menu {
        opacity: 1;
        max-height: 520px;
        pointer-events: auto;
    }

    .dropdown-menu a {
        padding: 10px 12px;
    }

    /* Tablet responsive layout adjustments */
    .hero-slider {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-stats-grid,
    .president-grid,
    .campus-life-grid,
    .about-pillars-grid,
    .why-points-grid,
    .downloads-grid,
    .feature-grid,
    .split-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .why-video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-list {
        gap: 1rem;
    }

    .program-item {
        padding: 1.5rem;
    }

    .programs-intro {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .campus-life-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .department-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-slider {
        max-width: 100%;
        min-height: 300px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Academics Page Enhancements */
.page-hero-academics {
    position: relative;
    overflow: hidden;
}

.page-hero-academics::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.page-hero-academics .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Stats Band */
.about-highlight-band {
    background: linear-gradient(135deg, #f6f3ed 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-highlight-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 21, 21, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.about-stats-grid {
    position: relative;
    z-index: 2;
}

.about-stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(246, 243, 237, 0.8) 100%);
    border-left: 5px solid var(--color-cardinal);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(140, 21, 21, 0.15);
    border-left-color: var(--color-cardinal-dark);
}

.stat-number {
    background: linear-gradient(135deg, var(--color-cardinal) 0%, var(--color-cardinal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--color-ink);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-stat-card p {
    font-size: 0.95rem;
    color: var(--color-ink-soft);
    margin: 0;
}

/* Enhanced Callout Sections */
.callout {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(246, 243, 237, 0.6) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--color-cardinal), rgba(140,21,21,0.2)) 1;
    transition: all 0.35s ease;
    position: relative;
}

.callout:hover {
    background: linear-gradient(135deg, rgba(140, 21, 21, 0.05) 0%, rgba(140, 21, 21, 0.02) 100%);
    transform: translateX(6px);
    box-shadow: var(--shadow-soft);
}

.callout h3 {
    color: var(--color-cardinal);
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.callout p {
    color: var(--color-ink-soft);
    margin: 0;
}

/* Enhanced Download Cards */
.download-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    text-align: center !important;
    box-shadow: 0 8px 24px rgba(20, 27, 45, 0.08) !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cardinal), rgba(140,21,21,0.3));
}

.download-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 24px 48px rgba(140, 21, 21, 0.18) !important;
    border-color: var(--color-cardinal) !important;
}

.download-card h3 {
    color: var(--color-ink);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.download-card p {
    font-size: 0.95rem !important;
    color: var(--color-ink-soft);
    margin-bottom: 1.5rem !important;
}

/* Enhanced Button Styling */
.btn {
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cardinal) 0%, var(--color-cardinal-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(140, 21, 21, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(140, 21, 21, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cardinal);
    border: 2px solid var(--color-cardinal);
}

.btn-secondary:hover {
    background: rgba(140, 21, 21, 0.08);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-cardinal);
    border: 1px solid rgba(140, 21, 21, 0.3);
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-ghost:hover {
    background: rgba(140, 21, 21, 0.05);
    border-color: var(--color-cardinal);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* Enhanced Section Headings */
.section-heading {
    position: relative;
    margin-bottom: 3rem;
}

.section-heading .eyebrow {
    display: inline-block;
    color: var(--color-cardinal);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading h2 {
    background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-cardinal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--color-ink-soft);
    font-size: 1.05rem;
    margin: 0;
}

/* Enhanced Pillar Cards */
.about-pillar-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(246, 243, 237, 0.8) 100%);
    border-left: 4px solid var(--color-cardinal);
    transition: all 0.35s ease;
    position: relative;
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(140, 21, 21, 0.12);
}

.about-pillar-card h3 {
    color: var(--color-cardinal);
    margin-bottom: 12px;
}

.about-pillar-card p {
    color: var(--color-ink-soft);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.6;
}

/* Enhanced CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-cardinal-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.cta p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Section Tinted Background */
.section-tinted {
    background: linear-gradient(135deg, rgba(246, 243, 237, 0.5) 0%, rgba(140, 21, 21, 0.05) 100%);
}

.floating-contact-widget {
    position: fixed;
    right: 18px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-contact-main {
    min-width: 108px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: var(--color-ink);
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(20, 27, 45, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-contact-main:hover,
.floating-contact-main:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 27, 45, 0.26);
    background: var(--color-cardinal);
}

.floating-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease;
}

.floating-contact-widget.is-open .floating-contact-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 220px;
}

.floating-contact-btn {
    min-width: 108px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 10px 24px rgba(20, 27, 45, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 27, 45, 0.26);
}

.floating-contact-btn.email {
    background: #8c1515;
}

.floating-contact-btn.call {
    background: #1f6f4a;
}

.floating-contact-btn.whatsapp {
    background: #25d366;
    color: #0b2a18;
}

.global-whatsapp-float {
    position: fixed;
    left: max(14px, env(safe-area-inset-left));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 998;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-width: 148px;
    padding: 9px 14px 9px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #27d366 0%, #1fb15d 100%);
    color: #ffffff;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 26px rgba(6, 88, 49, 0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.global-whatsapp-float .wa-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1;
}

.global-whatsapp-float .wa-text {
    line-height: 1;
    font-weight: 700;
}

.global-whatsapp-float:hover,
.global-whatsapp-float:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 32px rgba(6, 88, 49, 0.42);
    filter: saturate(1.05);
}

.global-whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
    animation: wa-pulse 2.8s infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.32);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Enhanced News/Program Cards */
.news-card {
    background: linear-gradient(135deg, #ffffff 0%, #f6f3ed 100%);
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 4px solid var(--color-cardinal);
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(140, 21, 21, 0.15);
}

.news-card h3 {
    color: var(--color-cardinal);
    margin-bottom: 12px;
}

.news-card p {
    color: var(--color-ink-soft);
    font-size: 0.98rem;
}

/* Split Layout Enhancement */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.split-layout article {
    position: relative;
}

.split-layout h2 {
    margin-bottom: 20px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-ink-soft);
    line-height: 1.8;
}

.clean-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-cardinal);
    font-weight: bold;
}

.academic-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.academic-framework-section .section-heading {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.academic-framework-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
}

.academic-framework-section .academic-pillars-grid {
    align-items: stretch;
}

.academic-pillar-card {
    border-top: 4px solid rgba(140, 21, 21, 0.2);
    height: 100%;
}

.pillar-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-cardinal);
    background: rgba(140, 21, 21, 0.08);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 10px;
}

.academic-delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.academic-delivery-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    border-top: 4px solid rgba(140, 21, 21, 0.2);
}

.academic-delivery-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.55rem;
    color: var(--color-cardinal);
    font-size: 1.05rem;
}

.academic-delivery-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.delivery-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: rgba(140, 21, 21, 0.08);
    color: var(--color-cardinal);
    border-radius: 999px;
    padding: 5px 10px;
}

.academic-cta-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 720px) {
    /* Mobile responsive layout - comprehensive */

    /* Header and branding */
    .brand small {
        display: none;
    }

    /* Hero and slider sections */
    .page-hero {
        padding: 40px 0 20px;
    }

    .hero-slider {
        min-height: 500px;
        padding-top: 16px;
        padding-bottom: 20px;
    }

    .slide::before {
        background:
            linear-gradient(140deg, rgba(10, 14, 26, 0.9), rgba(140, 21, 21, 0.8)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.38));
    }

    .slide-content {
        min-height: 500px;
        max-width: 100%;
        padding: 52px 0 74px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: clamp(1.45rem, 5.4vw, 1.95rem);
        margin-bottom: 10px;
        line-height: 1.28;
    }

    .slide-content p {
        max-width: 44ch;
        font-size: 0.96rem;
        line-height: 1.6;
        margin-bottom: 10px;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(20, 27, 45, 0.36);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(3px);
    }

    .btn-row {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .slider-dots {
        bottom: 18px;
        gap: 7px;
    }

    .slider-dots button {
        width: 10px;
        height: 10px;
    }

    /* Stats section */
    .stats-band {
        padding: 1.5rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card strong {
        font-size: 1.6rem;
    }

    .stat-card p {
        font-size: 0.85rem;
    }

    /* Section styling */
    .section {
        padding: 1.5rem 0;
    }

    .section-heading {
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .section-heading .eyebrow {
        font-size: 0.75rem;
    }

    .section-heading h2 {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        margin-bottom: 8px;
    }

    .section-heading p {
        font-size: 0.9rem;
    }

    /* President section */
    .president-section {
        padding: 1.5rem 0;
    }

    .president-grid {
        gap: 1.5rem;
    }

    .president-photo-wrap {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    .president-photo-wrap img {
        width: 100%;
        height: auto;
    }

    /* Campus life section */
    .campus-life-grid {
        gap: 1.5rem;
    }

    .campus-life-content article p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .campus-life-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .campus-item {
        padding: 0.75rem;
    }

    .campus-item h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .campus-item p {
        font-size: 0.85rem;
    }

    /* Video and why choose section */
    .why-video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .youtube-card,
    .why-choose-card {
        padding: 1.25rem;
    }

    .youtube-card h3,
    .why-choose-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .youtube-embed {
        aspect-ratio: 16 / 9;
        margin: 0;
    }

    .youtube-embed iframe {
        width: 100%;
        height: auto;
        min-height: 250px;
    }

    .video-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }

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

    .why-point {
        padding: 1rem;
        border-radius: 8px;
        background: #f6f3ed;
    }

    .why-point h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .why-point p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    /* Programs section */
    .split-layout {
        gap: 1.5rem;
    }

    .split-layout h2 {
        margin-bottom: 12px;
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }

    .split-layout p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .program-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .program-item {
        padding: 1.2rem;
        border-left: 4px solid var(--color-cardinal);
    }

    .program-item h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .program-item p {
        font-size: 0.85rem;
    }

    .programs-intro {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .programs-intro h2 {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        margin-bottom: 12px;
    }

    .programs-intro p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .program-list li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }

    .clean-list li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }

    /* Partners section */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-card {
        padding: 1rem;
    }

    .partner-logo {
        width: 46px;
        height: 46px;
    }

    .partner-list {
        gap: 8px;
    }

    .partner-list li {
        font-size: 0.92rem;
    }

    .partner-card .btn-ghost {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* News section */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-slider {
        min-height: 340px;
    }

    .department-photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .department-photo-card {
        padding: 0.9rem;
    }

    .department-photo-card h3 {
        font-size: 1rem;
    }

    .department-photo-card p {
        font-size: 0.85rem;
    }

    .faculty-degree {
        font-size: 0.8rem;
    }

    .faculty-department {
        font-size: 0.8rem;
    }

    .honor-graduate-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .honor-graduate-card h3 {
        font-size: 0.85rem;
    }

    .honor-gpa {
        font-size: 0.75rem;
    }

    .honor-badge {
        padding: 5px 9px;
        font-size: 0.7rem;
    }

    .honor-icon {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.15rem;
        border-left-width: 4px;
    }

    .testimonial-person {
        gap: 0.7rem;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
        border-width: 2px;
    }

    .testimonial-quote {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .testimonial-meta strong {
        font-size: 0.95rem;
    }

    .testimonial-meta span {
        font-size: 0.82rem;
    }

    .testimonial-dots {
        bottom: 10px;
        gap: 7px;
    }

    .testimonial-dots button {
        width: 8px;
        height: 8px;
    }

    .news-card {
        padding: 1rem;
    }

    .news-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .news-card p {
        font-size: 0.85rem;
    }

    /* Downloads section */
    .downloads-grid,
    .academic-downloads-grid {
        gap: 1rem;
    }

    .download-card,
    .academic-download-item {
        padding: 1.2rem;
    }

    .download-card h3,
    .academic-download-item h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .download-card p,
    .academic-download-item p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .academic-download-icon {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    /* Pillar section */
    .academic-framework-section .section-heading {
        text-align: left;
        max-width: none;
    }

    .academic-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .academic-pillar-card {
        padding: 1rem;
    }

    .academic-pillar-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .academic-pillar-card p {
        font-size: 0.85rem;
    }

    .pillar-kicker {
        font-size: 0.65rem;
        padding: 4px 8px;
        margin-bottom: 8px;
    }

    .academic-delivery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .academic-delivery-card {
        padding: 1rem;
    }

    .academic-delivery-card h3 {
        font-size: 1rem;
    }

    .academic-delivery-card p {
        font-size: 0.85rem;
    }

    .academic-cta-actions {
        flex-direction: column;
    }

    .academic-cta-actions .btn {
        width: 100%;
    }

    /* Contact and form elements */
    .contact-form {
        gap: 8px;
    }

    .contact-form label {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px;
        font-size: 1rem;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .contact-form .btn {
        margin-top: 0.5rem;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-hero-actions,
    .contact-visit-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero-actions .btn,
    .contact-visit-actions .btn {
        width: 100%;
    }

    /* Event list */
    .event-list {
        gap: 1rem;
    }

    .event-list article {
        padding: 1rem;
        border-radius: 0 8px 8px 0;
    }

    .event-list article h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .event-list article p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    /* Feature cards */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .link-arrow {
        font-size: 0.85rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Callout sections */
    .callout {
        padding: 1.5rem;
    }

    .callout h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .callout p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    .cta {
        padding: 2rem 0;
    }

    .cta .container {
        padding: 1rem;
    }

    .cta h2 {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        margin-bottom: 10px;
    }

    .cta p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta .btn-row {
        flex-direction: column;
        gap: 0.6rem;
    }

    .cta .btn {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }

    .floating-contact-widget {
        right: 14px;
        bottom: 14px;
    }

    .global-whatsapp-float {
        left: max(12px, env(safe-area-inset-left));
        bottom: max(12px, env(safe-area-inset-bottom));
        min-width: 136px;
        padding: 8px 12px 8px 8px;
        font-size: 0.79rem;
    }

    .global-whatsapp-float .wa-icon {
        width: 28px;
        height: 28px;
        font-size: 0.95rem;
    }

    .floating-contact-main {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 0.82rem;
    }

    .footer-col {
        margin-bottom: 1rem;
    }

    .footer-col h3 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer-col a {
        font-size: 0.85rem;
        display: block;
        margin-bottom: 6px;
    }

    .floating-contact-widget {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }

    .global-whatsapp-float {
        left: max(10px, env(safe-area-inset-left));
        bottom: max(10px, env(safe-area-inset-bottom));
        width: 54px;
        min-width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 999px;
    }

    .global-whatsapp-float .wa-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .global-whatsapp-float .wa-text {
        display: none;
    }

    .floating-contact-actions {
        gap: 8px;
    }

    .floating-contact-main,
    .floating-contact-btn {
        min-width: 92px;
        padding: 9px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider,
    .slide-content {
        min-height: 460px;
    }

    .slide-content {
        padding: 44px 0 68px;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: clamp(1.32rem, 6.3vw, 1.72rem);
    }

    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.56;
        padding: 9px 10px;
    }
}
