/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== COLORS ========== */
:root {
    --primary: #7a1515;
    --primary-dark: #5a0e0e;
    --primary-light: #9b2c2c;
    --accent: #1a237e;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f5f5f5;
    --bg-white: #fff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-red: linear-gradient(135deg, #5a0e0e 0%, #7a1515 30%, #9b2c2c 70%, #c0392b 100%);
    --gradient-btn: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-menu a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary);
}

.navbar-menu a.btn-primary {
    color: white;
}

.navbar-menu a.btn-primary:hover {
    color: white;
}

.navbar-menu .dropdown {
    position: relative;
    cursor: pointer;
}

.navbar-menu .dropdown::after {
    content: ' ▾';
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 200px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid #ddd;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========== HERO ========== */
.hero {
    background: var(--gradient-red);
    color: white;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.hero .tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== STATS ========== */
.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-card .label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content strong {
    color: var(--text-dark);
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-card .link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .link:hover {
    text-decoration: underline;
}

/* ========== PROGRAM CARDS ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.program-card .card-image {
    height: 180px;
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.program-card .card-body {
    padding: 25px;
}

.program-card .badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.badge-international {
    background: #fff3e0;
    color: #e65100;
}

.badge-pendidik {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-ai {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-pelatihan {
    background: #fce4ec;
    color: #c62828;
}

.program-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.program-card .desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.program-card .meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ========== LSP SECTION ========== */
.lsp-section {
    text-align: center;
}

.lsp-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.lsp-section > p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff5f5;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-card .stars {
    color: #f39c12;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.testimonial-card .text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-card .author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ========== CTA ========== */
.cta-section {
    background: var(--gradient-red);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ========== AUTH PAGE ========== */
.auth-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f0 100%);
    padding: 40px 20px;
}

.auth-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-btn);
}

.auth-card .auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-card .auth-logo h2 {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 5px;
}

.auth-card .auth-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-card .auth-title {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.auth-divider {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-divider a {
    color: var(--text-light);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.auth-divider a:hover {
    color: var(--primary);
}

/* ========== FORMS ========== */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-text a {
    color: var(--primary);
    font-weight: 600;
}

/* ========== DASHBOARD ========== */
.dashboard-layout {
    display: flex;
    min-height: calc(100vh - 70px);
}

.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 0;
    flex-shrink: 0;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
}

.sidebar-header h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.sidebar-header span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.sidebar-menu {
    padding: 15px 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,0.06);
    color: white;
}

.sidebar-menu a.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left-color: var(--primary);
}

.sidebar-menu a .icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dashboard-content {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
    min-width: 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-header h1 {
    font-size: 1.6rem;
    color: var(--text-dark);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card {
    background: white;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.dash-card .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.dash-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.dash-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ========== TABLE ========== */
.table-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.table-header h3 {
    font-size: 1.1rem;
}

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

table th {
    background: var(--bg-light);
    padding: 12px 15px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

table tr:hover {
    background: #fafafa;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-pending {
    background: #fff3e0;
    color: #e65100;
}

.status-completed {
    background: #e3f2fd;
    color: #1565c0;
}

/* ========== FILTER & SEARCH ========== */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: 180px;
    background: white;
}

/* ========== PELATIHAN LIST ========== */
.pelatihan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pelatihan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.pelatihan-card .card-img {
    height: 160px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.pelatihan-card .card-content {
    padding: 20px;
}

.pelatihan-card .category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pelatihan-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pelatihan-card .info {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pelatihan-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.pelatihan-card .price {
    font-weight: 700;
    color: var(--primary);
}

/* ========== DETAIL PELATIHAN ========== */
.detail-hero {
    background: var(--gradient-red);
    color: white;
    padding: 60px 0;
}

.detail-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.detail-hero .breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.detail-hero .breadcrumb a {
    color: white;
    opacity: 0.7;
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.detail-main {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.detail-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.detail-main h2 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.detail-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.detail-main ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-light);
}

.detail-sidebar .price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.detail-sidebar .info-list {
    margin-bottom: 25px;
}

.detail-sidebar .info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.detail-sidebar .info-list li span:first-child {
    color: var(--text-light);
}

.detail-sidebar .info-list li span:last-child {
    font-weight: 600;
}

/* ========== BERITA ========== */
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.berita-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.berita-card:hover {
    transform: translateY(-3px);
}

.berita-card .card-img {
    height: 180px;
    background: linear-gradient(135deg, #2196f3, #00bcd4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.berita-card .card-content {
    padding: 20px;
}

.berita-card .date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.berita-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.berita-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== KONTAK ========== */
.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.kontak-info {
    padding: 30px;
}

.kontak-info h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.kontak-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.kontak-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #fff5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.kontak-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.kontak-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========== VERIFIKASI ========== */
.verify-section {
    padding: 80px 0;
    text-align: center;
}

.verify-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.verify-box h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.verify-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.verify-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.verify-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.verify-result {
    background: #e8f5e9;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    display: none;
}

.verify-result.show {
    display: block;
}

.verify-result h4 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.verify-result p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-red);
    color: white;
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1rem;
}

/* ========== VISI MISI ========== */
.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.visi-card, .misi-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.visi-card h3, .misi-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.misi-card ul {
    padding-left: 20px;
}

.misi-card ul li {
    list-style: decimal;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== TEAM ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ========== ADMIN SPECIFIC ========== */
.admin-sidebar {
    background: var(--primary-dark);
}

.admin-stat {
    border-left: 4px solid;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.modal {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

/* ========== PROFIL HERO ========== */
.profil-hero {
    background: linear-gradient(135deg, #4a0a0a 0%, #7a1515 40%, #a52424 70%, #4a0a0a 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: white;
}

.profil-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.profil-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========== VISI MISI ========== */
.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.visi-misi-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.visi-misi-body {
    padding: 30px;
}

.visi-misi-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.visi-misi-body p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* TAGLINE BANNER */
.tagline-banner {
    background: linear-gradient(135deg, #e74c3c, #ff6b6b, #e74c3c);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
}

.tagline-banner h3 {
    font-size: 1.6rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 8px;
}

.tagline-banner p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========== TUJUAN ========== */
.tujuan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tujuan-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.tujuan-card:hover {
    transform: translateY(-5px);
}

.tujuan-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tujuan-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.tujuan-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== ORG CHART ========== */
.org-chart {
    text-align: center;
    padding: 40px 0;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.org-level-top {
    justify-content: center;
}

.org-connector {
    width: 3px;
    height: 50px;
    background: #ccc;
    margin: 0 auto;
}

.org-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    max-width: 380px;
    width: 100%;
}

.org-card-direktur {
    border-top: 4px solid var(--primary);
}

.org-card-kadiv {
    border-top: 4px solid #4285f4;
}

.org-avatar {
    width: 100px;
    height: 100px;
    background: #d4e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 15px;
}

.org-role-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.org-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.org-degree {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.org-division {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.org-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ========== STAF GRID ========== */
.staf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.staf-card {
    background: white;
    border-radius: 12px;
    border-top: 3px solid #4285f4;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.staf-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.staf-avatar {
    width: 45px;
    height: 45px;
    background: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.staf-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.staf-role {
    font-size: 0.8rem;
    color: #4285f4;
    font-weight: 600;
}

.staf-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.staf-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.staf-status {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ========== KADIV PROFILE ========== */
.kadiv-profile-card {
    background: white;
    border-radius: 16px;
    border-top: 4px solid #4285f4;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.kadiv-avatar {
    width: 120px;
    height: 120px;
    background: #d4e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 15px;
}

.kadiv-profile-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.kadiv-divisi-badge {
    display: inline-block;
    background: #f0f4ff;
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    border: 1px solid #d0daf0;
}

.kadiv-section-card {
    background: white;
    border-radius: 16px;
    border-left: 4px solid #ffc107;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.kadiv-section-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.kadiv-list {
    list-style: none;
    padding: 0;
}

.kadiv-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    border-bottom: 1px solid #f5f5f5;
}

.kadiv-list li:last-child {
    border-bottom: none;
}

.kadiv-about-card {
    background: #f0f4ff;
    border-radius: 16px;
    border-left: 4px solid #4285f4;
    padding: 30px;
    margin-bottom: 20px;
}

.kadiv-about-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.kadiv-about-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.kadiv-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.kadiv-stat {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.kadiv-stat .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.kadiv-stat .stat-number {
    font-size: 1.6rem;
    font-weight: 900;
}

.kadiv-stat .stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 3px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats-grid, .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        padding: 10px 15px;
        border-radius: 8px;
    }

    .navbar-menu a:hover {
        background: var(--bg-light);
    }

    .navbar-menu .btn-primary {
        text-align: center;
        margin-top: 10px;
    }

    .navbar-menu .dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        border-left: 2px solid var(--primary);
        margin: 5px 0;
    }

    .auth-card {
        padding: 35px 25px;
        margin: 20px;
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

    .services-grid, .programs-grid, .pelatihan-grid,
    .berita-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

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

    .berita-home-grid {
        grid-template-columns: 1fr;
    }

    .hubungi-home-grid, .kontak-cards {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .detail-reg-info {
        grid-template-columns: 1fr;
    }

    .program-info-box .program-meta {
        flex-direction: column;
    }

    .visi-misi-grid {
        grid-template-columns: 1fr;
    }

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

    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        z-index: 2000;
        transition: left 0.3s;
    }

    .sidebar.open {
        left: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
    }

    .sidebar-overlay.active {
        display: block;
    }

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

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

    table {
        min-width: 600px;
    }

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

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

    .org-level-kadiv {
        flex-direction: column;
        align-items: center;
    }

    .profil-hero h1 {
        font-size: 2rem;
    }

    .kadiv-stats-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-reg .info-grid {
        grid-template-columns: 1fr;
    }

    .auth-card [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

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

    .filter-bar {
        flex-direction: column;
    }
}

/* ========== BERITA HOME CARDS ========== */
.berita-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.berita-home-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.berita-home-card:nth-child(1) { border-color: #e74c3c; }
.berita-home-card:nth-child(2) { border-color: #e67e22; }
.berita-home-card:nth-child(3) { border-color: #27ae60; }

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

.berita-home-card .card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.berita-home-card .card-content {
    padding: 25px;
}

.berita-home-card .card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.berita-home-card .card-meta .category-tag {
    color: var(--primary);
    font-weight: 600;
}

.berita-home-card .card-meta .dot {
    color: #ccc;
}

.berita-home-card .card-meta .date {
    color: var(--text-light);
}

.berita-home-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-dark);
}

.berita-home-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.berita-home-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== MITRA STRATEGIS ========== */
.mitra-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.mitra-section .section-title h2 {
    color: var(--primary);
}

.mitra-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

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

.mitra-item .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.mitra-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========== HUBUNGI KAMI HOME ========== */
.hubungi-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.hubungi-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hubungi-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hubungi-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.hubungi-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== DAFTAR CTA ========== */
.daftar-cta {
    padding: 60px 0;
    text-align: center;
}

.daftar-cta h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 10px;
}

.daftar-cta p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.daftar-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========== PROGRAM PRICING ========== */
.price-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.price-box .normal-price {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-box .subsidi-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-box .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-box .price-gratis {
    font-size: 1.5rem;
    font-weight: 800;
    color: #27ae60;
}

.benefit-list {
    padding-left: 18px;
    margin-bottom: 15px;
}

.benefit-list li {
    list-style: disc;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.5;
}

/* ========== TABS ========== */
.tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab:hover {
    color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========== JADWAL TABLE ========== */
.jadwal-section {
    margin-bottom: 40px;
}

.jadwal-section h3 {
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 15px;
}

.jadwal-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.jadwal-table thead th {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: white;
    padding: 14px 18px;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.jadwal-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.jadwal-table tbody tr:hover {
    background: #f0f7ff;
}

.status-buka {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-segera {
    background: #fff3e0;
    color: #e65100;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========== ASESMEN PAGE ========== */
.asesmen-hero {
    background: var(--gradient-red);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.asesmen-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.asesmen-hero .sub {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.asesmen-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

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

.asesmen-card .card-img {
    height: 200px;
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.asesmen-card .card-body {
    padding: 25px;
}

.asesmen-card .badge-category {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.badge-it { background: #e74c3c; }
.badge-design { background: #2c3e50; }
.badge-marketing { background: #e74c3c; }
.badge-pendidikan { background: #27ae60; }

.asesmen-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.asesmen-card .desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.asesmen-price-box {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.asesmen-price-box .label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.asesmen-price-box .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.asesmen-card .card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ========== CEK STATUS ========== */
.cek-status-hero {
    background: var(--gradient-red);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cek-status-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cek-status-hero p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cek-status-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.cek-status-box input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.cek-status-box button {
    padding: 14px 24px;
    background: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.95rem;
}

.contoh-nip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contoh-nip span {
    opacity: 0.8;
}

.contoh-nip .nip-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.contoh-nip .nip-badge:hover {
    background: rgba(255,255,255,0.3);
}

/* ========== DETAIL REGISTRASI ========== */
.detail-reg {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-reg-header {
    background: var(--accent);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-reg-header .reg-number {
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-reg-header .status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.status-aktif {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge-selesai {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.detail-reg-body {
    padding: 30px;
}

.detail-reg .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-reg .info-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.detail-reg .info-item .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-reg .info-item .value {
    font-weight: 700;
    font-size: 0.95rem;
}

.detail-reg .reg-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-reg-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-reg-info .info-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
}

.detail-reg-info .info-item label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-reg-info .info-item span {
    font-weight: 700;
    font-size: 0.95rem;
}

.program-info-box {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    border-radius: 12px;
    padding: 25px;
    color: white;
    margin-bottom: 20px;
}

.program-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.program-info-box p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.program-info-box .program-meta {
    display: flex;
    gap: 15px;
}

.program-info-box .meta-item {
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 15px;
}

.program-info-box .meta-item .label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.program-info-box .meta-item .value {
    font-weight: 700;
    font-size: 0.9rem;
}

.sertifikat-box {
    background: #e8f5e9;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.sertifikat-box h3 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.sertifikat-box p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* ========== KONTAK NEW ========== */
.kontak-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.kontak-card-new {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.kontak-card-new .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.kontak-card-new h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.kontak-card-new p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.kontak-card-new .contact-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.kontak-card-new .contact-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.kontak-card-new .kontak-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.jam-operasional-box {
    background: #f0f7ff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.jam-operasional-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.jam-item {
    padding: 12px;
    background: white;
    border-radius: 8px;
}

.jam-item .day, .jam-item .hari {
    font-weight: 700;
    margin-bottom: 4px;
}

.jam-item .time, .jam-item .waktu {
    color: var(--text-light);
    font-size: 0.9rem;
}

.jam-item.jam-tutup {
    background: #ffebee;
}

.jam-item.jam-tutup .waktu {
    color: #c62828;
    font-weight: 700;
}

.lokasi-section {
    margin-bottom: 40px;
}

.lokasi-section h3, .lokasi-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.lokasi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.map-placeholder {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    border-radius: 16px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.map-inner {
    text-align: center;
}
    margin-bottom: 20px;
}

.alamat-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.alamat-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.alamat-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== BTN DARK ========== */
.btn-dark {
    background: var(--primary-dark);
    color: white;
}

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

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

.btn-outline-blue:hover {
    background: var(--accent);
    color: white;
}

/* ========== MODAL LARGE ========== */
.modal-lg {
    max-width: 650px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ========== SCROLL TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.flex { display: flex; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
