
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
    --bg-main: #f8fafc;
    --bg-card: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    --bg-card-hover: linear-gradient(145deg, #ffffff 0%, #edf4ff 100%);
    --card-border: rgba(203, 213, 225, 0.75);
    --card-border-hover: rgba(37, 99, 235, 0.3);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #cbd5e1;
    --shadow-sm: 0 4px 16px -2px rgba(15, 23, 42, 0.04), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 35px -8px rgba(37, 99, 235, 0.12), 0 4px 12px -2px rgba(37, 99, 235, 0.06);
    --font: 'Plus Jakarta Sans', sans-serif;
    --radius: 14px;
}

/* Sleek Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    border: 2px solid #0f172a;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

html, body {
    font-family: var(--font);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

ul {
    list-style: none;
}

/* Base Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navbar - Liquid Glass Capsule */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    padding: 0 24px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-shrink: 1;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.logo-text {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-text span {
    color: #60a5fa; /* Sky blue */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8; /* Light slate text */
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff; /* Turns white on hover/active */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.2s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-menu-cta {
    display: none !important;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Footer Section - Premium Dark Blue Gradient */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #030712 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: 100px;
    border-top: 4px solid var(--accent); /* Accent indicator line */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-contact i {
    color: #60a5fa;
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
    font-size: 14px;
}

/* Home / Welcome Page Styles */
.hero {
    padding: 130px 0 80px !important;
    background: radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 15% 85%, rgba(124, 58, 237, 0.06) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

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

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.secondary-button {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background-color: var(--border);
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-box {
    width: 360px;
    height: 360px;
    background: var(--accent-gradient);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite alternate;
    position: relative;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.graphic-overlay {
    position: absolute;
    width: 300px;
    height: 220px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.code-header {
    display: flex;
    gap: 6px;
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.code-body {
    margin-top: 16px;
    font-family: monospace;
    font-size: 13px;
    color: #1e293b;
}

.code-line {
    margin-bottom: 4px;
}

.code-line span {
    color: #4f46e5;
    font-weight: 700;
}

/* Statistics Section */
.stats {
    padding: 60px 0;
    background-color: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.stat-item .stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}

/* Section Common Styles */
.section {
    padding: 100px 0;
}

.section-bg {
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Cards Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--accent-gradient);
    color: white;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Sambutan Kaprodi */
.kaprodi-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.kaprodi-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

.kaprodi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kaprodi-photo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.kaprodi-photo-fallback i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.kaprodi-info {
    font-weight: 600;
}

.kaprodi-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.kaprodi-title {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kaprodi-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
}

/* Sejarah / Profil Page */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: white;
    border: 4px solid var(--accent);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    padding: 24px;
    background-color: white;
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Visi & Misi Layout */
.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.visi-card, .misi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.visi-card h3, .misi-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.visi-card i, .misi-card i {
    color: var(--accent);
}

.misi-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
}

.misi-list li::before {
    content: '\F2EC'; /* Bootstrap Icon check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 16px;
}

/* PEO Section */
.peo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.peo-card {
    background-color: #ffffff;
    border-left: 4px solid var(--accent);
    padding: 30px;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.peo-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.peo-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.peo-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Dosen Page Styles */
.dosen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dosen-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.dosen-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    position: relative;
    background-color: #f1f5f9;
    overflow: hidden;
}

.dosen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Memastikan area wajah/kepala selalu prioritas terlihat */
    transition: transform 0.5s ease;
}

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

.dosen-fallback-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #94a3b8;
}

.dosen-fallback-avatar i {
    font-size: 70px;
}

.dosen-body {
    padding: 24px;
    text-align: center;
}

.dosen-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.dosen-nidn {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.dosen-spec-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(37, 99, 235, 0.05);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.dosen-email {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Kurikulum Page Styles */
.kurikulum-tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    background-color: #f1f5f9;
}

.tab-btn.active {
    background: var(--accent);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.kurikulum-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.kurikulum-pane.active {
    display: block;
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.table-prodi {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 15px;
}

.table-prodi th {
    background-color: #f8fafc;
    padding: 18px 24px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.table-prodi td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

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

.table-prodi tr:hover td {
    background-color: #f8fafc;
}

.badge-sks {
    display: inline-block;
    padding: 4px 8px;
    background-color: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
}

.badge-wajib {
    display: inline-block;
    padding: 4px 8px;
    background-color: #dcfce7;
    color: #15803d;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
}

.badge-pilihan {
    display: inline-block;
    padding: 4px 8px;
    background-color: #fef3c7;
    color: #b45309;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
}

/* Fasilitas Page Styles */
.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fasilitas-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.fasilitas-img {
    height: 220px;
    background-color: #f1f5f9;
    position: relative;
}

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

.fasilitas-fallback-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 60px;
}

.fasilitas-fallback-img i {
    opacity: 0.8;
}

.fasilitas-body {
    padding: 24px;
}

.fasilitas-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.fasilitas-body p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Kontak Page Styles */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.kontak-info-box {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.kontak-list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.kontak-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.kontak-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.kontak-text p {
    font-size: 14px;
    color: var(--text-secondary);
}

.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.kontak-form-box {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Animations */
@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 60%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .graphic-box {
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dosen-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .fasilitas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kaprodi-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    .kaprodi-photo {
        width: 100%;
        max-width: 300px;
        aspect-ratio: 3 / 4;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 60px !important;
    }



    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        box-shadow: var(--shadow-sm);
    }
    
    .navbar {
        height: 70px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .navbar .cta-button {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3, .dosen-grid, .fasilitas-grid {
        grid-template-columns: 1fr;
    }
    
    .visimisi-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 23px;
        right: auto;
    }
    
    .timeline-item.right::after {
        left: 23px;
    }
    
    .kontak-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   ADDITIONAL STYLES FOR DYNAMIC MIGRATION (SLIDER & NEWS)
   ======================================================== */

/* 1. Hero Full-bleed Slideshow */
.hero-slider {
    position: relative;
    height: 620px;
    width: 100%;
    overflow: hidden;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    color: white;
    z-index: 10;
    padding-top: 40px;
}

.slide-content .hero-title {
    color: white;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.slide-content .hero-desc {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 650px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    transition: all 0.2s ease;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}

/* 2. News Cards */
.news-card {
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    scroll-snap-align: start;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

.news-img {
    height: 220px;
    overflow: hidden;
    background-color: #f1f5f9;
}

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

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

.news-fallback-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #94a3b8;
    font-size: 50px;
}

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

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body .news-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.news-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

/*.news-card:hover .news-link */
.news-card:hover .news-link {
    gap: 10px;
}

/* Responsive adjustments for news card slider */
@media (max-width: 1024px) {
    .news-card {
        flex: 0 0 calc((100% - 30px) / 2) !important;
    }
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 520px;
    }
    .slide-content .hero-title {
        font-size: 38px;
    }
    .slide-content .hero-desc {
        font-size: 16px;
    }
    .slider-btn {
        display: none; /* Hide buttons on mobile for touch gestures */
    }
}

/* ========================================================
   ADMIN DASHBOARD CSS
   ======================================================== */

.admin-container {
    display: flex;
    min-height: 100vh;
    background-color: #f1f5f9;
}

.admin-sidebar {
    width: 260px;
    background-color: #0f172a;
    color: white;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-brand {
    padding: 0 24px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #94a3b8;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-link:hover, .sidebar-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.08);
}

.sidebar-link.active {
    background-color: var(--accent);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.admin-main {
    margin-left: 260px;
    flex-grow: 1;
    padding: 40px;
    background-color: #f8fafc;
}

.admin-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.admin-section.active {
    display: block;
}

.admin-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.admin-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

/* Modal Style for Edit Popups */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.admin-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #0f172a;
}

/* Table Controls */
.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-action.edit {
    color: #f59e0b;
    background-color: #fef3c7;
    border-color: #fde68a;
}

.btn-action.edit:hover {
    background-color: #f59e0b;
    color: white;
    border-color: transparent;
}

.btn-action.delete {
    color: #ef4444;
    background-color: #fee2e2;
    border-color: #fecdd3;
}

.btn-action.delete:hover {
    background-color: #ef4444;
    color: white;
    border-color: transparent;
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Toast Card */
.toast-card {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 450px;
    animation: slideInRight 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: all 0.3s ease;
}

.toast-card.success {
    border-left: 4px solid #10b981;
}

.toast-card.error {
    border-left: 4px solid #ef4444;
}

.toast-icon {
    font-size: 20px;
}

.toast-card.success .toast-icon {
    color: #10b981;
}

.toast-card.error .toast-icon {
    color: #ef4444;
}

.toast-content {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.toast-close {
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: white;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* Search Modal & Search Trigger Styles */
.nav-search-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: 0;
    outline: none;
}

.nav-search-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.search-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 20px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 35px;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2510;
}

.search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    padding: 0;
}

.search-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.search-modal-form {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.search-modal-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 18px;
}

.search-modal-input {
    width: 100%;
    padding: 16px 24px 16px 56px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
}

.search-modal-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    background: rgba(15, 23, 42, 0.7);
}

.search-modal-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

.search-modal-hints a {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-modal-hints a:hover {
    background: var(--accent);
    border-color: transparent;
    color: white;
}

/* Hide scrollbar for Chrome, Safari, and WebKit on news carousel */
.news-scroll-container::-webkit-scrollbar {
    display: none !important;
}

/* Responsive styles for Profil Lulusan (PEO Grid) */
@media (max-width: 1024px) {
    .peo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .peo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .footer-brand p {
        max-width: 100% !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px;
    }
}

/* Background Glow Orbs for modern aesthetic */
.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    -webkit-filter: blur(160px);
    opacity: 0.08;
    pointer-events: none;
    z-index: -99;
}
.orb-1 {
    top: 5%;
    right: -150px;
    background: var(--accent);
}
.orb-2 {
    top: 35%;
    left: -200px;
    background: #4f46e5; /* Indigo */
    width: 700px;
    height: 700px;
}
.orb-3 {
    bottom: 12%;
    right: -150px;
    background: var(--accent);
}

/* Premium Tinted Cards System (Non-plain white design) */
.dosen-card, .news-card, .peo-card, .card, .stat-item, .keunggulan-card, .keunggulan-slide-card, .fasilitas-card, .visi-card, .misi-card, .kontak-info-box, .kontak-form-box, .search-result-card, .unduhan-card {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%) !important;
    border: 1px solid rgba(203, 213, 225, 0.75) !important;
    box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dosen-card:hover, .news-card:hover, .peo-card:hover, .card:hover, .stat-item:hover, .keunggulan-card:hover, .keunggulan-slide-card:hover, .fasilitas-card:hover, .visi-card:hover, .misi-card:hover, .kontak-info-box:hover, .kontak-form-box:hover, .search-result-card:hover, .unduhan-card:hover {
    background: linear-gradient(145deg, #ffffff 0%, #edf4ff 100%) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15), 0 0 0 1px rgba(37, 99, 235, 0.1) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
}

/* Avatar Fallback Color Schemes */
.avatar-scheme-0 { background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%) !important; color: #64748b !important; }
.avatar-scheme-1 { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%) !important; color: #0284c7 !important; }
.avatar-scheme-2 { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important; color: #d97706 !important; }
.avatar-scheme-3 { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%) !important; color: #16a34a !important; }
.avatar-scheme-4 { background: linear-gradient(135deg, #fae8ff 0%, #f5d0fe 100%) !important; color: #c084fc !important; }
.avatar-scheme-5 { background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%) !important; color: #f43f5e !important; }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Laptop & Medium Screens (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .navbar {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13.5px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .mobile-menu-cta {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .header {
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
        transform: none !important;
        top: 14px;
        border-radius: 20px;
    }
    
    .navbar {
        height: 64px;
        padding: 0 16px;
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
    
    .logo-container {
        flex: 1 1 auto;
        min-width: 0;
        margin-right: 6px;
    }
    
    .logo-text {
        font-size: 13.5px;
        font-weight: 800;
        line-height: 1.15;
        white-space: normal;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: none;
        flex: 1 1 auto;
        min-width: 0;
    }
    
    .nav-actions {
        flex-shrink: 0;
        gap: 6px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-cta-link {
        display: none !important;
    }

    .mobile-menu-cta {
        display: block !important;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px) scale(0.98);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        pointer-events: none;
    }
    
    .nav-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 10px 16px;
        border-radius: 10px;
        color: #cbd5e1;
        width: 100%;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }
    
    .nav-link::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .news-slider-btn {
        display: none !important;
    }
    .glow-orb {
        display: none !important;
    }
    .slider-arrow-btn {
        display: none !important;
    }
    .keunggulan-slide-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .header {
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        transform: none !important;
        top: 10px;
        border-radius: 16px;
    }
    
    .navbar {
        height: 58px;
        padding: 0 12px;
    }
    
    .logo-text {
        font-size: 12px;
        line-height: 1.12;
        letter-spacing: -0.2px;
        white-space: normal;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-width: none;
    }

    .logo-image img {
        height: 32px !important;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-search-trigger, .mobile-toggle {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

