/*
 * Design System - Administrasi Bisnis LPKIA
 * Inspired by MongoDB Design Specification
 */

:root {
    /* Colors */
    --primary: #f25c3f;
    --primary-deep: #e14a2c;
    --primary-pressed: #b8341b;
    --on-primary: #ffffff;
    
    --brand-teal-deep: #0c2340;
    --brand-teal: #0f2d52;
    --brand-teal-mid: #164275;
    --brand-teal-light: #e6f0fa;
    
    --accent-purple: #7b3ff2;
    --accent-orange: #f25c3f;
    --accent-pink: #f06bb8;
    --accent-blue: #3d4f9f;
    
    --canvas: #ffffff;
    --canvas-dark: #0c2340;
    --surface: #f8fafc;
    --surface-soft: #f1f5f9;
    --surface-feature: #fff2ee;
    
    --hairline: #e2e8f0;
    --hairline-soft: #f1f5f9;
    --hairline-strong: #cbd5e1;
    --hairline-dark: #1e293b;
    
    --ink: #0c2340;
    --charcoal: #1e293b;
    --slate: #334155;
    --steel: #475569;
    --stone: #64748b;
    --muted: #94a3b8;
    
    --on-dark: #ffffff;
    --on-dark-muted: #94a3b8;

    /* Fallback mappings for old style systems */
    --primary-dark: #0c2340;
    --secondary: #f25c3f;
    --secondary-light: #ffebe8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --text-dark: #0c2340;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --border-radius-lg: 8px;
    --border-radius: 4px;
    --transition: all 200ms ease;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Source Code Pro', 'SF Mono', Menlo, Consolas, monospace;
    
    /* Shapes & Radii */
    --rounded-xs: 4px;
    --rounded-sm: 6px;
    --rounded-md: 8px;
    --rounded-lg: 12px;
    --rounded-xl: 16px;
    --rounded-full: 9999px;
    
    /* Spacing */
    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 24px;
    --spacing-xxl: 32px;
    --spacing-xxxl: 40px;
    --spacing-section: 64px;
    --spacing-hero: 100px;
    
    /* Shadows */
    --shadow-0: none;
    --shadow-1: 0px 1px 2px 0px rgba(0, 30, 43, 0.04);
    --shadow-2: 0px 4px 12px 0px rgba(0, 30, 43, 0.08);
    --shadow-3: 0px 12px 24px -4px rgba(0, 30, 43, 0.12);
    --shadow-4: 0px 16px 48px -8px rgba(0, 30, 43, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--canvas);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Top Utility Info Bar */
.top-utility-bar {
    background-color: var(--brand-teal-deep);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding: 8px 0;
    font-family: var(--font-family);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
    width: 100%;
}
.top-utility-contact {
    display: flex;
    gap: 15px;
}
.top-utility-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}
.top-utility-contact a:hover {
    color: var(--primary);
}
.top-utility-links {
    display: flex;
    gap: 15px;
}
.top-utility-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.top-utility-links a:hover {
    color: var(--primary);
}
@media (max-width: 768px) {
    .top-utility-bar {
        display: none;
    }
}

/* Header Navigation */
.site-header {
    background-color: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: pointer;
}

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

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: var(--spacing-xxs) 0;
    border-bottom: 2px solid transparent;
    transition: all 150ms ease;
    display: flex;
    align-items: center;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    border-bottom-color: var(--primary);
}

/* Dropdown styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--canvas);
    min-width: 180px;
    box-shadow: var(--shadow-3);
    border-radius: var(--rounded-md);
    border: 1px solid var(--hairline);
    padding: var(--spacing-xs) 0;
    z-index: 200;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--slate);
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background-color 150ms ease, color 150ms ease;
}

.dropdown-content a:hover {
    background-color: var(--surface);
    color: var(--brand-teal-mid);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--rounded-full);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 150ms ease;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

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

.btn-primary:active {
    background-color: var(--primary-pressed);
}

.btn-secondary {
    background-color: transparent;
    color: var(--ink);
    border: 1px solid var(--hairline-strong);
}

.btn-secondary:active {
    background-color: var(--surface-soft);
}

.btn-on-dark {
    background-color: var(--primary);
    color: var(--on-primary);
}

.btn-secondary-on-dark {
    background-color: transparent;
    color: var(--on-dark);
    border: 1px solid var(--hairline-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(12, 35, 64, 0.85), rgba(12, 35, 64, 0.9)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--on-dark);
    padding: var(--spacing-hero) 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-xxxl);
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: var(--spacing-lg);
    color: var(--on-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--on-dark-muted);
    margin-bottom: var(--spacing-xxl);
}

.hero-image img {
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-3);
    border: 1px solid var(--hairline-dark);
    max-width: 100%;
    display: block;
}

/* Mockup Terminal Aesthetic (Business Admin Context) */
.code-mockup-card {
    background-color: var(--canvas-dark);
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline-dark);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-3);
    font-family: var(--font-mono);
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
}

.code-mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

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

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

.code-mockup-card h4 {
    font-family: var(--font-family);
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 8px;
}

.code-mockup-card ul {
    list-style: none;
    padding-left: 0;
}

.code-mockup-card li {
    margin-bottom: 4px;
}

/* Shortcut Cards */
.shortcuts-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.shortcut-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xl);
    text-decoration: none;
    color: var(--ink);
    box-shadow: var(--shadow-2);
    transition: transform 200ms ease, box-shadow 200ms ease;
    display: block;
}

.shortcut-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.shortcut-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--rounded-md);
    background-color: var(--surface-soft);
    color: var(--brand-teal-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: var(--spacing-md);
}

.shortcut-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.shortcut-card p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.5;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--ink);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xxl);
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

/* Org Cards / Structure */
.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.org-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-1);
}

.org-avatar {
    width: 96px;
    height: 96px;
    border-radius: var(--rounded-full);
    background-color: var(--surface-soft);
    margin: 0 auto var(--spacing-md);
    font-size: 40px;
}

.org-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.org-card .role {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-teal-mid);
    margin-bottom: 4px;
}

.org-card .nip {
    font-size: 12px;
    color: var(--muted);
}

/* Dosen Cards / Filter */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xxl);
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    color: var(--steel);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-full);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--ink);
    color: var(--on-dark);
    border-color: var(--ink);
}

.lecturer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-lg);
}

.lecturer-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-1);
}

.lecturer-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.lecturer-card .field {
    font-size: 12px;
    display: inline-block;
    padding: 2px 8px;
    background-color: var(--surface-soft);
    border-radius: var(--rounded-sm);
    font-weight: 600;
    color: var(--slate);
}

/* Category encoding colors */
.lecturer-card[data-expert="office"] .field {
    background-color: #ece0fd;
    color: var(--accent-purple);
}
.lecturer-card[data-expert="entrepreneur"] .field {
    background-color: #ffebe5;
    color: var(--accent-orange);
}
.lecturer-card[data-expert="digital"] .field {
    background-color: #e5ebff;
    color: var(--accent-blue);
}

/* Downloads & Tables */
.download-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.download-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.download-info i {
    font-size: 28px;
    color: #ef4444;
}

.download-info h5 {
    font-size: 15px;
    font-weight: 600;
}

.download-info p {
    font-size: 12px;
    color: var(--muted);
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--rounded-md);
    border: 1px solid var(--hairline);
    background-color: var(--canvas);
}

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

.responsive-table th, .responsive-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--hairline-soft);
}

.responsive-table th {
    background-color: var(--surface-soft);
    color: var(--ink);
    font-weight: 600;
}

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

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--rounded-full);
}

.badge-success {
    background-color: var(--brand-teal-light);
    color: var(--brand-teal-mid);
}

.badge-secondary {
    background-color: var(--surface-soft);
    color: var(--slate);
}

/* News / Article Cards */
.post-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background-color: var(--brand-teal-deep);
    position: relative;
}

.post-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--on-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--rounded-full);
    text-transform: uppercase;
}

.post-card-body {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--stone);
    margin-bottom: var(--spacing-sm);
}

.post-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: var(--spacing-sm);
    color: var(--ink);
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.post-card-link {
    color: var(--brand-teal-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* Detail Pages styling */
.page-header {
    background-color: var(--brand-teal-deep);
    color: var(--on-dark);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.page-content-wrapper {
    padding: 60px 0;
}

.page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxxl);
}

.article-content {
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal);
}

.article-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--ink);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: var(--spacing-xxl);
}

.article-content li {
    margin-bottom: 8px;
}

.sidebar-widget {
    background-color: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--brand-teal-mid);
    padding-bottom: 8px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--hairline-soft);
    padding-bottom: 10px;
}

.sidebar-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-widget a {
    color: var(--slate);
    text-decoration: none;
    font-size: 14px;
    transition: color 150ms ease;
}

.sidebar-widget a:hover {
    color: var(--brand-teal-mid);
}

/* Comments Form */
.comments-section {
    margin-top: 48px;
    border-top: 1px solid var(--hairline);
    padding-top: 36px;
}

.comment-card {
    background-color: var(--surface-soft);
    border-radius: var(--rounded-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.comment-meta {
    font-size: 12px;
    color: var(--stone);
    margin-bottom: 8px;
}

.text-input, textarea {
    width: 100%;
    background-color: var(--canvas);
    color: var(--ink);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--rounded-md);
    padding: 12px var(--spacing-md);
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color 150ms ease;
}

.text-input:focus, textarea:focus {
    outline: none;
    border: 2px solid var(--brand-teal-mid);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
}

/* Stats / Pricing-style Tiers */
.stats-banner {
    background-color: var(--brand-teal-deep);
    color: var(--on-dark);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xxl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--on-dark-muted);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h2 {
        font-size: 38px;
    }
    .hero-image {
        display: none;
    }
    .shortcuts-grid {
        grid-template-columns: 1fr;
    }
    .grid-3-col {
        grid-template-columns: 1fr 1fr;
    }
    .lecturer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    .page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .org-grid {
        grid-template-columns: 1fr;
    }
    .lecturer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 32px;
    }
    .lecturer-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Auth & Form Styles */
.auth-wrapper {
    background-color: var(--brand-teal-deep);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    font-family: var(--font-family);
}
.auth-card {
    background-color: var(--canvas);
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-4);
    width: 100%;
    max-width: 440px;
    padding: 40px;
}
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}
.auth-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin-top: 10px;
}
.auth-header p {
    font-size: 14px;
    color: var(--steel);
    margin-top: 4px;
}
.form-control {
    width: 100%;
    background-color: var(--canvas);
    color: var(--ink);
    border: 1px solid var(--hairline-strong);
    border-radius: var(--rounded-md);
    padding: 10px var(--spacing-md);
    font-family: var(--font-family);
    font-size: 14px;
    height: 44px;
    transition: border-color 150ms ease;
}
.form-control:focus {
    outline: none;
    border: 2px solid var(--brand-teal-mid);
}
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}
.form-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--brand-teal-mid);
}
/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: var(--rounded-md);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-success {
    background-color: var(--brand-teal-light);
    color: var(--brand-teal-mid);
    border: 1px solid var(--primary);
}
.alert-danger {
    background-color: #ffebe5;
    color: #c0392b;
    border: 1px solid #fa6e39;
}
   Admin Panel Back-office Custom Styling
   ========================================================================== */

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 50;
    transition: var(--transition);
}

.admin-sidebar-header {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--bg-white);
}

.admin-sidebar-logo span {
    color: var(--secondary-light);
}

.admin-sidebar-menu {
    flex-grow: 1;
    padding: 20px 0;
    list-style: none;
    overflow-y: auto;
}

.admin-menu-item {
    margin-bottom: 4px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.admin-menu-link:hover, .admin-menu-item.active .admin-menu-link {
    background-color: rgba(255,255,255,0.05);
    color: var(--bg-white);
    border-left: 4px solid var(--secondary-light);
}

.admin-menu-link svg, .admin-menu-link i {
    width: 18px;
    height: 18px;
    opacity: 0.75;
}

.admin-menu-link:hover svg, .admin-menu-item.active svg,
.admin-menu-link:hover i, .admin-menu-item.active i {
    opacity: 1;
}

.admin-submenu {
    list-style: none;
    padding-left: 50px;
    margin-bottom: 10px;
}

.admin-submenu-link {
    display: block;
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.admin-submenu-link:hover, .admin-submenu-item.active .admin-submenu-link {
    color: var(--secondary-light);
}

.admin-sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Admin Main Content */
.admin-main {
    flex-grow: 1;
    margin-left: 260px;
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-navbar {
    height: 80px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    right: 0;
    left: 260px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: var(--transition);
}

.admin-navbar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.admin-navbar-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-user-info {
    text-align: right;
}

.admin-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.admin-user-role {
    font-size: 0.75rem;
    color: var(--text-light);
}

.admin-content-wrapper {
    padding: 30px;
    flex-grow: 1;
}

/* Admin Tables (List Views) */
.table-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 20px;
}

.table-toolbar {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.table-filters {
    display: flex;
    align-items: center;
    gap: 15px;
}

.table-search {
    width: 250px;
}

.bulk-actions-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th {
    background-color: #F8FAFC;
    color: var(--text-muted);
    font-weight: 600;
    padding: 14px 20px;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    vertical-align: middle;
}

.admin-table tr:hover {
    background-color: #F8FAFC;
}

/* Badge status colors */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.badge-success {
    background-color: var(--success-light);
    color: #065F46;
}

.badge-warning {
    background-color: var(--warning-light);
    color: #92400E;
}

.badge-secondary {
    background-color: #F3F4F6;
    color: #374151;
}

/* Actions list */
.table-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-link {
    color: var(--text-light);
    transition: var(--transition);
}

.action-link:hover {
    color: var(--primary);
}

.action-link.delete:hover {
    color: var(--danger);
}

/* Clean Workspace Editor Layout */
.editor-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.editor-main-area {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 30px;
    min-height: 450px;
}

.editor-sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editor-sidebar-widget {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 20px;
}

.editor-widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Quill Editor Styles */
.ql-container {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    min-height: 300px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.ql-toolbar {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    background-color: #F8FAFC;
}

/* Drag and Drop Image Box */
.image-upload-box {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.image-upload-box:hover, .image-upload-box.dragover {
    border-color: var(--primary);
    background-color: rgba(0, 136, 255, 0.02);
}

.image-upload-icon {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.image-upload-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.image-upload-preview {
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 4px;
}

/* Live Preview Mode Splitscreen Modal/Panel */
.preview-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.preview-modal.active {
    right: 0;
}

.preview-header {
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.preview-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px 30px;
}

.preview-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    z-index: 190;
    display: none;
}

.preview-backdrop.active {
    display: block;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--secondary);
}

.toast-message.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-message.success {
    border-left-color: var(--success);
}

.toast-message.danger {
    border-left-color: var(--danger);
}

/* Responsive sidebar toggle overrides for admin panel */
@media (max-width: 1024px) {
    .admin-sidebar {
        left: -260px;
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-navbar {
        left: 0;
    }
    
    .preview-modal {
        width: 100%;
    }
}

/* ==========================================================================
   Admin Dashboard Metrics and Charts/Statistics Styling
   ========================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.stat-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h4 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.chart-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.chart-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-chart-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    width: 140px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-wrapper {
    flex-grow: 1;
    height: 12px;
    background-color: #F1F5F9;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-row:hover .bar-fill {
    opacity: 0.85;
}

.bar-value {
    width: 75px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.gender-donut-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    min-height: 150px;
}

.donut-graphic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 58%, var(--secondary) 58% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.donut-graphic::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--bg-white);
    border-radius: 50%;
}

.donut-center-text {
    position: relative;
    text-align: center;
}

.donut-center-text .main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.donut-center-text .sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donut-legends {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    .gender-donut-container {
        gap: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-teal-deep);
    color: var(--on-dark-muted);
    padding: 60px 0 30px;
    margin-top: 80px;
    font-size: 0.9rem;
    border-top: 3px solid var(--primary);
    font-family: var(--font-family);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    color: var(--on-dark);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: -0.3px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-widget p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

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

.footer-widget ul li a {
    color: var(--on-dark-muted);
    text-decoration: none;
    transition: all 150ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-widget ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--on-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 150ms ease;
    text-decoration: none;
}

.social-icon:hover {
    height: 12px;
    background-color: #F1F5F9;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-row:hover .bar-fill {
    opacity: 0.85;
}

.bar-value {
    width: 75px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.gender-donut-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    min-height: 150px;
}

.donut-graphic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 58%, var(--secondary) 58% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.donut-graphic::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--bg-white);
    border-radius: 50%;
}

.donut-center-text {
    position: relative;
    text-align: center;
}

.donut-center-text .main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.donut-center-text .sub {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donut-legends {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    .gender-donut-container {
        gap: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-teal-deep);
    color: var(--on-dark-muted);
    padding: 60px 0 30px;
    margin-top: 80px;
    font-size: 0.9rem;
    border-top: 3px solid var(--primary);
    font-family: var(--font-family);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-widget h3 {
    color: var(--on-dark);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: -0.3px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-widget p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

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

.footer-widget ul li a {
    color: var(--on-dark-muted);
    text-decoration: none;
    transition: all 150ms ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-widget ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--on-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 150ms ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--on-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    margin-top: 40px;
    color: var(--on-dark-muted);
}

/* Universo Hero Inquiry Form */
.hero-inquiry-card {
    background-color: var(--brand-teal-deep);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-3);
    overflow: hidden;
    color: #ffffff;
    font-family: var(--font-family);
}

.hero-inquiry-header {
    background-color: var(--brand-teal-mid);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 2px solid var(--primary);
}

.hero-inquiry-header h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.hero-inquiry-body {
    padding: var(--spacing-lg);
}

.hero-inquiry-body .form-group {
    margin-bottom: var(--spacing-md);
}

.hero-inquiry-body label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.hero-inquiry-body input,
.hero-inquiry-body select {
    width: 100%;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0 12px;
    font-size: 13px;
    transition: var(--transition);
}

.hero-inquiry-body select option {
    background-color: var(--brand-teal-deep);
    color: #ffffff;
}

.hero-inquiry-body input:focus,
.hero-inquiry-body select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-inquiry-body .btn-submit {
    width: 100%;
    height: 40px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-inquiry-body .btn-submit:hover {
    background-color: var(--primary-deep);
    transform: translateY(-1px);
}

/* Tri-Column Featured Section (Universo Style) */
.featured-columns-section {
    padding: 60px 0;
    background-color: var(--canvas);
}

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

@media (max-width: 1024px) {
    .featured-columns-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.column-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--hairline);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.column-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

/* News List Widget */
.news-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--hairline-soft);
    padding-bottom: 15px;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-date {
    font-size: 11px;
    color: var(--stone);
    margin-bottom: 6px;
    font-weight: 500;
}

.news-list-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.news-list-title a {
    color: var(--ink);
    text-decoration: none;
    transition: var(--transition);
}

.news-list-title a:hover {
    color: var(--primary);
}

/* Event Widget */
.events-list-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.event-date-box {
    width: 54px;
    height: 58px;
    background-color: var(--brand-teal-deep);
    color: #ffffff;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    flex-shrink: 0;
}

.event-date-box .day {
    font-size: 20px;
    font-weight: 700;
}

.event-date-box .month {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}

.event-info {
    flex-grow: 1;
}

.event-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px 0;
}

.event-title a {
    color: var(--ink);
    text-decoration: none;
    transition: var(--transition);
}

.event-title a:hover {
    color: var(--primary);
}

.event-meta {
    font-size: 12px;
    color: var(--stone);
}

/* About Widget */
.about-widget-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--hairline);
}

.about-widget-text {
    font-size: 13.5px;
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.about-widget-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.about-widget-link:hover {
    color: var(--primary-deep);
    gap: 8px;
}

/* Kaprodi Profiles Section */
.kaprodi-section {
    padding: 60px 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--hairline);
    position: relative;
}

.kaprodi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 960px;
    margin: 0 auto;
}

.kaprodi-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-2);
    display: flex;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.kaprodi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    border-color: var(--hairline-strong);
}

.kaprodi-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: rgba(242, 92, 63, 0.1);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--rounded-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.kaprodi-image-container {
    width: 38%;
    background: linear-gradient(135deg, var(--brand-teal-light), var(--surface-soft));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    min-height: 220px;
    position: relative;
}

.kaprodi-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kaprodi-card:hover .kaprodi-image-container img {
    transform: scale(1.06);
}

.kaprodi-info {
    width: 62%;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kaprodi-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.3;
}

.kaprodi-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-teal-mid);
    margin-bottom: 12px;
    line-height: 1.3;
}

.kaprodi-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12.5px;
    color: var(--steel);
}

.kaprodi-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kaprodi-meta i {
    color: var(--primary);
    width: 14px;
    font-size: 13px;
}

.kaprodi-meta a {
    color: var(--brand-teal-mid);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.kaprodi-meta a:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .kaprodi-grid {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .kaprodi-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }
    
    .kaprodi-card {
        flex-direction: column;
    }
    
    .kaprodi-image-container {
        width: 100%;
        height: 220px;
    }
    
    .kaprodi-info {
        width: 100%;
        padding: var(--spacing-md);
    }
}

/* Peminatan / Konsentrasi Section */
.peminatan-section {
    padding: 80px 0;
    background-color: var(--canvas);
    border-bottom: 1px solid var(--hairline);
}

.peminatan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.peminatan-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.peminatan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
    border-color: var(--primary);
}

.peminatan-image-container {
    width: 100%;
    height: 220px;
    background-color: var(--surface-soft);
    overflow: hidden;
    position: relative;
}

.peminatan-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.peminatan-card:hover .peminatan-image-container img {
    transform: scale(1.05);
}

.peminatan-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.peminatan-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
}

.peminatan-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.peminatan-card:hover .peminatan-info h3::after {
    width: 60px;
}

.peminatan-desc {
    font-size: 13.5px;
    color: var(--steel);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .peminatan-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .peminatan-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .peminatan-image-container {
        height: 180px;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: var(--spacing-section) 0;
    background-color: var(--surface-soft);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-2);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 120px;
    color: rgba(242, 92, 63, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-3);
    border-color: var(--primary);
}

.testimonial-content {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: var(--rounded-full);
    object-fit: cover;
    border: 2px solid var(--hairline-strong);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--primary);
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 12px;
    color: var(--stone);
    margin: 0;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}



