/*
Theme Name: IKTA Theme
Description: WordPress theme untuk Institut Kesehatan dan Teknologi Al Insyirah
Version: 1.0.0
Author: IKTA Team
Text Domain: ikta-theme
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --ikta-dark: #1b5e20;
    --ikta-primary: #2e7d32;
    --ikta-light: #4caf50;
    --ikta-yellow: #fbc02d;
    --ikta-white: #ffffff;
    --ikta-gray-50: #f8fafc;
    --ikta-gray-100: #f1f5f9;
    --ikta-gray-200: #e2e8f0;
    --ikta-gray-600: #475569;
    --ikta-gray-700: #334155;
    --ikta-gray-800: #1e293b;
    --ikta-gray-900: #0f172a;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --swiper-theme-color: var(--ikta-yellow);
    --swiper-navigation-size: 24px;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --transition-base: all 0.3s ease;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ikta-gray-800);
    background-color: var(--ikta-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-primary {
    color: var(--ikta-primary);
}

.text-yellow {
    color: var(--ikta-yellow);
}

.bg-primary {
    background-color: var(--ikta-primary);
}

.bg-dark {
    background-color: var(--ikta-dark);
}

.bg-yellow {
    background-color: var(--ikta-yellow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-family: var(--font-heading);
}

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

.btn-primary:hover {
    background-color: #246428;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-yellow {
    background-color: var(--ikta-yellow);
    color: var(--ikta-dark);
}

.btn-yellow:hover {
    background-color: #eab308;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

/* ── Top Bar ── */
.top-bar {
    background: var(--ikta-primary);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.top-bar__item .material-icons {
    font-size: 0.9rem;
}

.top-bar__right a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    transition: color 0.2s;
}

.top-bar__right a:hover {
    color: white;
}

.top-bar__divider {
    color: rgba(255, 255, 255, 0.4);
}

.top-bar__lang-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: background 0.2s;
}

.top-bar__lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Polylang language links */
.top-bar__lang {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar__lang-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.top-bar__lang-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.top-bar__lang-link.is-active {
    color: var(--ikta-dark);
    background: rgba(255, 255, 255, 0.9);
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--ikta-gray-200);
    padding: 0.5rem 0;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header__logo .custom-logo-link {
    display: block;
    line-height: 0;
}

.header__logo .custom-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ── Nav Menu ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 0.6rem;
    color: var(--ikta-gray-700);
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.nav-menu > li > a .material-icons {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.nav-menu > li > a:hover {
    color: var(--ikta-primary);
    background: var(--ikta-gray-50);
}

.nav-menu__dropdown {
    position: relative;
}

.nav-menu__dropdown:hover > a .material-icons {
    transform: rotate(180deg);
}

/* ── Dropdown Sub ── */
.nav-menu__sub {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: white;
    min-width: 230px;
    border-radius: 0.5rem;
    border: 1px solid var(--ikta-gray-200);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

.nav-menu__dropdown:hover .nav-menu__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu__sub a {
    display: block;
    padding: 0.45rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ikta-gray-700);
    border-left: 2px solid transparent;
    transition: background 0.15s, color 0.15s, padding-left 0.15s, border-color 0.15s;
}

.nav-menu__sub a:hover {
    background: var(--ikta-gray-50);
    color: var(--ikta-primary);
    padding-left: 1.5rem;
    border-left-color: var(--ikta-primary);
}

/* ── PMB Button ── */
.btn--primary {
    background: var(--ikta-primary);
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.btn--primary .material-icons {
    font-size: 1rem;
}

.btn--sm {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

/* ── Mobile Toggle ── */
.nav-menu__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--ikta-dark);
    border-radius: 4px;
}

.nav-menu__toggle .material-icons {
    font-size: 1.75rem;
}

.nav-menu__toggle:hover {
    background: var(--ikta-gray-100);
}

/* ── Mobile ── */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .header {
        padding: 0;
        /* Hilangkan backdrop-filter: di mobile ia membuat "containing block"
           sehingga menu overlay (position:fixed) terposisi relatif ke header,
           bukan viewport → menyebabkan item menu terpotong. */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header__nav {
        height: 64px;
        padding: 0 1rem;
        position: relative;
    }

    .nav-menu__toggle {
        display: flex;
        align-items: center;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 3rem;
        /* Tinggi mengikuti viewport dinamis agar item terakhir tidak terpotong
           oleh bar browser mobile, dan area scroll terhitung benar. */
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 2000;
        border-top: 2px solid var(--ikta-primary);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        text-transform: none;
        font-size: 0.9375rem;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid var(--ikta-gray-100);
        width: 100%;
    }

    .nav-menu > li:last-of-type {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: 0.875rem 0;
        justify-content: space-between;
        width: 100%;
        border-radius: 0;
        background: transparent !important;
        font-size: 0.9375rem;
        font-weight: 600;
        text-transform: none;
    }

    /* Sub menu on mobile */
    .nav-menu__sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: unset;
        width: 100%;
        padding: 0.25rem 0 0.5rem 0;
        display: none;
        background: transparent;
    }

    .nav-menu__dropdown.is-open .nav-menu__sub {
        display: block;
    }

    .nav-menu__dropdown.is-open > a .material-icons {
        transform: rotate(180deg);
    }

    .nav-menu__sub a {
        padding: 0.55rem 1rem;
        font-size: 0.875rem;
        color: var(--ikta-gray-600);
        border-left: 2px solid var(--ikta-gray-200);
    }

    .nav-menu__sub a:hover {
        padding-left: 1.25rem;
        border-left-color: var(--ikta-primary);
    }

    /* Hide PMB button on mobile */
    .header__nav > .btn--primary {
        display: none;
    }
}

/* Hero Section Slider */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-content {
    color: white;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.swiper-slide-active h2 {
    transform: translateY(0);
    opacity: 1;
}

.hero-divider {
    width: 350px;
    height: 3px;
    background-color: var(--ikta-yellow);
    margin: 1rem 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.swiper-slide-active .hero-divider {
    transform: scaleX(1);
}

.hero-subtext {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--ikta-gray-100);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}

.swiper-slide-active .hero-subtext {
    transform: translateY(0);
    opacity: 1;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.swiper-slide-active .hero-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Custom Swiper Navigation */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: var(--ikta-primary);
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: bold;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.btn-hero {
    background-color: #006400;
    /* Darker green like in image */
    color: white;
    padding: 1rem 3rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #004d00;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding-bottom: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    text-align: center;
    border-bottom: 4px solid var(--ikta-primary);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--ikta-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--ikta-yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--ikta-gray-200);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--ikta-dark);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ikta-gray-600);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Quote Section */
.quote-section {
    background-color: var(--ikta-yellow);
    overflow: hidden;
}

.quote-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
}

.quote-content {
    padding: 5rem 3rem 5rem 0;
}

.quote-content i {
    font-size: 3.5rem;
    color: var(--ikta-dark);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.quote-content blockquote {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ikta-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.rektor-img-wrapper {
    position: relative;
    padding-top: 5rem;
}

.rektor-img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem 2rem 0 0;
    box-shadow: var(--shadow-2xl);
}

.rektor-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 94, 32, 0.9);
    backdrop-filter: blur(10px);
    width: 90%;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rektor-info h4,
.rektor-info h3.rektor-name {
    color: white;
    font-size: 1.125rem;
    margin: 0;
}

.rektor-info p {
    color: var(--ikta-yellow);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Info PMB */
.pmb-cta {
    padding: 5rem 0;
}

.pmb-card {
    background: linear-gradient(135deg, var(--ikta-dark), var(--ikta-primary));
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-2xl);
}

.pmb-info {
    flex: 2;
    padding: 4rem;
    color: white;
}

.pmb-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pmb-info p {
    font-size: 1.25rem;
    color: var(--ikta-yellow);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.pmb-contact {
    flex: 1;
    background-color: var(--ikta-yellow);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pmb-contact p {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--ikta-dark);
}

.pmb-contact h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1.5rem;
}

.whatsapp-btn {
    background-color: var(--ikta-dark);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* News Section */
.news {
    padding: 5rem 0;
    background-color: var(--ikta-gray-50);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.news-header h2 {
    text-transform: uppercase;
    font-size: 2rem;
}

.news-header .underline {
    width: 80px;
    height: 6px;
    background: var(--ikta-primary);
    margin-top: 0.5rem;
}

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

.news-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.news-card:hover {
    box-shadow: var(--shadow-2xl);
}

.news-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.news-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ikta-primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    z-index: 10;
}

.news-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    z-index: 10;
    color: white;
    width: 100%;
}

.news-date {
    font-size: 0.75rem;
    color: var(--ikta-yellow);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-card h4 {
    font-size: 1rem;
    line-height: 1.4;
}

.news-footer {
    padding: 1.25rem;
}

.news-footer a {
    font-weight: 800;
    font-size: 0.8125rem;
    color: var(--ikta-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-grid .imsakiyah-card {
    grid-row: span 1;
    background-color: var(--ikta-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
    border: 4px solid rgba(251, 192, 45, 0.3);
}

.imsakiyah-card i {
    font-size: 3rem;
    color: var(--ikta-yellow);
    margin-bottom: 1rem;
}

/* (Styling Announcements & Calendar dikonsolidasikan di bagian
   "Announcements Section Styles" lebih bawah) */

/* Footer */
footer {
    background-color: var(--ikta-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Default profesional: 3 kolom (brand sedikit lebih lebar) */
.footer-grid--default {
    grid-template-columns: 1.5fr 1fr 1.3fr;
}

/* Grid mode widget: jumlah kolom mengikuti widget aktif (--fcols) */
.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(var(--fcols, 4), 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-social-title {
    margin-top: 2rem;
}

.footer-col .certification {
    margin-top: 2rem;
}

/* Komponen footer default */
.footer-about {
    font-size: 0.875rem;
    color: var(--ikta-gray-200);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--ikta-gray-200);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.footer-contact li i {
    color: var(--ikta-yellow);
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--ikta-gray-200);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--ikta-yellow);
}

.footer-hours {
    font-size: 0.875rem;
    color: var(--ikta-gray-200);
    line-height: 1.7;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.footer-hours i {
    color: var(--ikta-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Responsif footer (default & widget) */
@media (max-width: 992px) {
    .footer-grid,
    .footer-grid--default,
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid,
    .footer-grid--default,
    .footer-widgets-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-box {
    background: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    width: 60px;
    height: 60px;
}

.footer-logo h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.footer-info p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    color: var(--ikta-gray-200);
}

.footer-col h5 {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--ikta-yellow);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 200px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--ikta-gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--ikta-yellow);
    padding-left: 0.5rem;
}

.certification {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--ikta-white-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: 1rem;
    }

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


@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        height: 500px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-divider {
        width: 200px;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-hero {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .feature-grid {
        margin-top: -40px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

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

    .anno-calendar-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .quote-content {
        padding: 3rem 0;
        text-align: center;
    }

    .quote-content blockquote {
        font-size: 1.25rem;
    }

    .rektor-img {
        height: 400px;
    }

    .pmb-card {
        flex-direction: column;
    }

    .pmb-info,
    .pmb-contact {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .pmb-info h2 {
        font-size: 1.75rem;
    }

    .pmb-info div {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .featured-image {
        height: 250px;
    }
}


/* Page Header — bar breadcrumb minimalis */
.page-header {
    background: var(--ikta-gray-50);
    border-bottom: 1px solid var(--ikta-gray-200);
    padding: 1.1rem 0;
    color: var(--ikta-gray-800);
    text-align: left;
}

.page-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem 1.5rem;
    flex-wrap: wrap;
}

/* Judul disembunyikan secara visual (tetap ada untuk SEO & screen reader) */
.page-header h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--ikta-gray-600);
}

.breadcrumb a {
    color: var(--ikta-primary);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--ikta-dark);
}

.breadcrumb span {
    color: var(--ikta-gray-600);
    opacity: 1;
}

/* Page Layout */
.page-layout {
    padding: 2.5rem 0 5rem;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
}

/* Sidebar */
.sidebar {
    background: var(--ikta-gray-50);
    padding: 2rem;
    border-radius: 1.5rem;
    height: fit-content;
}

.sidebar-menu h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ikta-yellow);
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ikta-gray-700);
    transition: var(--transition-base);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--ikta-primary);
    color: white;
}

/* Content Area */
.content-area h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--ikta-dark);
}

.content-area p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--ikta-gray-700);
}

@media (max-width: 992px) {

    .page-grid,
    .page-grid.sidebar-right {
        grid-template-columns: 1fr;
    }

    .newsletter-widget {
        margin-top: 2rem;
    }
}

.page-grid.sidebar-right {
    grid-template-columns: 3fr 1fr;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--ikta-dark), var(--ikta-primary));
    padding: 1.5rem;
    border-radius: 1rem;
    color: white;
    margin-top: 2rem;
    text-align: center;
}

.newsletter-widget h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.newsletter-widget p {
    font-size: 0.75rem;
    color: var(--ikta-yellow);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 0.875rem;
}

.newsletter-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    background: white;
}

/* News Grid Page */
.news-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ikta-gray-50);
    border-radius: 0.50rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ikta-gray-700);
}

.page-link.active,
.page-link:hover {
    background: var(--ikta-primary);
    color: white;
}

/* News Single Page */
.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ikta-gray-200);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    color: var(--ikta-primary);
}

.featured-image {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.share-post {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ikta-gray-200);
}

.share-post span {
    font-weight: 700;
    font-size: 0.875rem;
}

.share-links {
    display: flex;
    gap: 0.5rem;
}

.share-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.fb {
    background: #3b5998;
}

.tw {
    background: #1da1f2;
}

.wa {
    background: #25d366;
}

.in {
    background: #0077b5;
}

/* Access Page Styles */
.access-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.access-intro h2 {
    font-size: 2.5rem;
    color: var(--ikta-dark);
    margin-bottom: 1rem;
}

.access-intro p {
    font-size: 1.125rem;
    color: var(--ikta-gray-600);
    line-height: 1.8;
}

.access-section {
    margin-bottom: 5rem;
}

.access-section h3 {
    font-size: 1.75rem;
    color: var(--ikta-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ikta-yellow);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.access-section h3 i {
    color: var(--ikta-primary);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.access-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ikta-primary);
}

.access-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ikta-primary), var(--ikta-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.access-icon i {
    font-size: 1.75rem;
    color: white;
}

.access-icon.kemdikbud {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.access-card:hover .access-icon {
    transform: scale(1.1) rotate(5deg);
}

.access-card h4 {
    font-size: 1.25rem;
    color: var(--ikta-dark);
    margin-bottom: 0.5rem;
}

.access-card p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.access-arrow {
    margin-top: auto;
    color: var(--ikta-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.access-card:hover .access-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .access-intro h2 {
        font-size: 2rem;
    }

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

    .access-section h3 {
        font-size: 1.5rem;
    }
}

/* Program Studi Page Styles */
.prodi-intro {
    margin-bottom: 3rem;
}

.prodi-intro h2 {
    font-size: 2.5rem;
    color: var(--ikta-dark);
    margin-bottom: 1rem;
}

.prodi-intro .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ikta-gray-600);
}

.prodi-section {
    margin-bottom: 4rem;
}

.prodi-section h3 {
    font-size: 1.75rem;
    color: var(--ikta-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ikta-yellow);
}

.prodi-section h3 i {
    color: var(--ikta-primary);
}

/* Visi Misi */
.vm-box {
    background: var(--ikta-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--ikta-primary);
}

.vm-box h4 {
    color: var(--ikta-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vm-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ikta-gray-700);
}

.vm-box ol {
    margin-left: 1.5rem;
}

.vm-box ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--ikta-gray-700);
}

/* Tujuan Sasaran */
.ts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ts-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--ikta-primary);
}

.ts-card h4 {
    color: var(--ikta-dark);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.ts-card ul {
    list-style: none;
}

.ts-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
    color: var(--ikta-gray-700);
}

.ts-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ikta-primary);
    font-weight: bold;
}

/* Career Grid */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.career-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ikta-primary);
}

.career-card i {
    font-size: 2.5rem;
    color: var(--ikta-primary);
    margin-bottom: 1rem;
}

.career-card h4 {
    font-size: 1.125rem;
    color: var(--ikta-dark);
    margin-bottom: 0.75rem;
}

.career-card p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    line-height: 1.6;
}

/* Curriculum */
.curriculum-category {
    background: var(--ikta-gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--ikta-primary);
}

.curriculum-category h4 {
    color: var(--ikta-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-sks {
    background: var(--ikta-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.curriculum-category p {
    color: var(--ikta-gray-600);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid var(--ikta-gray-200);
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: var(--ikta-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.profile-number {
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    background: var(--ikta-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.profile-card h4 {
    color: var(--ikta-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.profile-card p {
    color: var(--ikta-gray-600);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Competency Box */
.competency-box {
    background: linear-gradient(135deg, var(--ikta-dark), var(--ikta-primary));
    padding: 2.5rem;
    border-radius: 1rem;
    color: white;
}

.competency-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.competency-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comp-item i {
    color: var(--ikta-yellow);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.comp-item span {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Prodi CTA */
.prodi-cta {
    background: linear-gradient(135deg, var(--ikta-primary), var(--ikta-light));
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.prodi-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    border: none;
    padding: 0;
}

.prodi-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar Info Box */
.info-box {
    background: var(--ikta-gray-50);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.info-box h4 {
    color: var(--ikta-dark);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h4 i {
    color: var(--ikta-primary);
}

.info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ikta-gray-200);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item strong {
    display: block;
    color: var(--ikta-dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--ikta-gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Download Box */
.download-box {
    background: var(--ikta-dark);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.download-box h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-box h4 i {
    color: var(--ikta-yellow);
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.download-link:last-child {
    margin-bottom: 0;
}

.download-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.download-link i {
    color: var(--ikta-yellow);
    font-size: 1.25rem;
}

.download-link span {
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {

    .ts-grid,
    .profile-grid {
        grid-template-columns: 1fr;
    }

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

    .competency-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .prodi-intro h2 {
        font-size: 2rem;
    }

    .prodi-section h3 {
        font-size: 1.5rem;
    }

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

    .prodi-cta h3 {
        font-size: 1.5rem;
    }
}

/* News Single Page Responsive */
@media (max-width: 992px) {
    .page-grid.sidebar-right {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 3rem;
    }

    .news-meta {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .share-post {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .featured-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .content-area h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .content-area p {
        font-size: 0.9375rem;
    }

    .news-meta {
        font-size: 0.8125rem;
        gap: 0.75rem;
    }

    .share-links {
        width: 100%;
        justify-content: flex-start;
    }

    .share-link {
        width: 40px;
        height: 40px;
    }

    .sidebar-menu h3 {
        font-size: 1.125rem;
    }

    .newsletter-widget {
        padding: 1.25rem;
    }

    .newsletter-widget h4 {
        font-size: 1rem;
    }

    .page-layout {
        padding: 2rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    .content-area h2 {
        font-size: 1.25rem;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .featured-image {
        height: 250px;
    }

    .share-post span {
        font-size: 0.8125rem;
    }

    .share-link {
        width: 35px;
        height: 35px;
        font-size: 0.8125rem;
    }
}

/* News Grid Page Responsive */
@media (max-width: 768px) {
    .news-grid-page {
        grid-template-columns: 1fr;
    }

    .news-card {
        max-width: 100%;
    }
}

/* Announcements Responsive */
@media (max-width: 768px) {
    .anno-calendar-wrapper {
        grid-template-columns: 1fr;
    }

    .anno-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .anno-item .btn {
        width: 100%;
        justify-content: center;
    }

    .calendar-widget {
        margin-top: 2rem;
    }
}

/* PMB Actions Responsive */
@media (max-width: 768px) {
    .pmb-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .pmb-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Language Switcher Enhancement */
.top-bar__lang-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.top-bar__lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.top-bar__lang-btn:active {
    transform: scale(0.95);
}

.top-bar__lang-btn #current-lang {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Language switcher animation */
@keyframes langSwitch {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.top-bar__lang-btn.switching {
    animation: langSwitch 0.3s ease;
}

/* Additional Styles for Front Page Sections */
.btn-quote-action {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--ikta-dark);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    transition: var(--transition-base);
}

.btn-quote-action:hover {
    background: var(--ikta-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.play-icon {
    font-size: 1.5rem;
}

.icon-margin {
    margin-right: 0.5rem;
}

.pmb-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rektor-name {
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .quote-grid {
        padding: 0;
    }

    .quote-content {
        padding: 3rem 1rem;
        text-align: center;
    }

    .quote-content blockquote {
        font-size: 1.25rem;
    }

    .rektor-img-wrapper {
        padding-top: 3rem;
    }

    .rektor-img {
        height: 400px;
    }

    .pmb-card {
        flex-direction: column;
    }

    .pmb-info,
    .pmb-contact {
        padding: 2.5rem 1.5rem;
        text-align: center;
    }

    .pmb-info h2 {
        font-size: 1.75rem;
    }

    .pmb-actions {
        flex-direction: column;
        width: 100%;
    }

    .pmb-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Announcements Section Styles */
.announcements {
    padding: 5rem 0;
    background-color: var(--ikta-white);
}

.anno-calendar-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.anno-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.anno-item {
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-base);
}

.anno-item.important {
    background-color: rgba(251, 192, 45, 0.1);
    border-left: 5px solid var(--ikta-yellow);
}

.anno-item.regular {
    background-color: var(--ikta-gray-50);
    border-left: 5px solid var(--ikta-primary);
}

.anno-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.anno-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.badge {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
}

.badge.mb-0 {
    margin-bottom: 0;
}

.anno-date {
    font-size: 0.8125rem;
    color: var(--ikta-gray-600);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.anno-title {
    font-size: 1.125rem;
    color: var(--ikta-dark);
    margin: 0;
    line-height: 1.4;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.btn-primary-outline {
    background: transparent;
    color: var(--ikta-primary);
    border: 2px solid var(--ikta-primary);
}

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

/* Calendar Widget */
.calendar-widget {
    background: var(--ikta-gray-50);
    border-radius: 1.5rem;
    padding: 2rem;
    height: fit-content;
    box-shadow: var(--shadow-md);
}

.calendar-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ikta-gray-200);
}

.calendar-header h3 {
    font-size: 1.25rem;
    color: var(--ikta-dark);
    margin: 0;
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calendar-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.calendar-date {
    background: white;
    min-width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--ikta-primary);
    flex-shrink: 0;
}

.calendar-date .day {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ikta-dark);
    line-height: 1;
}

.calendar-date .month {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--ikta-gray-600);
    text-transform: uppercase;
}

.calendar-info h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--ikta-gray-800);
}

.calendar-info p {
    font-size: 0.75rem;
    color: var(--ikta-gray-600);
    margin: 0;
}

.calendar-event-title {
    margin: 0;
}

.calendar-event-desc {
    margin: 0;
}

.calendar-view-all-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ikta-gray-200);
}

.calendar-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--ikta-primary);
    font-weight: 700;
    font-size: 0.8125rem;
    transition: var(--transition-base);
}

.calendar-view-all:hover {
    color: var(--ikta-dark);
    gap: 0.75rem;
}

.icon-small {
    font-size: 0.75rem;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ikta-primary);
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.view-all-link:hover {
    color: var(--ikta-dark);
    gap: 0.75rem;
}

/* Responsive for Announcements */
@media (max-width: 1024px) {
    .anno-calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .announcements {
        padding: 3rem 0;
    }

    .anno-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .anno-item .btn {
        width: 100%;
        justify-content: center;
    }

    .anno-title {
        font-size: 1rem;
    }

    .calendar-widget {
        margin-top: 2rem;
    }

    .calendar-item {
        gap: 1rem;
    }

    .calendar-date {
        min-width: 50px;
        height: 50px;
    }

    .calendar-date .day {
        font-size: 1.125rem;
    }
}

/* Feature Card as Link */
.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover h3 {
    color: var(--ikta-primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Sidebar Menu Active State */
.sidebar-links a.active {
    background: var(--ikta-primary);
    color: white;
    padding-left: 1.5rem;
}

.sidebar-links a:hover {
    background: var(--ikta-primary);
    color: white;
    padding-left: 1.5rem;
}

/* ============================================================
   PENGUMUMAN PAGE
   ============================================================ */
.announcement-page-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border-left: 5px solid var(--ikta-gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--ikta-primary);
}

.announcement-card.important {
    border-left-color: var(--ikta-yellow);
    background: #fffdf5;
}

.anno-date-box {
    min-width: 80px;
    height: 80px;
    background: var(--ikta-gray-50);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ikta-dark);
    border: 1px solid var(--ikta-gray-200);
    flex-shrink: 0;
}

.anno-date-box .day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.anno-date-box .month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ikta-gray-600);
}

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

.anno-meta {
    font-size: 0.75rem;
    color: var(--ikta-gray-600);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.anno-tag {
    background: var(--ikta-primary);
    color: white;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 700;
    font-size: 0.625rem;
    text-transform: uppercase;
}

.anno-tag.warning {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
}

.anno-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--ikta-dark);
    line-height: 1.4;
}

.anno-content p {
    font-size: 0.875rem;
    color: var(--ikta-gray-700);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.anno-action {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ikta-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ikta-gray-600);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.announcement-card:hover .anno-action {
    background: var(--ikta-primary);
    color: white;
}

/* Announcement Search Widget */
.anno-search-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.anno-search-widget h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--ikta-dark);
}

.anno-search-form {
    display: flex;
    gap: 0.5rem;
}

.anno-search-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--ikta-gray-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.anno-search-form input:focus {
    border-color: var(--ikta-primary);
}

.anno-search-form button {
    background: var(--ikta-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.anno-search-form button:hover {
    background: var(--ikta-dark);
}

/* Responsive Pengumuman */
@media (max-width: 768px) {
    .announcement-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .anno-date-box {
        flex-direction: row;
        width: 100%;
        height: 40px;
        gap: 0.5rem;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .anno-date-box .day {
        font-size: 1.25rem;
    }

    .anno-action {
        display: none;
    }
}

/* ============================================================
   KALENDER AKADEMIK PAGE
   ============================================================ */
.calendar-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.kalender-download-box {
    background: linear-gradient(135deg, var(--ikta-dark), var(--ikta-primary));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kalender-download-box .download-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kalender-download-box .download-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.kalender-download-btn {
    background: white;
    color: var(--ikta-dark);
    border: none;
    white-space: nowrap;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.kalender-download-btn:hover {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
    transform: translateY(-2px);
}

.semester-badge {
    display: inline-block;
    background: var(--ikta-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.semester-badge.genap {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
}

.kalender-semester-block {
    margin-bottom: 3rem;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.calendar-table th {
    text-align: left;
    padding: 1rem;
    background: var(--ikta-gray-50);
    color: var(--ikta-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--ikta-gray-200);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--ikta-gray-100);
    color: var(--ikta-gray-700);
    vertical-align: top;
    font-size: 0.9375rem;
}

.calendar-table tr:hover td {
    background: #fffdf5;
}

.calendar-table .date-col {
    width: 25%;
    font-weight: 600;
    color: var(--ikta-primary) !important;
}

.calendar-table .event-col {
    width: 55%;
}

.calendar-table .ket-col {
    width: 20%;
    font-size: 0.875rem;
    color: var(--ikta-gray-600) !important;
}

.kalender-extra-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ikta-gray-200);
}

/* Responsive Kalender */
@media (max-width: 768px) {
    .calendar-container {
        padding: 1.5rem;
    }

    .kalender-download-box {
        flex-direction: column;
        text-align: center;
    }

    .kalender-download-btn {
        width: 100%;
        justify-content: center;
    }

    .calendar-table thead {
        display: none;
    }

    .calendar-table tr {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        border: 1px solid var(--ikta-gray-200);
        margin-bottom: 1rem;
        border-radius: 0.5rem;
    }

    .calendar-table td {
        padding: 0.25rem 0;
        border: none;
        width: 100% !important;
    }

    .calendar-table .date-col {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .calendar-table .ket-col {
        margin-top: 0.25rem;
        font-style: italic;
    }
}

/* ============================================================
   KALENDER AKADEMIK PAGE - Unique classes to avoid conflicts
   ============================================================ */
.kalender-page-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.kalender-download-box {
    background: linear-gradient(135deg, var(--ikta-dark), var(--ikta-primary));
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kalender-download-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kalender-download-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    margin: 0;
}

.kalender-download-btn {
    background: white;
    color: var(--ikta-dark);
    border: none;
    white-space: nowrap;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.kalender-download-btn:hover {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
    transform: translateY(-2px);
}

.kalender-semester-badge {
    display: inline-block;
    background: var(--ikta-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kalender-semester-badge.genap {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
}

.kalender-semester-block {
    margin-bottom: 3rem;
}

.kalender-table-wrap {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--ikta-gray-200);
}

.kalender-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.kalender-table th {
    text-align: left;
    padding: 1rem 1.25rem;
    background: var(--ikta-gray-50);
    color: var(--ikta-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--ikta-gray-200);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kalender-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ikta-gray-100);
    color: var(--ikta-gray-700);
    vertical-align: top;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.kalender-table tr:last-child td {
    border-bottom: none;
}

.kalender-table tr:hover td {
    background: #fffdf5;
}

.kalender-table .kalender-date-col {
    width: 28%;
    font-weight: 600;
    color: var(--ikta-primary);
}

.kalender-table .kalender-event-col {
    width: 52%;
}

.kalender-table .kalender-ket-col {
    width: 20%;
    font-size: 0.875rem;
    color: var(--ikta-gray-500);
    font-style: italic;
}

.kalender-extra-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ikta-gray-200);
}

/* Responsive Kalender Page */
@media (max-width: 768px) {
    .kalender-page-container {
        padding: 1.25rem;
    }

    .kalender-download-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .kalender-download-btn {
        width: 100%;
        justify-content: center;
    }

    .kalender-table-wrap {
        border-radius: 0.5rem;
    }

    .kalender-table {
        min-width: 400px;
    }

    .kalender-table th,
    .kalender-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .kalender-table {
        min-width: 320px;
    }

    .kalender-table .kalender-date-col {
        width: 35%;
    }

    .kalender-table .kalender-event-col {
        width: 45%;
    }

    .kalender-table .kalender-ket-col {
        width: 20%;
    }
}

/* ============================================================
   DOWNLOAD PAGE
   ============================================================ */
.dl-category {
    margin-bottom: 4rem;
}

.dl-category h3 {
    font-size: 1.5rem;
    color: var(--ikta-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--ikta-gray-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dl-category h3 i {
    color: var(--ikta-primary);
}

.dl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dl-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ikta-gray-100);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.dl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ikta-gray-200);
    transition: var(--transition-base);
}

.dl-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.dl-card:hover::before {
    background: var(--ikta-primary);
}

.dl-file-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.dl-file-icon.type-pdf  { color: #F40F02; }
.dl-file-icon.type-doc  { color: #2B579A; }
.dl-file-icon.type-zip  { color: #EDB808; }
.dl-file-icon.type-img  { color: #4CAF50; }

.dl-file-info h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--ikta-dark);
    line-height: 1.4;
}

.dl-file-info p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.dl-file-meta {
    font-size: 0.75rem;
    color: var(--ikta-gray-500);
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ikta-gray-100);
}

.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--ikta-gray-50);
    color: var(--ikta-dark);
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: var(--transition-base);
    text-decoration: none;
    margin-top: auto;
}

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

.dl-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

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

/* ============================================================
   HUBUNGI PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--ikta-dark);
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--ikta-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--ikta-gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ikta-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid var(--ikta-gray-200);
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--ikta-dark);
}

.info-content p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--ikta-primary);
    font-weight: 600;
}

.contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--ikta-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ikta-gray-700);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--ikta-gray-200);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: var(--transition-base);
    font-family: inherit;
    color: var(--ikta-gray-800);
}

.form-control:focus {
    outline: none;
    border-color: var(--ikta-primary);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--ikta-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
}

.btn-submit:hover {
    background: var(--ikta-dark);
    transform: translateY(-2px);
}

.contact-alert {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.contact-alert--success {
    background: rgba(46, 125, 50, 0.1);
    color: var(--ikta-dark);
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.contact-alert--error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.map-section {
    margin-top: 5rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        height: 300px;
        border-radius: 1rem;
        margin-top: 3rem;
    }
}

/* ============================================================
   ACCESS PAGE
   ============================================================ */
.access-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.access-intro h2 {
    font-size: 2.5rem;
    color: var(--ikta-dark);
    margin-bottom: 1rem;
}

.access-intro p {
    font-size: 1.125rem;
    color: var(--ikta-gray-600);
    line-height: 1.8;
}

.access-section {
    margin-bottom: 5rem;
}

.access-section h3 {
    font-size: 1.75rem;
    color: var(--ikta-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--ikta-yellow);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.access-section h3 i {
    color: var(--ikta-primary);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.access-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ikta-primary);
}

.access-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ikta-primary), var(--ikta-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.access-icon i {
    font-size: 1.75rem;
    color: white;
}

.access-icon.kemdikbud {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.access-card:hover .access-icon {
    transform: scale(1.1) rotate(5deg);
}

.access-card h4 {
    font-size: 1.125rem;
    color: var(--ikta-dark);
    margin-bottom: 0.5rem;
}

.access-card p {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.access-arrow {
    margin-top: auto;
    color: var(--ikta-primary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.access-card:hover .access-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .access-intro h2 {
        font-size: 2rem;
    }

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

    .access-card {
        padding: 1.25rem;
    }

    .access-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .access-icon i {
        font-size: 1.25rem;
    }

    .access-section h3 {
        font-size: 1.5rem;
    }
}

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

/* ============================================================
   DOSEN & STAF
   ============================================================ */
.dosen-intro {
    margin-bottom: 2.5rem;
}

.dosen-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dosen-filter-btn {
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--ikta-gray-200);
    background: white;
    color: var(--ikta-gray-700);
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.dosen-filter-btn:hover {
    border-color: var(--ikta-primary);
    color: var(--ikta-primary);
}

.dosen-filter-btn.is-active {
    background: var(--ikta-primary);
    border-color: var(--ikta-primary);
    color: white;
}

.dosen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dosen-card {
    background: white;
    border: 1px solid var(--ikta-gray-200);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.dosen-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ikta-primary);
}

.dosen-card__photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ikta-gray-100);
}

.dosen-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dosen-card:hover .dosen-card__photo img {
    transform: scale(1.06);
}

.dosen-card__body {
    padding: 1.25rem;
    flex: 1;
}

.dosen-card__name {
    font-size: 1.0625rem;
    color: var(--ikta-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.dosen-card__role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ikta-primary);
    margin-bottom: 0.75rem;
}

.dosen-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dosen-card__meta li {
    font-size: 0.75rem;
    color: var(--ikta-gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-word;
}

.dosen-card__meta li i {
    color: var(--ikta-primary);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.dosen-card__meta a {
    color: var(--ikta-gray-600);
}

.dosen-card__meta a:hover {
    color: var(--ikta-primary);
}

.dosen-empty {
    background: var(--ikta-gray-50);
    border: 1px dashed var(--ikta-gray-200);
    border-radius: 1rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--ikta-gray-600);
}

@media (max-width: 480px) {
    .dosen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .dosen-card__body {
        padding: 0.875rem;
    }
}

/* ============================================================
   ARCHIVE PROGRAM STUDI (full-width)
   ============================================================ */
.prodi-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.prodi-arch-card {
    background: white;
    border: 1px solid var(--ikta-gray-200);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.prodi-arch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--ikta-primary);
}

.prodi-arch-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.prodi-arch-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ikta-gray-100);
}

.prodi-arch-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prodi-arch-card:hover .prodi-arch-card__img {
    transform: scale(1.07);
}

.prodi-arch-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prodi-arch-card__placeholder .material-icons {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.prodi-arch-card__jenjang {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
}

.prodi-arch-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prodi-arch-card__title {
    font-size: 1.25rem;
    color: var(--ikta-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.prodi-arch-card:hover .prodi-arch-card__title {
    color: var(--ikta-primary);
}

.prodi-arch-card__gelar {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ikta-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.prodi-arch-card__excerpt {
    font-size: 0.875rem;
    color: var(--ikta-gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.prodi-arch-card__footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--ikta-gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.prodi-arch-card__akreditasi {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ikta-gray-700);
    background: var(--ikta-gray-50);
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.prodi-arch-card__akreditasi i {
    color: var(--ikta-yellow);
}

.prodi-arch-card__more {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--ikta-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}

.prodi-arch-card:hover .prodi-arch-card__more {
    gap: 0.7rem;
}

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

/* ============================================================
   FOOTER WIDGETS — styling universal agar semua widget rapi
   ============================================================ */
.footer-widget {
    margin-bottom: 2.5rem;
}
.footer-widget:last-child {
    margin-bottom: 0;
}

/* Judul widget (samakan dengan judul kolom footer) */
.footer-widget .widget-title,
.footer-widget h2,
.footer-widget h3,
.footer-widget h4,
.footer-widget h5 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-widget .widget-title::after,
.footer-widget h2::after,
.footer-widget h3::after,
.footer-widget h4::after,
.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--ikta-yellow);
}

/* Teks & paragraf */
.footer-widget p,
.footer-widget .textwidget,
.footer-widget li {
    font-size: 0.875rem;
    color: var(--ikta-gray-200);
    line-height: 1.7;
}

/* Daftar (list, menu, kategori, arsip, recent posts) */
.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-widget ul li {
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-widget ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Tautan widget */
.footer-widget a {
    color: var(--ikta-gray-200);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-widget a:hover {
    color: var(--ikta-yellow);
    padding-left: 0.35rem;
}

/* Navigation Menu widget */
.footer-widget .menu li a::before,
.footer-widget .sub-menu { /* sembunyikan indikator default */
    /* no-op, biarkan rapi */
}
.footer-widget .menu li a {
    width: 100%;
}

/* Dropdown (kategori/arsip) & search */
.footer-widget select,
.footer-widget input[type="text"],
.footer-widget input[type="search"],
.footer-widget input[type="email"] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
}
.footer-widget input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-widget select option { color: #1e293b; }

.footer-widget .search-form,
.footer-widget .wp-block-search__inside-wrapper {
    display: flex;
    gap: 0.5rem;
}
.footer-widget .search-submit,
.footer-widget .wp-block-search__button {
    background: var(--ikta-yellow);
    color: var(--ikta-dark);
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

/* Recent posts / comments dengan tanggal */
.footer-widget .post-date,
.footer-widget .rss-date,
.footer-widget .wp-block-latest-posts__post-date {
    display: block;
    font-size: 0.75rem;
    color: var(--ikta-yellow);
    margin-top: 0.2rem;
}

/* Gambar di widget */
.footer-widget img {
    border-radius: 0.5rem;
    height: auto;
}

/* Galeri ikon sosial (jika pakai Social Icons block) */
.footer-widget .wp-social-link,
.footer-widget .wp-block-social-link {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   SINGLE / KONTEN ARTIKEL — penyempurnaan mobile
   ============================================================ */
/* Cegah overflow horizontal dari grid item & teks panjang */
.content-area,
.entry-content {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.entry-content a {
    overflow-wrap: anywhere;
}

/* Media di dalam konten selalu pas */
.entry-content img,
.entry-content video,
.entry-content iframe,
.entry-content embed,
.entry-content object {
    max-width: 100%;
    height: auto;
}

.entry-content iframe {
    width: 100%;
}

/* Tabel di konten bisa di-scroll, tidak menjebol layout */
.entry-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Featured image: di mobile batasi tinggi (tetap tanpa distorsi via object-fit) */
@media (max-width: 768px) {
    .featured-image {
        height: auto;
        max-height: 360px;
    }
}

/* Page header minimalis — responsif */
@media (max-width: 768px) {
    .page-header { padding: 0.9rem 0; }
    .page-header h1 { font-size: 1.125rem; }
    .page-header .container { gap: 0.25rem 1rem; }
}

/* ============================================================
   TOP BAR — pemisah "|" antar item (kiri & kanan)
   ============================================================ */
.top-bar__left li,
.top-bar__right li {
    list-style: none;
}

/* Sisipkan "|" sebelum setiap item kecuali yang pertama */
.top-bar__left > *:not(:first-child)::before,
.top-bar__right > *:not(:first-child)::before {
    content: "|";
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ============================================================
   KONTEN: caption gambar (figure / .wp-caption) — anti overflow
   WordPress menyetel width tetap (px) pada figure caption,
   ini membuatnya melebihi layar di mobile. Paksa responsif.
   ============================================================ */
.entry-content figure,
.entry-content .wp-caption,
.entry-content .wp-block-image {
    max-width: 100% !important;
    width: auto !important;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.entry-content figure img,
.entry-content .wp-caption img,
.entry-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.entry-content .wp-caption-text,
.entry-content figcaption {
    font-size: 0.85rem;
    color: var(--ikta-gray-600);
    text-align: center;
    line-height: 1.5;
    padding: 0.5rem 0.5rem 0;
    margin: 0;
}

/* Di mobile: gambar align kiri/kanan jangan float (cegah sempit/overflow) */
@media (max-width: 600px) {
    .entry-content .alignleft,
    .entry-content .alignright,
    .entry-content .wp-caption.alignleft,
    .entry-content .wp-caption.alignright {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
