/**
 * Universitas ASA Indonesia (ASAINDO)
 * Main Stylesheet - Global Theme & Layout
 */

:root {
    --red: #980d18;
    --red2: #c51f3b;
    --blue: #205894;
    --navy: #083b70;
    --paper: #f6f5f0;
    --text: #333;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.wrap {
    width: min(1180px, calc(100% - 46px));
    margin: auto;
}

/* =========================================
   TOP MINI BAR
   ========================================= */
.mini {
    height: 38px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
}

.mini .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 2px;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
}

.social-icon svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-1.5px) scale(1.15);
}

.social-icon:hover svg {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.45));
}

/* =========================================
   MAIN NAVIGATION & LOGO
   ========================================= */
.main-nav {
    height: 76px;
    background: #980d18;
    border-bottom: 4px solid var(--navy);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease, 
                border-color 0.4s ease,
                border-radius 0.35s ease;
}

.main-nav .wrap {
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.main-nav .logo {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: -38px;
    transform: translateX(-50%) translateY(0) translateZ(0);
    width: 134px;
    height: 158px;
    padding: 14px 6px 20px;
    background: #fff;
    border: 1px solid #c7c7c7;
    border-top: none;
    border-radius: 0 0 67px 67px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 3px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    will-change: padding, box-shadow;
}

.crest {
    width: 106px;
    height: 116px;
    object-fit: contain;
    display: block;
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    will-change: width, height;
}

.logo strong {
    color: var(--blue);
    font-size: 17px;
    font-weight: 800;
    display: block;
    letter-spacing: 0;
}

.logo small {
    color: #777;
    font-size: 8px;
    letter-spacing: .7px;
    text-transform: uppercase;
    text-align: center;
}

.nav-left, .links {
    position: absolute;
    top: 0;
    display: flex;
    height: 100%;
    align-items: center;
    gap: 44px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2px;
}

.nav-left {
    left: 0;
}

.links {
    right: 0;
}

.nav-left .nav-dokumen {
    margin-left: 56px;
}

.links .nav-penelitian {
    margin-right: 56px;
}

.nav-left a, .links a {
    height: 100%;
    display: grid;
    place-items: center;
    text-decoration: none;
    transition: color .2s ease;
}

.nav-left a:hover, .links a:hover {
    color: #60a5fa;
    text-decoration: none;
}

.apply {
    color: #fff !important;
    background: transparent;
    height: 100% !important;
    padding: 0 !important;
    border-radius: 0;
}

.main-nav .logo .logo-text {
    display: none;
}

.mobile-nav-dropdown,
.mobile-nav-backdrop,
.mobile-only-link {
    display: none !important;
}

.hamb {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10001;
}

.hamb-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================
   HERO STATIC FALLBACK (JIKA TIDAK MENGGUNAKAN SLIDER)
   ========================================= */
.hero {
    height: 500px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1800&q=88') center 54%/cover;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #083b70b8, #083b7020 65%, #00000008);
}

.hero-copy {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-top: 80px;
    max-width: 590px;
}

.hero-copy h1 {
    font-size: 42px;
    line-height: 1.08;
    margin: 10px 0 14px;
    font-weight: 900;
    letter-spacing: -1.3px;
}

.hero-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    max-width: 500px;
}

.hero-label {
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.7px;
    font-size: 12px;
    opacity: .92;
}

/* =========================================
   QUICK LINKS SECTION
   ========================================= */
.quick {
    position: relative;
    z-index: 3;
    margin-top: -102px;
    background: linear-gradient(to bottom, transparent 102px, #105296 102px);
}

.quick .wrap {
    width: min(88%, 930px);
    margin: 0 auto;
    background: #980d18;
    border-radius: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
    overflow: hidden;
}

.quick a {
    min-height: 146px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    border: 0;
    text-align: center;
    padding: 22px 16px;
    transition: background .2s, transform .2s ease;
}

.quick a:hover {
    background: rgba(0, 0, 0, .12);
}

.quick a:last-child {
    border: 0;
}

.qicon {
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: transparent;
    flex: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), filter .25s ease;
}

.quick a:hover .qicon {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.qicon svg {
    width: 48px;
    height: 48px;
    stroke: #ffffff;
    color: #ffffff;
    stroke-width: 1.8;
}

.quick b {
    display: block;
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.28;
    text-align: center;
    letter-spacing: .2px;
    color: #ffffff;
}

/* =========================================
   LEGACY SLOGAN FALLBACK
   ========================================= */
.slogan {
    width: 100%;
    position: relative;
    z-index: 1;
    background: #105296;
    color: #fff;
    margin-top: -18px;
    padding: 92px 0 120px;
    text-align: center;
}

.slogan p {
    margin: 0;
    font-weight: 700;
    font-size: 23px;
    letter-spacing: .2px;
}

/* =========================================
   GENERIC SECTIONS & HEADINGS
   ========================================= */
.section {
    padding: 42px 0;
}

.section-title {
    text-align: center;
    color: var(--blue);
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 19px;
    letter-spacing: .2px;
}

.section-title:after {
    content: "";
    display: block;
    background: var(--red);
    height: 3px;
    width: 42px;
    margin: 8px auto 0;
}

#akademik {
    padding: 68px 0 54px;
}

#akademik .section-title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 52px;
}

#akademik .section-title:after {
    width: 58px;
    height: 4px;
    margin-top: 12px;
}

/* =========================================
   UNIVERSITY VALUES (A-S-A)
   ========================================= */
.asa-values {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 auto 58px;
}

.asa-box {
    width: 250px;
    height: 225px;
    border-radius: 36px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 165px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 -12px 0 #0e467f, 0 16px 36px rgba(32, 88, 148, .2);
    cursor: pointer;
    user-select: none;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), background .25s ease, color .25s ease, box-shadow .25s ease;
}

.asa-box:hover {
    background: #980d18;
    color: #fff;
    box-shadow: inset 0 -12px 0 #6d0710, 0 20px 45px rgba(152, 13, 24, .28);
    transform: translateY(-10px) scale(1.03);
}

@media(max-width: 960px) {
    .asa-values {
        gap: 20px;
    }
    .asa-box {
        width: 180px;
        height: 165px;
        border-radius: 26px;
        font-size: 120px;
        box-shadow: inset 0 -8px 0 #0e467f;
    }
    .asa-box:hover {
        box-shadow: inset 0 -8px 0 #6d0710, 0 16px 30px rgba(152, 13, 24, .25);
    }
}

/* =========================================
   ABOUT DECORATIVE DIVIDER
   ========================================= */
.about-divider {
    margin: 68px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 920px;
}

.decor-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d6d0c0 40%, #b8ae9c);
    border-radius: 2px;
}

.decor-line.right {
    background: linear-gradient(90deg, #b8ae9c, #d6d0c0 60%, transparent);
}

.decor-diamond {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    flex: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}

.decor-diamond.red {
    background: var(--red);
}

.decor-diamond.blue {
    background: var(--blue);
}

.decor-medallion {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 14px rgba(32, 88, 148, .12);
    display: grid;
    place-items: center;
    flex: none;
    position: relative;
}

.decor-medallion:before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1px dashed var(--red);
}

.medallion-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

/* =========================================
   ABOUT SECTION & PILLARS
   ========================================= */
.about {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    align-items: center;
    gap: 58px;
}

.about-media {
    position: relative;
}

.about-photo {
    height: 370px;
    border-radius: 20px;
    background: url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=900&q=88') center/cover;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    border: 4px solid #fff;
}

.about-stat-card {
    position: absolute;
    bottom: -18px;
    right: -12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .13);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ebe7df;
}

.stat-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eaf5ea;
    color: #2e7d32;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 900;
    flex: none;
}

.about-stat-card strong {
    display: block;
    font-size: 13px;
    color: #222;
    font-weight: 800;
    line-height: 1.2;
}

.about-stat-card small {
    font-size: 10px;
    color: #777;
    font-weight: 600;
}

.about-badge {
    display: inline-block;
    background: rgba(32, 88, 148, .1);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.about h2 {
    color: var(--red);
    font-size: 30px;
    margin: 0 0 14px;
    font-weight: 900;
    line-height: 1.25;
}

.about h2 span {
    color: var(--blue);
}

.about-lead {
    color: #555;
    font-size: 13.5px;
    line-height: 1.75;
    margin: 0 0 20px;
}

.about-pillars {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.pillar-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    border: 1.5px solid #ece7dd;
    transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .28s ease, border-color .28s ease;
    position: relative;
    overflow: hidden;
}

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

.pillar-card.pillar-red:hover {
    border-color: rgba(152, 13, 24, 0.35);
    box-shadow: 0 14px 32px rgba(152, 13, 24, 0.12);
}

.pillar-card.pillar-blue:hover {
    border-color: rgba(32, 88, 148, 0.35);
    box-shadow: 0 14px 32px rgba(32, 88, 148, 0.12);
}

/* Icon Badge Container */
.pillar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pillar-card:hover .pillar-icon-box {
    transform: scale(1.08);
}

.pillar-red .pillar-icon-box {
    background: linear-gradient(135deg, rgba(152, 13, 24, 0.08) 0%, rgba(197, 31, 59, 0.16) 100%);
    color: var(--red);
    border: 1.5px solid rgba(152, 13, 24, 0.22);
    box-shadow: 0 4px 14px rgba(152, 13, 24, 0.1);
}

.pillar-blue .pillar-icon-box {
    background: linear-gradient(135deg, rgba(32, 88, 148, 0.08) 0%, rgba(14, 75, 143, 0.16) 100%);
    color: var(--blue);
    border: 1.5px solid rgba(32, 88, 148, 0.22);
    box-shadow: 0 4px 14px rgba(32, 88, 148, 0.1);
}

.pillar-icon-box svg {
    width: 26px;
    height: 26px;
}

.pillar-body {
    flex: 1;
}

.pillar-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
    padding: 3px 8px;
    border-radius: 6px;
}

.pillar-red .pillar-eyebrow {
    color: var(--red);
    background: rgba(152, 13, 24, 0.07);
}

.pillar-blue .pillar-eyebrow {
    color: var(--blue);
    background: rgba(32, 88, 148, 0.07);
}

.pillar-title {
    font-size: 17px;
    font-weight: 800;
    margin: 2px 0 6px;
    color: #1e293b;
    letter-spacing: -0.2px;
}

.pillar-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #64748b;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: var(--red);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(152, 13, 24, .3);
    transition: all .2s ease;
}

.about-cta:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 59, 112, .3);
}

/* =========================================
   NUMBERS STATS SECTION (Style Minimalist Divider)
   ========================================= */
.numbers {
    background: linear-gradient(135deg, #780812 0%, #900c17 45%, #083b70 100%);
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.numbers:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
                radial-gradient(circle at 82% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    transition: transform .25s ease;
}

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

/* Elegant vertical divider line between stats */
.stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.05) 100%);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
}

.stat-icon svg {
    width: 25px;
    height: 25px;
    stroke: #ffffff;
    color: #ffffff;
}

.stat-info {
    min-width: 0;
}

.stat-val {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.5px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.stat-plus {
    color: #ffd166;
    font-weight: 900;
    margin-left: 2px;
}

.stat-label {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* =========================================
   NEWS SECTION
   ========================================= */
.news {
    padding: 64px 0 58px;
}

.section-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 34px;
}

.section-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.section-row h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -.4px;
}

.section-row h2 span {
    color: var(--blue);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    padding: 8px 18px;
    border: 1.5px solid var(--blue);
    border-radius: 24px;
    transition: all .2s ease;
    text-decoration: none;
}

.view-all-link:hover {
    background: var(--blue);
    color: #fff;
    transform: translateX(2px);
}

.view-all-link svg {
    width: 14px;
    height: 14px;
}

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

.news-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e7e2d6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 59, 112, 0.12);
    border-color: rgba(32, 88, 148, 0.3);
}

.news-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #ded8cc;
}

.news-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.news-card:hover .news-img {
    transform: scale(1.07);
}

.news-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tag-blue {
    background: rgba(32, 88, 148, 0.92);
}

.tag-red {
    background: rgba(152, 13, 24, 0.92);
}

.news-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #8c8577;
    margin-bottom: 10px;
}

.news-meta svg {
    width: 13px;
    height: 13px;
    color: var(--red);
    flex: none;
}

.news-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin: 0 0 10px;
    transition: color .2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .news-title {
    color: var(--blue);
}

.news-excerpt {
    font-size: 12.5px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    border-top: 1px solid #f1ede6;
    padding-top: 14px;
    margin-top: auto;
}

.news-link {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s ease, transform .2s ease;
}

.news-link svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.news-card:hover .news-link {
    color: var(--red);
}

.news-card:hover .news-link svg {
    transform: translateX(4px);
}

/* =========================================
   AGENDA & CALENDAR SECTION
   ========================================= */
.agenda {
    background: var(--paper);
    padding: 68px 0 64px;
}

.agenda-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
}

.agenda-calendar-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 84px;
}

.calendar-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e7e2d6;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1ece4;
}

.cal-subtitle {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 2px;
}

.cal-month {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -.2px;
}

.cal-nav {
    display: flex;
    gap: 6px;
}

.cal-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all .2s;
}

.cal-nav-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-day-name {
    font-size: 10.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    padding: 6px 0;
}

.cal-date {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    padding: 8px 0;
    border-radius: 10px;
    display: grid;
    place-items: center;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.cal-date:hover {
    background: #f1f5f9;
    color: var(--blue);
}

.cal-date.muted {
    color: #cbd5e1;
    cursor: default;
}

.cal-date.muted:hover {
    background: transparent;
    color: #cbd5e1;
}

.cal-date.weekend {
    color: #e11d48;
}

.cal-date.has-event:after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.cal-date.has-event.blue:after {
    background: var(--blue);
}

.cal-date.has-event.red:after {
    background: var(--red);
}

.cal-date.has-event.active {
    background: var(--red);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(152, 13, 24, 0.3);
}

.cal-date.has-event.active:after {
    background: #fff;
}

.cal-date.has-event.blue.active {
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(8, 59, 112, 0.3);
}

.cal-date.has-event.blue.active:after {
    background: #fff;
}

.cal-date.today {
    font-weight: 900;
    color: var(--blue);
    background: rgba(8, 59, 112, 0.08);
}

.cal-date.today:not(.active) {
    box-shadow: inset 0 0 0 1.5px var(--blue);
}

.cal-date.active:not(.has-event) {
    background: #1e293b;
    color: #fff;
    font-weight: 800;
}

.cal-grid {
    transition: opacity .15s ease;
}

.cal-grid.cal-fading {
    opacity: 0.3;
}

.agenda-info-card.highlight-flash {
    animation: flashHighlight 1.5s ease;
}

@keyframes flashHighlight {
    0% {
        box-shadow: 0 0 0 3px rgba(152, 13, 24, 0.6), 0 10px 25px rgba(0,0,0,0.15);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
        transform: scale(1);
    }
}

.cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0 14px;
    padding-top: 12px;
    border-top: 1px solid #f1ece4;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.red {
    background: var(--red);
}

.legend-dot.blue {
    background: var(--blue);
}

.cal-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: rgba(32, 88, 148, 0.06);
    border: 1.5px dashed rgba(32, 88, 148, 0.35);
    color: var(--blue);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11.5px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s ease;
}

.cal-download-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.cal-download-btn svg {
    width: 15px;
    height: 15px;
    flex: none;
}

.academic-quick-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e7e2d6;
    padding: 16px 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.quick-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(152, 13, 24, 0.1);
    color: var(--red);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 2px;
}

.quick-card-icon svg {
    width: 18px;
    height: 18px;
}

.academic-quick-card strong {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
}

.academic-quick-card p {
    font-size: 11px;
    line-height: 1.5;
    color: #64748b;
    margin: 4px 0 0;
}

.agenda-list-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.agenda-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2px;
}

.list-title {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-title:before {
    content: "";
    width: 4px;
    height: 16px;
    background: var(--red);
    border-radius: 2px;
}

.list-filter {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    transition: all .2s;
}

.filter-pill:hover, .filter-pill.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

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

.agenda-info-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e7e2d6;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.agenda-info-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
}

.agenda-info-card.border-red:before {
    background: var(--red);
}

.agenda-info-card.border-blue:before {
    background: var(--blue);
}

.agenda-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(8, 59, 112, 0.1);
    border-color: rgba(32, 88, 148, 0.3);
}

.agenda-info-date {
    width: 62px;
    height: 66px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.agenda-info-card.border-red .agenda-info-date {
    background: linear-gradient(135deg, #fff8f8, #fee8e8);
    border-color: rgba(152, 13, 24, 0.18);
}

.agenda-info-card.border-blue .agenda-info-date {
    background: linear-gradient(135deg, #f0f6fc, #e3eefa);
    border-color: rgba(32, 88, 148, 0.18);
}

.date-num {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.agenda-info-card.border-red .date-num {
    color: var(--red);
}

.agenda-info-card.border-blue .date-num {
    color: var(--blue);
}

.date-mo {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #475569;
    margin-top: 2px;
}

.date-yr {
    font-size: 8px;
    font-weight: 700;
    color: #94a3b8;
}

.agenda-info-content {
    flex: 1;
    min-width: 0;
}

.agenda-info-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.agenda-info-tag {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 3px 8px;
    border-radius: 6px;
    color: #fff;
}

.meta-detail {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.meta-detail svg {
    width: 13px;
    height: 13px;
    color: var(--blue);
    flex: none;
}

.agenda-info-card.border-red .meta-detail svg {
    color: var(--red);
}

.agenda-info-title {
    margin: 0 0 5px;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.35;
}

.agenda-info-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color .2s;
}

.agenda-info-card:hover .agenda-info-title a {
    color: var(--red);
}

.agenda-info-desc {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.55;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agenda-info-action {
    flex: none;
}

.btn-info-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    background: rgba(32, 88, 148, 0.08);
    color: var(--blue);
    white-space: nowrap;
}

.btn-info-action svg {
    width: 13px;
    height: 13px;
    transition: transform .2s;
}

.btn-info-action:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.btn-info-action:hover svg {
    transform: translateX(3px);
}

.btn-info-action.outline {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #475569;
}

.btn-info-action.outline:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* =========================================
   TESTIMONIALS / QUOTES SECTION
   ========================================= */
.quotes {
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
    padding: 72px 0 66px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.quote-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e7e2d6;
    padding: 28px 24px 24px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(8, 59, 112, 0.12);
}

.quote-card.border-red {
    border-top: 4px solid var(--red);
}

.quote-card.border-red:hover {
    border-color: rgba(152, 13, 24, 0.35);
    border-top-color: var(--red);
}

.quote-card.border-blue {
    border-top: 4px solid var(--blue);
}

.quote-card.border-blue:hover {
    border-color: rgba(32, 88, 148, 0.35);
    border-top-color: var(--blue);
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.quote-stars {
    display: flex;
    gap: 3px;
    color: var(--red);
}

.quote-stars svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.quote-watermark {
    color: rgba(32, 88, 148, 0.12);
    width: 32px;
    height: 32px;
    display: block;
}

.quote-watermark svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.quote-text {
    color: #475569;
    font-size: 13px;
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 22px;
    flex: 1;
}

.quote-person-box {
    border-top: 1px solid #f1ece3;
    padding-top: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    flex: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.avatar-circle.bg-red {
    background: linear-gradient(135deg, var(--red), #c51f3b);
}

.avatar-circle.bg-blue {
    background: linear-gradient(135deg, var(--blue), var(--navy));
}

.quote-person-info {
    flex: 1;
    min-width: 0;
}

.quote-person-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.verified-badge {
    color: var(--blue);
    width: 14px;
    height: 14px;
    flex: none;
}

.quote-person-role {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    margin-top: 3px;
}

.quote-person-detail {
    display: block;
    color: #78716c;
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
}

/* =========================================
   JOIN PMB CTA BANNER
   ========================================= */
.join-section {
    margin: 64px auto -64px;
    width: min(1180px, calc(100% - 28px));
    position: relative;
    z-index: 10;
}

.join-card {
    border-radius: 28px;
    background: linear-gradient(135deg, #780812 0%, #980d18 45%, #083b70 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(8, 59, 112, 0.24);
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.join-card:before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.join-content {
    padding: 48px 24px 48px 48px;
    position: relative;
    z-index: 2;
}

.join-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.join-content h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.22;
    margin: 0 0 12px;
    letter-spacing: -.6px;
}

.join-content h2 span {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}

.join-content p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 20px;
    max-width: 520px;
}

.join-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.join-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.join-perk svg {
    width: 14px;
    height: 14px;
    color: #fff;
    flex: none;
}

.join-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-join-primary {
    background: #fff;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    padding: 13px 26px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all .25s ease;
    text-decoration: none;
}

.btn-join-primary:hover {
    background: #fdfdfd;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    color: #780812;
}

.btn-join-primary svg {
    width: 15px;
    height: 15px;
    transition: transform .25s ease;
}

.btn-join-primary:hover svg {
    transform: translateX(3px);
}

.btn-join-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
    transition: all .25s ease;
    text-decoration: none;
}

.btn-join-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

.btn-join-secondary svg {
    width: 16px;
    height: 16px;
}

.join-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: 380px;
    padding-right: 20px;
}

.student-img-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px 24px 0 0;
    display: block;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.student-float-badge {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background: #fff;
    color: var(--red);
    padding: 15px 28px;
    border-radius: 50px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2.5px solid rgba(152, 13, 24, 0.14);
    z-index: 3;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .3px;
    text-decoration: none;
    transition: all .28s cubic-bezier(.22, 1, .36, 1);
    cursor: pointer;
}

.student-float-badge svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    transition: transform .25s ease;
    flex: none;
}

.student-float-badge:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(152, 13, 24, 0.38);
}

.student-float-badge:hover svg {
    color: #fff;
    transform: translateX(4px);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    border-top: 5px solid var(--red);
    background: #071e3b;
    color: #e2e8f0;
    padding: 105px 0 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: none !important;
    will-change: auto !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
    gap: 38px;
    margin-bottom: 45px;
    transform: none !important;
    will-change: auto !important;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo-badge {
    width: 44px;
    height: 48px;
    background: #fff;
    border-radius: 8px;
    display: grid;
    place-items: center;
    padding: 3px;
    flex: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.footer-crest {
    width: 34px;
    height: 38px;
    object-fit: contain;
}

.footer-brand strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    display: block;
    line-height: 1.25;
    letter-spacing: .2px;
}

.footer-brand small {
    color: #cbd5e1;
    font-size: 9.5px;
    font-weight: 600;
    display: block;
    margin-top: 2px;
    letter-spacing: .2px;
}

.footer-tagline {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 18px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    transition: all .25s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

footer h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: -.2px;
}

footer h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 12.5px;
    font-weight: 500;
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-links a:before {
    content: "›";
    color: var(--red);
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: #cbd5e1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--red);
    flex: none;
    margin-top: 2px;
}

.footer-accred-badge {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.footer-accred-badge svg {
    width: 14px;
    height: 14px;
    color: #4ade80;
    flex: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 25px;
}

.footer-bottom .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================================
   STICKY SCROLLED NAVBAR
   ========================================= */
body.scrolled .main-nav {
    height: 70px;
    border-bottom: 3px solid var(--blue);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    z-index: 9999;
}

body.scrolled .main-nav .logo {
    transform: translateX(-50%) translateY(0) translateZ(0);
    width: 134px;
    height: 158px;
    padding: 48px 6px 20px;
    border-radius: 0 0 67px 67px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

body.scrolled .main-nav .crest {
    width: 86px;
    height: 94px;
}

/* =========================================
   SCROLL REVEAL ANIMATION SYSTEM
   ========================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity;
}

.reveal-fade.revealed {
    opacity: 1;
    will-change: auto;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-left.revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.reveal-right {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-right.revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll, .reveal-fade, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================= */
@media(max-width: 768px) {
    body {
        padding-top: 76px !important;
    }
    .wrap {
        width: min(100% - 28px, 560px);
    }
    .mini {
        display: none !important;
    }
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 76px !important;
        background: #800a14 !important;
        border-bottom: 3.5px solid var(--navy) !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28) !important;
        z-index: 99999 !important;
        transform: none !important;
        transition: border-radius 0.35s ease, box-shadow 0.35s ease !important;
    }
    body.scrolled .main-nav {
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }
    .main-nav .wrap {
        width: 100%;
        max-width: 100%;
        padding: 0 24px 0 20px !important;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .nav-left,
    body.scrolled .nav-left,
    .links,
    body.scrolled .links {
        display: none !important;
    }
    .main-nav .logo,
    body.scrolled .main-nav .logo {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        text-decoration: none !important;
    }
    .main-nav .crest,
    body.scrolled .main-nav .crest {
        width: 38px !important;
        height: 44px !important;
        object-fit: contain !important;
        display: block !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)) !important;
    }
    .main-nav .logo .logo-text,
    body.scrolled .main-nav .logo .logo-text {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        gap: 0px !important;
    }
    .main-nav .logo .univ-word,
    body.scrolled .main-nav .logo .univ-word {
        display: block !important;
        color: #ffffff !important;
        font-size: 13.5px !important;
        font-weight: 900 !important;
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: 0.4px !important;
        line-height: 1.15 !important;
        text-transform: uppercase !important;
    }
    .main-nav .logo .asa-word,
    body.scrolled .main-nav .logo .asa-word {
        display: block !important;
        color: #ffffff !important;
        font-size: 14.5px !important;
        font-weight: 900 !important;
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: 0.4px !important;
        line-height: 1.15 !important;
        text-transform: uppercase !important;
    }
    .main-nav .logo small,
    body.scrolled .main-nav .logo small {
        display: none !important;
    }
    .hamb {
        display: flex !important;
        margin-left: auto !important;
        margin-right: 8px !important;
        border: none !important;
        background: transparent !important;
        cursor: pointer !important;
        padding: 6px !important;
        width: 38px !important;
        height: 38px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        z-index: 100000 !important;
        flex-shrink: 0 !important;
    }
    .hamb.active .hamb-line:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamb.active .hamb-line:nth-child(2) {
        opacity: 0;
    }
    .hamb.active .hamb-line:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    .mobile-nav-dropdown {
        display: none;
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: linear-gradient(180deg, #800a14 0%, #68050e 100%) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-bottom: 3.5px solid var(--navy) !important;
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55) !important;
        padding: 8px 0 14px !important;
        z-index: 99998 !important;
    }
    .mobile-nav-dropdown.open {
        display: flex !important;
        flex-direction: column !important;
        animation: mobileNavSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }
    @keyframes mobileNavSlideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .mobile-nav-dropdown a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 22px !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        text-decoration: none !important;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease !important;
        margin: 0 !important;
    }
    .mobile-nav-dropdown a:last-child {
        border-bottom: none !important;
    }
    .mobile-nav-dropdown a:hover,
    .mobile-nav-dropdown a:active {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #93c5fd !important;
        padding-left: 26px !important;
    }
    .mobile-nav-dropdown a svg {
        width: 18px !important;
        height: 18px !important;
        stroke: currentColor !important;
        stroke-width: 2.5 !important;
        fill: none !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
        opacity: 0.75 !important;
        transition: transform 0.2s ease, opacity 0.2s ease !important;
    }
    .mobile-nav-dropdown a:hover svg,
    .mobile-nav-dropdown a:active svg {
        opacity: 1 !important;
        transform: translateX(3px) !important;
    }
    .mobile-nav-backdrop {
        display: none;
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(2px) !important;
        -webkit-backdrop-filter: blur(2px) !important;
        z-index: 99990 !important;
    }
    .mobile-nav-backdrop.open {
        display: block !important;
    }
    body.mobile-nav-open {
        overflow: hidden !important;
    }
    .hero {
        height: 390px;
    }
    .hero-copy {
        padding-top: 80px;
    }
    .hero-copy h1 {
        font-size: 34px;
    }
    .quick {
        margin-top: -31px;
    }
    .quick .wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick a {
        min-height: 80px;
        border: 0;
    }
    .quick a:nth-child(2) {
        border-right: 0;
    }
    .quick a:nth-child(-n+2) {
        border-bottom: 0;
    }
    .qicon svg {
        width: 36px;
        height: 36px;
    }
    .slogan p {
        font-size: 15px;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-photo {
        height: 250px;
    }
    .news-grid, .quote-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .agenda {
        padding: 42px 0 36px;
    }
    .agenda-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .agenda-calendar-col {
        position: static;
    }
    .agenda-info-card {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }
    .agenda-info-action {
        grid-column: span 2;
        margin-top: 4px;
    }
    .btn-info-action {
        width: 100%;
        justify-content: center;
    }
    .quotes {
        padding: 42px 0 36px;
    }
    .quote-card {
        padding: 22px 18px 18px;
    }
    .numbers {
        padding: 40px 0;
    }
    .number-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }
    .stat-card {
        padding: 12px 14px;
        gap: 12px;
        justify-content: flex-start;
    }
    .stat-card:not(:last-child)::after {
        display: none;
    }
    .stat-card:nth-child(odd)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        display: block;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.05) 100%);
    }
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    .stat-icon svg {
        width: 20px;
        height: 20px;
    }
    .stat-val {
        font-size: 24px;
    }
    .stat-plus {
        font-size: 18px;
    }
    .stat-label {
        font-size: 9.5px;
        letter-spacing: .6px;
    }
    .news {
        padding: 42px 0 36px;
    }
    .section-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    .section-row h2 {
        font-size: 22px;
    }
    .view-all-link {
        font-size: 11px;
        padding: 7px 14px;
        align-self: flex-start;
    }
    .news-img-wrap {
        height: 170px;
    }
    .join-section {
        margin: 40px auto 0;
        width: calc(100% - 24px);
    }
    .join-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }
    .join-content {
        padding: 32px 20px 24px;
    }
    .join-content h2 {
        font-size: 24px;
    }
    .join-visual {
        height: 300px;
        min-height: 300px;
        padding-right: 0;
    }
    .student-img-container {
        height: 300px;
        max-width: 250px;
    }
    .student-float-badge {
        bottom: 16px;
        left: 8px;
        padding: 10px 18px;
        font-size: 13px;
    }
    footer {
        padding-top: 50px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    .footer-bottom .wrap {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media(max-width: 430px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy h1 {
        font-size: 30px;
    }
    .asa-box {
        width: 86px;
        height: 82px;
        font-size: 56px;
        border-radius: 15px;
    }
}
