:root {
    --primary: #1e3c72;
    --secondary: #2a5298;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

/* Hero Section */
.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.news-card,
.announcement-card,
.testimonial-card,
.faculty-card,
.program-card {
    transition: all 0.3s ease;
}

.news-card:hover,
.faculty-card:hover,
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

/* Buttons */
.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    position: relative;
    overflow: hidden;
    background: var(--gradient) !important;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: -40% -20% auto -20%;
    height: 220px;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.20), transparent 70%);
    transform: rotate(-8deg);
    pointer-events: none;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Footer */
footer {
    margin-top: 5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   Premium Theme Overrides (Elegant / International)
   -------------------------------------------------------------------------- */

:root {
    --lux-bg: #0b1220;
    --lux-surface: #ffffff;
    --lux-surface-2: #f8fafc;
    --lux-card: rgba(255, 255, 255, 0.92);
    --lux-card-2: rgba(255, 255, 255, 0.96);
    --lux-border: rgba(15, 23, 42, 0.10);
    --lux-text: #0b1220;
    --lux-muted: rgba(11, 18, 32, 0.65);
    --lux-accent: #c9a227;
    --lux-accent-2: #f3d37a;
    --lux-blue: #204eeb;
    --lux-blue-2: #6aa7ff;
    --lux-shadow: 0 18px 60px rgba(17, 24, 39, 0.14);
    --lux-shadow-soft: 0 10px 35px rgba(17, 24, 39, 0.10);
}

body {
    background:
        radial-gradient(1200px 800px at 10% -10%, rgba(32, 78, 235, 0.12), transparent 55%),
        radial-gradient(900px 600px at 90% 0%, rgba(201, 162, 39, 0.14), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f8ff 55%, #ffffff 100%);
    color: var(--lux-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

p, a, li, span, small, button, input, textarea {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Make default Bootstrap text helpers look premium on dark background */
.text-muted {
    color: rgba(11, 18, 32, 0.62) !important;
}

.bg-light {
    background:
        radial-gradient(900px 500px at 15% 0%, rgba(32, 78, 235, 0.06), transparent 55%),
        radial-gradient(700px 450px at 85% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
        #f8fafc !important;
}

/* Navbar (glass) */
.navbar-lux {
    background: rgba(255, 255, 255, 0.88) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Make navbar items feel like buttons */
.navbar.navbar-lux .navbar-nav {
    gap: 0.35rem;
}

.navbar-lux .navbar-brand img {
    filter: drop-shadow(0 10px 18px rgba(17, 24, 39, 0.12));
}

/* High-specificity to override Bootstrap */
.navbar.navbar-lux .navbar-nav .nav-link,
.navbar.navbar-lux .navbar-nav .nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: rgba(11, 18, 32, 0.88) !important;
    padding: 0.55rem 0.95rem !important;
    border-radius: 999px !important;
    background: rgba(17, 24, 39, 0.04) !important;
    border: 1px solid rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.navbar.navbar-lux .navbar-nav .nav-link:hover,
.navbar.navbar-lux .navbar-nav .nav-link:focus {
    color: rgba(11, 18, 32, 1) !important;
    background: rgba(32, 78, 235, 0.10) !important;
    border-color: rgba(32, 78, 235, 0.22) !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.navbar.navbar-lux .navbar-nav .nav-link.active,
.navbar.navbar-lux .navbar-nav .show > .nav-link {
    color: rgba(11, 18, 32, 1) !important;
    background: rgba(201, 162, 39, 0.14) !important;
    border-color: rgba(201, 162, 39, 0.30) !important;
    box-shadow: 0 18px 45px rgba(201, 162, 39, 0.16);
}

.navbar-lux .nav-link::after {
    display: none;
}

/* Raised mobile menu button */
.navbar-lux .navbar-toggler {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 0.55rem 0.7rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.navbar-lux .navbar-toggler:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.navbar-lux .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(32, 78, 235, 0.20), 0 18px 40px rgba(15, 23, 42, 0.18);
}

.navbar-lux .navbar-toggler-icon {
    filter: contrast(1.25) saturate(1.1);
}

.navbar-lux .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--lux-shadow-soft);
}

.navbar-lux .dropdown-item {
    color: rgba(11, 18, 32, 0.86);
}

.navbar-lux .dropdown-item:hover {
    background: rgba(32, 78, 235, 0.08);
    color: rgba(11, 18, 32, 1);
}

/* Buttons */
.btn-lux {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #204eeb 0%, #1e3c72 100%) !important;
    border: 1px solid rgba(32, 78, 235, 0.25) !important;
    box-shadow: 0 10px 28px rgba(32, 78, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(32, 78, 235, 0.35);
}

.btn-outline-primary {
    border-color: rgba(32, 78, 235, 0.45) !important;
    color: rgba(32, 78, 235, 0.95) !important;
    background: rgba(32, 78, 235, 0.03);
}

.btn-outline-primary:hover {
    background: rgba(32, 78, 235, 0.10) !important;
    border-color: rgba(32, 78, 235, 0.85) !important;
    color: rgba(32, 78, 235, 1) !important;
}

.btn-light {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
}

/* Cards / Surfaces */
.card,
.announcement-card,
.news-card,
.testimonial-card,
.faculty-card,
.program-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 100%) !important;
    border: 1px solid rgba(15, 23, 42, 0.10) !important;
    box-shadow: var(--lux-shadow-soft);
}

.card-title {
    color: rgba(11, 18, 32, 1);
}

.card:hover {
    box-shadow: var(--lux-shadow);
}

/* Hero */
.hero-slide {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-slide .display-3 {
    text-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(12px);
}

/* Section titles */
.title-underline {
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.0) 0%, rgba(201, 162, 39, 0.95) 35%, rgba(106, 167, 255, 0.95) 65%, rgba(106, 167, 255, 0.0) 100%);
    opacity: 0.9;
}

/* Modern icon widgets */
.lux-widget {
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: var(--lux-shadow-soft);
    height: 100%;
}

.lux-widget .lux-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(120% 120% at 30% 0%, rgba(201, 162, 39, 0.35), rgba(32, 78, 235, 0.18));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.lux-widget .lux-icon i {
    font-size: 22px;
    color: rgba(11, 18, 32, 0.92);
}

.lux-widget h5 {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    letter-spacing: -0.01em;
}

/* Stats */
.stat-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: var(--lux-shadow-soft);
}

/* Announcement icon */
.announcement-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.16);
    border: 1px solid rgba(201, 162, 39, 0.28);
    color: rgba(243, 211, 122, 0.95);
}

/* Footer */
.footer-lux {
    background:
        radial-gradient(900px 500px at 10% 0%, rgba(32, 78, 235, 0.10), transparent 55%),
        radial-gradient(800px 500px at 90% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 75%, #ffffff 100%) !important;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 30px;
    background: var(--gradient);
    color: #FFF;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* Title Underline */
.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 10px auto;
    border-radius: 2px;
}

/* Content Styling */
.content {
    line-height: 1.8;
}

.content h1, .content h2, .content h3, 
.content h4, .content h5, .content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.content p {
    margin-bottom: 1rem;
}

.content ul, .content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.content table th,
.content table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.content table th {
    background-color: var(--light);
    font-weight: 600;
}

/* Statistics Section */
.stat-item {
    padding: 2rem 1rem;
}

.stat-item i {
    display: block;
    margin-bottom: 1rem;
}

.stat-item h2 {
    margin-bottom: 0.5rem;
}

/* Announcement Icon */
.announcement-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 400px;
    }
    
    .whatsapp-float,
    .scroll-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float {
        bottom: 70px;
        right: 20px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 300px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Loading Animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Badge Styling */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 600;
    border-radius: 6px;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}

/* Form Control */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.6rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(30, 60, 114, 0.15);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: var(--primary);
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 0 3px;
}

.page-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Org Chart (Struktur Organisasi) */
.org-wrap {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
    padding: 1.25rem;
}

.org-widget {
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(1200px 380px at 20% 0%, rgba(32, 78, 235, 0.12), transparent 60%),
        radial-gradient(900px 320px at 80% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.10);
}

.org-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.org-toolbar__left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-toolbar__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(11, 18, 32, 0.60);
    font-size: 0.9rem;
}

.org-tool {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.org-tool:hover {
    transform: translateY(-1px);
}

.org-scale {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: rgba(11, 18, 32, 0.82);
}

.org-viewport {
    position: relative;
    height: min(720px, 70vh);
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 30% 15%, rgba(32, 78, 235, 0.08), transparent 40%),
        radial-gradient(circle at 75% 20%, rgba(201, 162, 39, 0.07), transparent 42%);
    background-size: 46px 46px, 46px 46px, auto, auto;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: orgGridMove 18s linear infinite;
}

.org-viewport:active {
    cursor: grabbing;
}

.org-pan {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.org-zoom {
    transform-origin: 0 0;
    will-change: transform;
}

.org-stage {
    padding: 1.25rem;
    perspective: 900px;
}

@keyframes orgGridMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 240px 180px, 240px 180px, 0 0, 0 0; }
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.org-level {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.9rem;
    flex-wrap: wrap;
    width: 100%;
}

.org-level--vice .org-card {
    min-width: min(320px, 100%);
}

.org-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    min-width: min(360px, 100%);
    transform-style: preserve-3d;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
    overflow: hidden;
}

.org-card:hover {
    transform: translateY(-6px) rotateX(var(--org-rx, 0deg)) rotateY(var(--org-ry, 0deg));
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
    border-color: rgba(32, 78, 235, 0.22);
}

.org-card::before {
    content: '';
    position: absolute;
    inset: -40% -40% auto -40%;
    height: 240px;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.45), transparent 70%);
    transform: translateZ(1px);
    pointer-events: none;
    opacity: 0.65;
}

.org-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 78, 235, 0.10), rgba(201, 162, 39, 0.08));
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.org-card:hover::after {
    opacity: 0.18;
}

.org-card--primary {
    background: linear-gradient(135deg, rgba(32, 78, 235, 0.12) 0%, rgba(255, 255, 255, 0.92) 55%, rgba(201, 162, 39, 0.12) 100%);
    border-color: rgba(32, 78, 235, 0.22);
}

.org-card--primary {
    animation: orgFloat 5.5s ease-in-out infinite;
}

@keyframes orgFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .org-viewport { animation: none; }
    .org-card--primary { animation: none; }
    .org-card, .org-tool { transition: none; }
}

.org-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.86);
}

.org-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.org-avatar__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: rgba(32, 78, 235, 0.9);
    background: linear-gradient(135deg, rgba(32, 78, 235, 0.12), rgba(201, 162, 39, 0.10));
}

.org-mini-avatar {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 0.45rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    vertical-align: middle;
}

.org-mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.org-mini-avatar__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: rgba(11, 18, 32, 0.72);
    background: rgba(15, 23, 42, 0.06);
}

.org-inline-avatar {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0.35rem 0 0.1rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    vertical-align: text-bottom;
}

.org-inline-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.org-inline-avatar__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    color: rgba(11, 18, 32, 0.72);
    background: rgba(15, 23, 42, 0.06);
}

.org-role {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: rgba(32, 78, 235, 0.95);
    margin-bottom: 0.35rem;
}

.org-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: rgba(11, 18, 32, 0.98);
}

.org-title {
    margin-top: 0.15rem;
    color: rgba(11, 18, 32, 0.65);
    font-size: 0.92rem;
}

.org-divider {
    width: min(540px, 90%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.20), transparent);
}

.org-faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

@media (max-width: 991.98px) {
    .org-faculty-grid {
        grid-template-columns: 1fr;
    }
}

.org-faculty-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.org-faculty-head {
    width: 100%;
    border: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.03), rgba(32, 78, 235, 0.06));
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
}

.org-faculty-head:hover {
    background: linear-gradient(135deg, rgba(32, 78, 235, 0.09), rgba(201, 162, 39, 0.08));
}

.org-faculty-name {
    font-weight: 800;
    color: rgba(11, 18, 32, 0.98);
}

.org-faculty-dean {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: rgba(11, 18, 32, 0.78);
}

.org-faculty-body {
    padding: 1rem 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.org-program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.org-program-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.org-program-name {
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.org-program-leaders {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    font-size: 0.92rem;
}

.org-label {
    display: inline-block;
    min-width: 72px;
    color: rgba(11, 18, 32, 0.62);
}

.org-value {
    font-weight: 700;
    color: rgba(11, 18, 32, 0.92);
}