/* =========================================================
   SETITEL WEBSITE CSS
   Modern University Website
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --primary: #0b3b78;

    --primary-dark: #062750;

    --primary-light: #164f96;

    --gold: #d6a84f;

    --gold-light: #e9c875;

    --dark: #111827;

    --text: #374151;

    --muted: #6b7280;

    --light: #f5f8fc;

    --white: #ffffff;

    --border: #e5e7eb;

    --shadow:
        0 15px 40px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 25px 60px rgba(15, 23, 42, .14);

    --radius: 18px;

    --container: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Inter",
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


body.no-scroll {

    overflow: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button {

    font-family: inherit;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: auto;

}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    background: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    transition:
        opacity .5s ease,
        visibility .5s ease;

}


#preloader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-content {

    text-align: center;

}


.loader-content img {

    width: 100px;

    height: 120px;

    object-fit: contain;

    margin: 0 auto 15px;

}


.loader-spinner {

    width: 36px;

    height: 36px;

    border: 3px solid #e6edf6;

    border-top-color: var(--primary);

    border-radius: 50%;

    animation:
        spin .8s linear infinite;

    margin: auto;

}


.loader-content p {

    font-size: 13px;

    color: var(--muted);

    margin-top: 12px;

}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,.96);

    transition:
        .3s ease;

}


.navbar.scrolled {

    box-shadow:
        0 8px 30px rgba(15,23,42,.08);

    backdrop-filter:
        blur(12px);

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.brand-logo {

    width: 52px;

    height: 62px;

    object-fit: contain;

}


.brand-text {

    display: flex;

    flex-direction: column;

}


.brand-text strong {

    color: var(--primary);

    font-size: 21px;

    line-height: 1.1;

    letter-spacing: .5px;

}


.brand-text span {

    color: var(--muted);

    font-size: 10px;

    margin-top: 4px;

    max-width: 190px;

}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 5px;

}


.nav-menu > a {

    padding:
        10px 13px;

    font-size: 13px;

    font-weight: 600;

    color: #334155;

    border-radius: 8px;

    transition: .25s ease;

}


.nav-menu > a:hover,

.nav-menu > a.active {

    color: var(--primary);

    background:
        rgba(11,59,120,.06);

}


.nav-menu .nav-pmb {

    color: var(--white);

    background: var(--primary);

    margin-left: 8px;

    padding:
        11px 18px;

}


.nav-menu .nav-pmb:hover {

    color: var(--white);

    background:
        var(--primary-dark);

}


.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    width: 42px;

    height: 42px;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 24px;

    height: 2px;

    margin: 5px auto;

    background: var(--primary);

    transition: .3s ease;

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 720px;

    margin-top: 82px;

    display: flex;

    align-items: center;

    background-image:
        url("assets/hero-wisuda.jpg");

    background-size: cover;

    /* Menonjolkan barisan wisudawan, sementara area kanan tetap memberi ruang untuk card. */
    background-position: center 52%;

    background-repeat: no-repeat;

    overflow: hidden;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,25,53,.90) 0%,
            rgba(3,25,53,.68) 38%,
            rgba(3,25,53,.38) 68%,
            rgba(3,25,53,.22) 100%
        );

}


.hero-container {

    position: relative;

    z-index: 2;

    min-height: 620px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.hero-content {

    max-width: 700px;

    color: var(--white);

}


.hero-label {

    display: inline-flex;

    padding:
        7px 14px;

    border:
        1px solid rgba(255,255,255,.3);

    border-radius: 100px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: var(--gold-light);

    background:
        rgba(255,255,255,.05);

}


.hero h1 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(44px, 6vw, 76px);

    line-height: 1.08;

    margin:
        22px 0;

    letter-spacing: -2px;

}


.hero h1 span {

    display: block;

    color: var(--gold-light);

}


.hero p {

    max-width: 650px;

    font-size: 17px;

    color:
        rgba(255,255,255,.84);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding:
        0 22px;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;

}


.btn-primary {

    color: var(--white);

    background: var(--primary);

}


.btn-primary:hover {

    background: var(--primary-light);

    transform: translateY(-2px);

}


.btn-outline {

    color: var(--white);

    border:
        1px solid rgba(255,255,255,.45);

}


.btn-outline:hover {

    background: var(--white);

    color: var(--primary);

}


.hero-programs {

    width: min(390px, 38vw);

    display: grid;

    gap: 14px;

    flex-shrink: 0;

}


.hero-card {

    width: 100%;

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.2);

    backdrop-filter:
        blur(14px);

    border-radius: 14px;

    color: var(--white);

}


.hero-card-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: var(--white);

    border-radius: 10px;

    font-size: 22px;

}


.hero-card strong {

    display: block;

    font-size: 14px;

}


.hero-card span {

    display: block;

    font-size: 11px;

    color:
        rgba(255,255,255,.76);

    margin-top: 3px;

}


.hero-card small {

    display: inline-block;

    margin-top: 7px;

    padding: 3px 8px;

    border-radius: 999px;

    background: rgba(214,168,79,.18);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

}


.hero-card small b {

    color: #fff;

}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-links {

    position: relative;

    margin-top: -55px;

    z-index: 10;

}


.quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--white);

    box-shadow: var(--shadow-lg);

    border-radius: 15px;

    overflow: hidden;

}


.quick-card {

    min-height: 125px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 13px;

    border-right:
        1px solid var(--border);

    transition: .3s ease;

}


.quick-card:last-child {

    border-right: 0;

}


.quick-card:hover {

    background: #f8fbff;

}


.quick-icon {

    width: 46px;

    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(11,59,120,.08);

    color: var(--primary);

    border-radius: 10px;

}


.quick-card strong {

    display: block;

    font-size: 13px;

    color: var(--dark);

}


.quick-card span {

    display: block;

    font-size: 10px;

    color: var(--muted);

    margin-top: 3px;

}


.quick-card .arrow {

    margin-left: auto;

    color: var(--primary);

    font-size: 12px;

}


/* =========================================================
   SECTION
========================================================= */

.section {

    padding:
        105px 0;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 50px;

}


.section-heading.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}


.section-label {

    display: inline-block;

    color: var(--gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2 {

    font-family:
        "Playfair Display",
        serif;

    color: var(--dark);

    font-size:
        clamp(32px, 4vw, 48px);

    line-height: 1.2;

    margin-top: 8px;

}


.section-heading p {

    color: var(--muted);

    margin-top: 12px;

}


.heading-line {

    width: 55px;

    height: 3px;

    margin-top: 15px;

    background: var(--gold);

}


/* =========================================================
   PROFILE
========================================================= */

.profile-section {

    background: var(--white);

}


.profile-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 75px;

    align-items: center;

}


.profile-image {

    position: relative;

}


.profile-image img {

    width: 100%;

    height: 510px;

    object-fit: cover;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}


.experience-card {

    position: absolute;

    right: -25px;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow-lg);

}


.experience-card > i {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    background: var(--primary);

    border-radius: 9px;

}


.experience-card strong {

    display: block;

    color: var(--primary);

}


.experience-card span {

    display: block;

    font-size: 11px;

    color: var(--muted);

}


.profile-content .small-title {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

}


.profile-content h3 {

    font-family:
        "Playfair Display",
        serif;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 43px);

    line-height: 1.2;

    margin:
        12px 0 20px;

}


.profile-content p {

    color: var(--muted);

    margin-bottom: 14px;

}


.feature-list {

    display: grid;

    gap: 10px;

    margin: 25px 0;

}


.feature-list div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;

    color: var(--dark);

}


.feature-list i {

    color: var(--gold);

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-weight: 700;

    font-size: 13px;

}


.text-link:hover {

    gap: 14px;

}


/* =========================================================
   VISION
========================================================= */

.vision-section {

    background: var(--light);

}


.vision-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.vision-card {

    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition: .3s ease;

}


.vision-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}


.vision-card.featured {

    background: var(--primary);

    color: var(--white);

}


.vision-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(214,168,79,.14);

    color: var(--gold);

    border-radius: 12px;

    font-size: 20px;

    margin-bottom: 22px;

}


.vision-card h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;

    margin-bottom: 12px;

    color: var(--dark);

}


.vision-card.featured h3 {

    color: var(--white);

}


.vision-card p {

    font-size: 14px;

    color: var(--muted);

}


.vision-card.featured p {

    color:
        rgba(255,255,255,.78);

}


/* =========================================================
   PROGRAM STUDI
========================================================= */

.academic-section {

    background: var(--white);

}


.program-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;

}


.program-card {

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    transition: .3s ease;

}


.program-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow-lg);

}


.program-image {

    position: relative;

    height: 280px;

    overflow: hidden;

}


.program-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}


.program-card:hover
.program-image img {

    transform: scale(1.05);

}


.program-badge {

    position: absolute;

    top: 18px;

    right: 18px;

    padding:
        8px 14px;

    border-radius: 8px;

    color: var(--white);

    background: var(--primary);

    font-size: 13px;

    font-weight: 800;

}


.program-content {

    padding: 30px;

}


.program-number {

    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.program-content h3 {

    color: var(--dark);

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    line-height: 1.25;

    margin:
        8px 0 5px;

}


.degree {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 15px;

}


.program-content p {

    color: var(--muted);

    font-size: 13px;

}


.program-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-top: 20px;

}


.program-link:hover {

    gap: 14px;

}


.academic-summary {

    margin-top: 45px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    background: var(--primary);

    color: var(--white);

    border-radius: 15px;

    overflow: hidden;

}


.academic-summary div {

    padding: 25px;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.14);

}


.academic-summary div:last-child {

    border-right: 0;

}


.academic-summary strong {

    display: block;

    font-size: 25px;

    color: var(--gold-light);

}


.academic-summary span {

    font-size: 12px;

    color:
        rgba(255,255,255,.72);

}


/* =========================================================
   NEWS
========================================================= */

.news-section {

    background: var(--light);

}


.section-top {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

}


.outline-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 18px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    color: var(--primary);

    background: var(--white);

    font-size: 12px;

    font-weight: 700;

}


.outline-button:hover {

    background: var(--primary);

    color: var(--white);

}


.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.news-card {

    background: var(--white);

    border-radius: 15px;

    overflow: hidden;

    border:
        1px solid var(--border);

    transition: .3s ease;

}


.news-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}


.news-image {

    height: 220px;

    position: relative;

}


.news-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.news-image span {

    position: absolute;

    left: 15px;

    bottom: 15px;

    padding:
        5px 9px;

    background: var(--primary);

    color: var(--white);

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

}


.news-content {

    padding: 24px;

}


.news-meta {

    font-size: 10px;

    color: var(--muted);

    margin-bottom: 8px;

}


.news-content h3 {

    font-family:
        "Playfair Display",
        serif;

    color: var(--dark);

    font-size: 21px;

    line-height: 1.35;

}


.news-content p {

    font-size: 12px;

    color: var(--muted);

    margin:
        10px 0 17px;

}


.news-content > a {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {

    background: var(--white);

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 210px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 12px;

}


.gallery-item.large {

    grid-column:
        span 2;

    grid-row:
        span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(6,39,80,.45);

    color: var(--white);

    opacity: 0;

    transition: .3s ease;

}


.gallery-item:hover
.gallery-overlay {

    opacity: 1;

}


.gallery-overlay i {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

}


/* =========================================================
   PMB
========================================================= */

.pmb-section {

    position: relative;

    min-height: 460px;

    display: flex;

    align-items: center;

    background:
        url("assets/pmb.jpg")
        center / cover
        no-repeat;

    color: var(--white);

}


.pmb-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,25,53,.94),
            rgba(3,25,53,.6)
        );

}


.pmb-container {

    position: relative;

    z-index: 2;

}


.pmb-content {

    max-width: 680px;

}


.section-label.light {

    color: var(--gold-light);

}


.pmb-content h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(36px, 5vw, 56px);

    line-height: 1.15;

    margin:
        10px 0 18px;

}


.pmb-content p {

    color:
        rgba(255,255,255,.8);

    max-width: 600px;

}


.pmb-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;

}


.btn-gold {

    background: var(--gold);

    color: var(--white);

}


.btn-gold:hover {

    background:
        var(--gold-light);

    color: var(--dark);

}


.btn-white {

    background: var(--white);

    color: var(--primary);

}


.btn-white:hover {

    background: #f1f5f9;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--light);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.contact-card {

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    padding: 28px;

    text-align: center;

}


.contact-icon {

    width: 52px;

    height: 52px;

    margin:
        0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(11,59,120,.08);

    color: var(--primary);

}


.contact-card h3 {

    color: var(--dark);

    font-size: 16px;

    margin-bottom: 7px;

}


.contact-card p {

    font-size: 12px;

    color: var(--muted);

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #071e3b;

    color: var(--white);

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.7fr 1fr 1.4fr 1.2fr;

    gap: 45px;

    padding:
        70px 0;

}


.footer-brand img {

    width: 70px;

    height: 85px;

    object-fit: contain;

    margin-bottom: 12px;

}


.footer-brand h3 {

    font-size: 22px;

    color: var(--white);

}


.footer-brand > p {

    color:
        rgba(255,255,255,.65);

    font-size: 12px;

}


.footer-description {

    max-width: 310px;

    margin-top: 15px;

    line-height: 1.7;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.social-links a {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,.08);

    border-radius: 8px;

    font-size: 13px;

    transition: .25s ease;

}


.social-links a:hover {

    background: var(--gold);

    color: var(--dark);

}


.footer-column h4 {

    color: var(--white);

    font-size: 14px;

    margin-bottom: 18px;

}


.footer-column a,

.footer-column p {

    display: block;

    color:
        rgba(255,255,255,.62);

    font-size: 11px;

    margin-bottom: 10px;

}


.footer-column a:hover {

    color: var(--gold-light);

}


.footer-column p i {

    width: 20px;

    color: var(--gold);

}


.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.1);

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    font-size: 10px;

    color:
        rgba(255,255,255,.5);

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;

    height: 45px;

    border: 0;

    border-radius: 10px;

    background: var(--primary);

    color: var(--white);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: .3s ease;

    z-index: 900;

    box-shadow: var(--shadow);

}


.back-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.back-top:hover {

    background: var(--gold);

    color: var(--dark);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {


    .nav-menu {

        gap: 0;

    }


    .nav-menu > a {

        padding:
            9px 8px;

        font-size: 11px;

    }


    .hero-programs {

        width: 350px;

    }


    .quick-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .quick-card:nth-child(2) {

        border-right: 0;

    }


    .quick-card:nth-child(-n+2) {

        border-bottom:
            1px solid var(--border);

    }


    .profile-grid {

        gap: 45px;

    }


    .vision-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .vision-card:last-child {

        grid-column:
            span 2;

    }


    .news-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .news-card:last-child {

        grid-column:
            span 2;

        max-width: 500px;

        margin: auto;

        width: 100%;

    }


    .contact-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            1.5fr 1fr 1fr;

    }


    .footer-column:last-child {

        grid-column:
            span 3;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {

        width:
            min(
                calc(100% - 30px),
                var(--container)
            );

    }


    .nav-container {

        min-height: 70px;

    }


    .brand-logo {

        width: 42px;

        height: 50px;

    }


    .brand-text strong {

        font-size: 17px;

    }


    .brand-text span {

        font-size: 8px;

        max-width: 150px;

    }


    .menu-toggle {

        display: block;

    }


    .nav-menu {

        position: fixed;

        top: 70px;

        left: 15px;

        right: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding: 15px;

        background: var(--white);

        border-radius: 12px;

        box-shadow: var(--shadow-lg);

        transform:
            translateY(-20px);

        opacity: 0;

        visibility: hidden;

        transition: .3s ease;

    }


    .nav-menu.active {

        transform:
            translateY(0);

        opacity: 1;

        visibility: visible;

    }


    .nav-menu > a {

        padding:
            13px 15px;

        font-size: 13px;

    }


    .nav-menu .nav-pmb {

        margin-left: 0;

        text-align: center;

    }


    .hero {

        margin-top: 70px;

        min-height: 700px;

        background-position:
            60% center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(3,25,53,.83),
                rgba(3,25,53,.94)
            );

    }


    .hero-container {

        min-height: 630px;

        flex-direction: column;

        justify-content: center;

        align-items: flex-start;

        gap: 30px;

    }


    .hero h1 {

        font-size:
            clamp(38px, 11vw, 56px);

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 14px;

    }


    .hero-programs {

        width: 100%;

        max-width: 520px;

    }


    .hero-card {

        width: 100%;

        min-width: 0;

    }


    .quick-links {

        margin-top: -35px;

    }


    .quick-grid {

        grid-template-columns: 1fr;

    }


    .quick-card {

        min-height: 100px;

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .quick-card:last-child {

        border-bottom: 0;

    }


    .section {

        padding:
            75px 0;

    }


    .section-heading {

        margin-bottom: 35px;

    }


    .profile-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .profile-image img {

        height: 390px;

    }


    .experience-card {

        right: 15px;

        bottom: 15px;

    }


    .vision-grid {

        grid-template-columns: 1fr;

    }


    .vision-card:last-child {

        grid-column:
            auto;

    }


    .program-grid {

        grid-template-columns: 1fr;

    }


    .program-image {

        height: 240px;

    }


    .academic-summary {

        grid-template-columns: 1fr;

    }


    .academic-summary div {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.14);

    }


    .academic-summary div:last-child {

        border-bottom: 0;

    }


    .section-top {

        align-items: flex-start;

        flex-direction: column;

    }


    .news-grid {

        grid-template-columns: 1fr;

    }


    .news-card:last-child {

        grid-column: auto;

        max-width: none;

    }


    .gallery-grid {

        grid-template-columns:
            1fr 1fr;

        grid-auto-rows: 160px;

    }


    .gallery-item.large {

        grid-column:
            span 2;

        grid-row:
            span 2;

    }


    .pmb-section {

        min-height: 550px;

    }


    .pmb-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 35px;

    }


    .footer-brand {

        grid-column:
            span 2;

    }


    .footer-column:last-child {

        grid-column:
            span 2;

    }


    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        padding:
            15px 0;

        text-align: center;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .container {

        width:
            calc(100% - 24px);

    }


    .brand-text span {

        display: none;

    }


    .hero {

        min-height: 680px;

    }


    .hero-container {

        min-height: 610px;

    }


    .hero h1 {

        font-size: 38px;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-programs {

        gap: 10px;

    }


    .hero-card {

        padding: 14px;

    }


    .hero-card strong {

        font-size: 13px;

    }


    .hero-card span {

        font-size: 10px;

    }


    .profile-image img {

        height: 330px;

    }


    .experience-card {

        left: 15px;

        right: 15px;

        justify-content: center;

    }


    .program-content {

        padding: 22px;

    }


    .program-content h3 {

        font-size: 24px;

    }


    .gallery-grid {

        grid-auto-rows: 130px;

        gap: 8px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-brand,

    .footer-column:last-child {

        grid-column: auto;

    }


    .back-top {

        right: 15px;

        bottom: 15px;

    }

}