/*
|--------------------------------------------------------------------------
| Main Stylesheet - Karang Taruna Tunas Muda
|--------------------------------------------------------------------------
| File: public/css/style.css
| Font: Poppins
*/

/* ==================== BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 55px;
    width: auto;
}

.navbar-logo-text {
    font-family: "Sora", sans-serif;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #111;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .navbar-logo-text {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
}

.navbar-logo-fallback {
    width: 70px;
    height: 55px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar-link {
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.navbar-link:hover {
    background-color: #f3f4f6;
}

.navbar-link.active {
    background-color: #4b5563;
    color: white;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-btn {
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.navbar-dropdown-btn:hover {
    background-color: #f3f4f6;
}

.navbar-dropdown-btn .arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.navbar-dropdown:hover .navbar-dropdown-btn .arrow {
    transform: rotate(180deg);
}

.navbar-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #374151;
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}

.navbar-dropdown-item:hover {
    background-color: #f3f4f6;
    padding-left: 1.75rem;
}

.navbar-dropdown-item i {
    width: 20px;
    margin-right: 0.75rem;
    color: #6b7280;
}

.navbar-dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

.navbar-user-btn {
    gap: 0.75rem;
}

.navbar-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navbar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-user-avatar i {
    font-size: 0.875rem;
    color: #6b7280;
}

.navbar-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-user-menu {
    right: 0;
    left: auto;
}

.navbar-logout-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    color: #dc2626;
}

.navbar-logout-btn:hover {
    background-color: #fef2f2 !important;
}

.navbar-divider {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    height: 3px;
    background-color: #1a1a1a;
}

.navbar-mobile-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
}

.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.navbar-mobile-menu.show {
    display: block;
}

.navbar-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s;
    width: 100%;
    background: none;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.navbar-mobile-link:hover,
.navbar-mobile-link.active {
    background-color: #f3f4f6;
}

.navbar-mobile-link i {
    width: 20px;
    color: #6b7280;
}

.navbar-mobile-dropdown {
    margin: 0.25rem 0;
}

.navbar-mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 8px;
}

.navbar-mobile-dropdown-btn:hover {
    background-color: #f3f4f6;
}

.navbar-mobile-dropdown-btn .arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.navbar-mobile-dropdown.open .navbar-mobile-dropdown-btn .arrow {
    transform: rotate(180deg);
}

.navbar-mobile-submenu {
    display: none;
    padding-left: 1rem;
}

.navbar-mobile-dropdown.open .navbar-mobile-submenu {
    display: block;
}

.navbar-mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4b5563;
    font-size: 0.95rem;
    border-radius: 8px;
}

.navbar-mobile-submenu a:hover {
    background-color: #f3f4f6;
}

.navbar-mobile-submenu a i {
    width: 20px;
    color: #9ca3af;
}

.navbar-mobile-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.75rem 0;
}

.navbar-mobile-user {
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.navbar-mobile-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-mobile-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navbar-mobile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-mobile-user-avatar i {
    font-size: 1.25rem;
    color: #6b7280;
}

.navbar-mobile-user-name {
    font-weight: 600;
    color: #1a1a1a;
}

.navbar-mobile-user-role {
    font-size: 0.85rem;
    color: #6b7280;
}

.navbar-mobile-logout {
    color: #dc2626 !important;
}

.navbar-mobile-logout:hover {
    background-color: #fef2f2 !important;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-close {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0.25rem;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    padding: 4rem 2rem;
    background: #fff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* Hero logo tanpa frame/background */
.hero-logo-clean {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Override untuk hero-logo-clean agar tidak kena style hero-image img */
.hero-image img.hero-logo-clean {
    width: auto;
    height: auto;
    max-width: 350px;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.hero-image-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 5rem 0;
}

.highlight-section {
    padding: 5rem 2rem;
}

.highlight-section.bg-light {
    background: #f9fafb;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.section-footer {
    text-align: center;
}

/* ==================== HIGHLIGHT CARDS (Program Kerja) ==================== */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-meta {
    font-size: 0.85rem;
    color: #9ca3af;
}

.card-meta i {
    margin-right: 0.5rem;
}

/* ==================== BERITA CARDS ==================== */
.berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.berita-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: block;
    border: 1px solid #e5e7eb;
}

.berita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.berita-image {
    height: 200px;
    overflow: hidden;
}

.berita-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.berita-card:hover .berita-image img {
    transform: scale(1.05);
}

.berita-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.berita-image-placeholder i {
    font-size: 3rem;
    color: #9ca3af;
}

.berita-content {
    padding: 1.5rem;
}

.berita-date {
    font-size: 0.8rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.75rem;
}

.berita-date i {
    margin-right: 0.5rem;
}

.berita-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.berita-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.berita-author {
    font-size: 0.85rem;
    color: #9ca3af;
}

.berita-author i {
    margin-right: 0.5rem;
}

.berita-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.berita-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.berita-card-body {
    padding: 1.5rem;
}

.berita-card-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.berita-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.berita-card-excerpt {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.berita-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #2563eb;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.berita-card:hover .berita-card-link {
    gap: 0.75rem;
}

/* ==================== DOKUMENTASI GRID ==================== */
.dokumentasi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dokumentasi-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.dokumentasi-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.dokumentasi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dokumentasi-card:hover .dokumentasi-image img {
    transform: scale(1.1);
}

.dokumentasi-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dokumentasi-placeholder i {
    font-size: 3rem;
    color: #9ca3af;
}

.dokumentasi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dokumentasi-card:hover .dokumentasi-overlay {
    opacity: 1;
}

.dokumentasi-overlay h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.dokumentasi-overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ==================== PROGRAM KERJA ==================== */
.program-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-card {
    display: flex;
    gap: 2rem;
    background-color: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.program-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-card-date {
    min-width: 80px;
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 12px;
    color: white;
    align-self: flex-start;
}

.program-card-date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.program-card-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.program-card-content {
    flex: 1;
}

.program-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.program-card-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.program-card-status {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.75rem;
}

.program-card-status.berlangsung {
    background-color: #dcfce7;
    color: #166534;
}

.program-card-status.mendatang {
    background-color: #dbeafe;
    color: #1e40af;
}

.program-card-status.selesai {
    background-color: #f3f4f6;
    color: #4b5563;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-selengkapnya {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-selengkapnya:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-selengkapnya i {
    transition: transform 0.3s ease;
}

.btn-selengkapnya:hover i {
    transform: translateX(5px);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: #1a1a1a;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
}

.empty-state.full-width {
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ==================== FLOATING SOCIAL ==================== */
.floating-social {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 50;
}

.floating-social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-social-btn:hover {
    transform: scale(1.1);
}

.floating-social-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-social-btn.instagram {
    background: linear-gradient(
        135deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.floating-social-btn.tiktok {
    background: #000000;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-top: 0.25rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.2s;
}

.footer-social a:hover {
    background-color: #4b5563;
}

.footer-divider {
    height: 1px;
    background-color: #374151;
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-input-error {
    border-color: #dc2626;
}

.form-error {
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.25rem;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ==================== AUTH PAGES ==================== */
.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 70px;
    height: 70px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.auth-icon i {
    font-size: 1.75rem;
    color: #1a1a1a;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.auth-subtitle {
    color: #6b7280;
    margin-top: 0.25rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
}

.auth-footer a {
    color: #1a1a1a;
    font-weight: 500;
}

.auth-back {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-back a {
    color: #6b7280;
}

/* ==================== PAGE COMPONENTS ==================== */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-subtitle {
    color: #6b7280;
    margin-top: 0.25rem;
}

.page-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.page-back:hover {
    color: #1a1a1a;
}

.card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background-color: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}
.stat-icon.yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}
.stat-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}
.stat-icon.gray {
    background-color: #f3f4f6;
    color: #6b7280;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-placeholder i {
    font-size: 2.5rem;
    color: #9ca3af;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-green {
    background-color: #dcfce7;
    color: #166534;
}
.badge-red {
    background-color: #fee2e2;
    color: #991b1b;
}
.badge-blue {
    background-color: #dbeafe;
    color: #1e40af;
}
.badge-yellow {
    background-color: #fef9c3;
    color: #854d0e;
}
.badge-gray {
    background-color: #f3f4f6;
    color: #4b5563;
}

.table-container {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.875rem 1rem;
    text-align: left;
}

.table th {
    background-color: #f9fafb;
    font-weight: 600;
    font-size: 0.875rem;
}

.table td {
    border-bottom: 1px solid #e5e7eb;
}

.qrcode-card {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.qrcode-wrapper {
    display: inline-block;
    padding: 1.5rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: #6b7280;
}

.contact-form {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-form-group {
    margin-bottom: 1.25rem;
}

.contact-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    margin-top: 0.5rem;
}

.contact-form-btn:hover {
    background-color: #333;
}

/* Contact Alert */
.contact-alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-alert.success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-alert.error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-form-input.error,
.contact-form-textarea.error {
    border-color: #dc2626;
}

.contact-form-error {
    display: block;
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 0.25rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Social Media Links */
.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s;
}

.contact-social-link:hover {
    transform: scale(1.1);
}

.contact-social-link.instagram {
    background: linear-gradient(
        135deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.contact-social-link.tiktok {
    background-color: #000000;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        order: -1;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .highlight-grid,
    .berita-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dokumentasi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-mobile-btn {
        display: block;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image {
        min-height: 250px;
        padding: 2rem;
    }

    .hero-logo {
        max-width: 200px;
    }

    .hero-image img,
    .hero-image-placeholder {
        height: 300px;
    }

    .highlight-section {
        padding: 3rem 1rem;
    }

    .highlight-grid,
    .berita-grid {
        grid-template-columns: 1fr;
    }

    .dokumentasi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card {
        flex-direction: column;
        gap: 1rem;
    }

    .program-card-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
        padding: 0.75rem 1rem;
        align-self: flex-start;
    }

    .program-card-date-day {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .floating-social {
        right: 1rem;
        bottom: 1rem;
    }

    .floating-social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .dokumentasi-grid {
        grid-template-columns: 1fr;
    }

    .dokumentasi-image {
        height: 180px;
    }
}

/* ==================== PAGE SECTION ==================== */
.page-section {
    padding: 3rem 0 5rem;
}

/* ==================== SEARCH BOX ==================== */
.filter-section {
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.2s;
}

.search-box input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.search-box button {
    padding: 1rem 1.5rem;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-box button:hover {
    background-color: #374151;
}

/* ==================== DOKUMENTASI GALLERY ==================== */
.dokumentasi-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.dokumentasi-gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

.dokumentasi-card-large {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.dokumentasi-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.dokumentasi-card-large .dokumentasi-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.dokumentasi-card-large .dokumentasi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dokumentasi-card-large:hover .dokumentasi-image img {
    transform: scale(1.05);
}

.dokumentasi-card-large .dokumentasi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dokumentasi-card-large:hover .dokumentasi-overlay {
    opacity: 1;
}

.dokumentasi-overlay-content {
    color: white;
}

.dokumentasi-overlay-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dokumentasi-date {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.dokumentasi-date i {
    margin-right: 0.5rem;
}

.dokumentasi-program {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.dokumentasi-program i {
    margin-right: 0.5rem;
}

.dokumentasi-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.dokumentasi-card-large:hover .dokumentasi-zoom {
    opacity: 1;
    transform: scale(1);
}

.dokumentasi-zoom:hover {
    background: white;
}

.dokumentasi-info {
    padding: 1rem 1.5rem;
}

.dokumentasi-info p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== PAGINATION ==================== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-wrapper nav {
    display: flex;
    gap: 0.25rem;
}

.pagination-wrapper .page-link {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #1a1a1a;
    transition: all 0.2s;
}

.pagination-wrapper .page-link:hover {
    background-color: #f3f4f6;
}

.pagination-wrapper .page-item.active .page-link {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.pagination-wrapper .page-item.disabled .page-link {
    color: #9ca3af;
}

/* ==================== RESPONSIVE DOKUMENTASI GALLERY ==================== */
@media (max-width: 1024px) {
    .dokumentasi-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dokumentasi-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .dokumentasi-card-large .dokumentasi-image {
        height: 200px;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dokumentasi-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==================== ABOUT HOME SECTION ==================== */
.about-home {
    text-align: center;
    padding: 2rem 0;
}

.about-home .section-title {
    margin-bottom: 0.75rem;
}

.about-home .section-subtitle {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== ABOUT PAGE ==================== */
.about-page {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-image {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-hero-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-hero-placeholder p {
    font-size: 1.25rem;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Visi Misi */
.about-visi-misi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.visi-misi-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 16px;
}

.visi-misi-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.visi-misi-icon i {
    font-size: 1.5rem;
    color: white;
}

.visi-misi-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.visi-misi-card p {
    color: #4b5563;
    line-height: 1.7;
}

.misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.misi-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.misi-list li i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Struktur Organisasi */
.about-struktur {
    margin-bottom: 3rem;
}

.struktur-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.struktur-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.struktur-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.struktur-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.struktur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.struktur-card.ketua {
    background: #1a1a1a;
    color: white;
}

.struktur-card.ketua .struktur-avatar {
    background: #374151;
}

.struktur-card.ketua .struktur-avatar i {
    color: white;
}

.struktur-card.ketua h4 {
    color: white;
}

.struktur-card.ketua .struktur-jabatan {
    color: #9ca3af;
}

.struktur-avatar {
    width: 80px;
    height: 80px;
    background: #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.struktur-avatar i {
    font-size: 2rem;
    color: #6b7280;
}

.struktur-card h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.struktur-jabatan {
    color: #6b7280;
    font-size: 0.9rem;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    background: #1a1a1a;
    border-radius: 16px;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .struktur-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-image {
        height: 250px;
    }

    .about-visi-misi {
        grid-template-columns: 1fr;
    }

    .struktur-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .about-stat-item {
        width: 40%;
    }

    .about-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .struktur-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-stat-item {
        width: 100%;
    }
}

/* ==================== ADMIN STYLES ==================== */

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Poppins", sans-serif;
}

.tab-btn:hover {
    color: #1a1a1a;
}

.tab-btn.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.tab-btn i {
    font-size: 1rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 16px 16px;
}

/* Table Avatar */
.table-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.table-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

/* Current Image Preview */
.current-image {
    margin-bottom: 1rem;
}

.current-image img {
    max-width: 300px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.current-image-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-image-actions span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Badge Colors */
.badge-green {
    background: #dcfce7;
    color: #16a34a;
}

.badge-gray {
    background: #f3f4f6;
    color: #6b7280;
}

.badge-blue {
    background: #dbeafe;
    color: #2563eb;
}

/* Button Small */
.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .tab-navigation {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Struktur Foto dengan Image */
.struktur-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ==================== DOKUMENTASI SECTION (Halaman Tentang) ==================== */
.about-dokumentasi {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.dokumentasi-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.dokumentasi-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.dokumentasi-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Dokumentasi Gallery */
@media (max-width: 1024px) {
    .dokumentasi-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dokumentasi-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .dokumentasi-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dokumentasi-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-overlay {
        opacity: 1;
    }
}

/* ==================== HERO LOGO TANPA FRAME ==================== */
.hero-logo-clean {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* ==================== SECTION TENTANG KAMI DI HOME ==================== */
.tentang-home-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.tentang-home-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.tentang-home-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tentang-home-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.highlight-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.tentang-home-image {
    display: flex;
    justify-content: center;
}

.tentang-home-image img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tentang-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.tentang-image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.tentang-image-placeholder span {
    font-size: 1rem;
    opacity: 0.7;
}

/* Responsive Tentang Home */
@media (max-width: 968px) {
    .tentang-home-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tentang-home-image {
        order: -1;
    }

    .tentang-home-highlights {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .highlight-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-logo-clean {
        max-width: 250px;
    }

    .tentang-home-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        min-width: auto;
    }

    .tentang-home-text h3 {
        font-size: 1.25rem;
    }
}

/* ==================== LAPORAN KEGIATAN ==================== */
.laporan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.laporan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.laporan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.laporan-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.laporan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.laporan-card:hover .laporan-card-image img {
    transform: scale(1.05);
}

.laporan-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.laporan-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.laporan-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.laporan-card-date,
.laporan-card-program {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.laporan-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.laporan-card-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
}

.laporan-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.2s;
}

.laporan-card:hover .laporan-card-link {
    gap: 0.75rem;
}

/* Detail Program Info */
.detail-program-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.detail-program-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-info-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.program-info-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.program-info-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.program-info-meta {
    margin-bottom: 1rem;
}

.program-info-meta span {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s;
}

.btn-detail-link:hover {
    gap: 0.75rem;
}

/* Responsive Laporan */
@media (max-width: 1024px) {
    .laporan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .laporan-grid {
        grid-template-columns: 1fr;
    }

    .laporan-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: -50px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive lightbox close button */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        transform: none;
    }

    .lightbox-close:hover {
        transform: scale(1.1);
    }
}

/* Gallery item clickable */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* ==================== DETAIL PAGE ==================== */
.detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.detail-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-header {
    margin-bottom: 1.5rem;
}

.detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.detail-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.detail-content p {
    margin-bottom: 1rem;
}

.detail-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-back:hover {
    background-color: #e5e7eb;
}

/* Detail Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.sidebar-item:hover {
    background-color: #f9fafb;
}

.sidebar-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-item-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.sidebar-item-content h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.sidebar-item-content span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* Responsive Detail */
@media (max-width: 1024px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .detail-main {
        padding: 1.5rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-image {
        max-height: 300px;
    }

    .detail-image img {
        max-height: 300px;
    }
}

/* ==================== PROGRAM KERJA DETAIL ==================== */
.program-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.program-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.program-detail-back:hover {
    color: #1a1a1a;
}

.program-detail-header {
    margin-bottom: 2rem;
}

.program-detail-header .program-card-status {
    margin-bottom: 1rem;
    display: inline-block;
}

.program-detail-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.program-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.program-detail-info-card {
    background-color: #f9fafb;
    padding: 1.25rem;
    border-radius: 12px;
}

.program-detail-info-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.program-detail-info-value {
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-detail-info-value i {
    color: #6b7280;
}

.program-detail-section {
    margin-bottom: 3rem;
}

.program-detail-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.program-detail-description {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
}

.program-detail-laporan-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-detail-laporan-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.program-detail-laporan-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.program-detail-laporan-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.program-detail-laporan-date {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.program-detail-laporan-excerpt {
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive Program Detail */
@media (max-width: 640px) {
    .program-detail-title {
        font-size: 1.75rem;
    }

    .program-detail-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== PROFIL ANGGOTA ==================== */
.profil-container {
    max-width: 1000px;
    margin: 0 auto;
}

.profil-header {
    text-align: center;
    margin-bottom: 2rem;
}

.profil-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.profil-header p {
    color: #6b7280;
}

.profil-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.profil-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.profil-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #f3f4f6;
}

.profil-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profil-photo-placeholder {
    width: 100%;
    height: 100%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9ca3af;
}

.profil-sidebar h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.profil-sidebar > p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.profil-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profil-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.2s;
}

.profil-menu-item:hover {
    background: #f3f4f6;
    color: #1a1a1a;
}

.profil-menu-item.active {
    background: #1a1a1a;
    color: white;
}

.profil-main {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-label span {
    color: #ef4444;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.form-error {
    display: block;
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 0.5rem;
}

.form-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.form-section-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.form-actions {
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* QR Code Card */
.qrcode-card {
    text-align: center;
    padding: 2rem;
}

.qrcode-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
}

.qrcode-container img {
    max-width: 100%;
    max-height: 100%;
}

.qrcode-placeholder {
    text-align: center;
    color: #9ca3af;
}

.qrcode-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.qrcode-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.qrcode-info p {
    color: #6b7280;
}

.qrcode-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9rem;
}

/* Absensi List */
.absensi-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.absensi-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
}

.absensi-icon {
    width: 48px;
    height: 48px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.25rem;
}

.absensi-info {
    flex: 1;
}

.absensi-info h4 {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.absensi-date,
.absensi-time {
    font-size: 0.85rem;
    color: #6b7280;
}

.absensi-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.absensi-status.hadir {
    background: #dcfce7;
    color: #16a34a;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .profil-content {
        grid-template-columns: 1fr;
    }

    .profil-sidebar {
        order: -1;
    }

    .profil-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Absensi Status Colors */
.absensi-icon.hadir {
    background: #dcfce7;
    color: #16a34a;
}

.absensi-icon.izin {
    background: #fef3c7;
    color: #d97706;
}

.absensi-icon.sakit {
    background: #dbeafe;
    color: #2563eb;
}

.absensi-icon.alpha {
    background: #fee2e2;
    color: #dc2626;
}

.absensi-status.izin {
    background: #fef3c7;
    color: #d97706;
}

.absensi-status.sakit {
    background: #dbeafe;
    color: #2563eb;
}

.absensi-status.alpha {
    background: #fee2e2;
    color: #dc2626;
}

/* ==================== PROFIL ANGGOTA PAGE ==================== */
.profil-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.profil-card {
    margin-bottom: 2rem;
}

.profil-info-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.profil-avatar-section {
    text-align: center;
}

.profil-status {
    margin-top: 0.5rem;
}

.profil-detail-section {
    flex: 1;
    min-width: 250px;
}

.profil-nama {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profil-info-list {
    display: grid;
    gap: 0.75rem;
}

.profil-info-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.profil-info-item i {
    width: 20px;
    color: #6b7280;
}

.profil-actions {
    margin-top: 1.5rem;
}

.profil-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.profil-link-card {
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.profil-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.profil-link-card .card-body {
    text-align: center;
    padding: 2rem;
}

.profil-link-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.profil-link-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

.profil-link-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.profil-link-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.profil-link-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.required {
    color: #dc2626;
}

.alert-warning {
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== QR CODE PAGE ==================== */
.qrcode-card {
    text-align: center;
}

.qrcode-card .card-body {
    padding: 2rem;
}

.qrcode-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.qrcode-avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.qrcode-avatar-placeholder i {
    font-size: 1.5rem;
    color: #9ca3af;
}

.qrcode-nama {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.qrcode-jabatan {
    color: #6b7280;
    font-size: 0.9rem;
}

.qrcode-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.qrcode-id {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.qrcode-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.qrcode-info {
    margin-top: 1.5rem;
}

.qrcode-info ol {
    padding-left: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
}

@media print {
    .navbar,
    .footer,
    .floating-social,
    .page-back,
    .btn {
        display: none !important;
    }
    .section {
        padding: 0 !important;
    }
    .qrcode-card {
        box-shadow: none !important;
        border: 1px solid #e5e7eb;
    }
}

.qrcode-page-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.qrcode-info-section {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* ==================== PENANGGUNG JAWAB STYLES ==================== */
.pj-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pj-header {
    margin-bottom: 2rem;
}

.pj-header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.pj-header p {
    color: #6b7280;
}

.pj-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pj-back-link:hover {
    text-decoration: underline;
}

.pj-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.pj-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pj-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pj-input {
    padding: 0.6rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: 250px;
}

.pj-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.pj-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.pj-btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
}

.pj-btn-primary {
    background: #242424;
    color: white;
}

.pj-btn-primary:hover {
    background: #000000;
}

.pj-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.pj-btn-secondary:hover {
    background: #e5e7eb;
}

.pj-btn-info {
    background: #3b82f6;
    color: white;
}

.pj-btn-info:hover {
    background: #2563eb;
}

.pj-btn-success {
    background: #22c55e;
    color: white;
}

.pj-btn-success:hover {
    background: #16a34a;
}

.pj-table-container {
    overflow-x: auto;
}

.pj-table {
    width: 100%;
    border-collapse: collapse;
}

.pj-table th,
.pj-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.pj-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.pj-table tbody tr:hover {
    background: #f9fafb;
}

.pj-foto-mini {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.pj-foto-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.pj-anggota-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pj-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pj-badge-hadir {
    background: #dcfce7;
    color: #16a34a;
}
.pj-badge-izin {
    background: #dbeafe;
    color: #2563eb;
}
.pj-badge-sakit {
    background: #fef3c7;
    color: #d97706;
}
.pj-badge-alpha {
    background: #fee2e2;
    color: #dc2626;
}

.pj-empty {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.pj-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.pj-pagination {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Stats Grid */
.pj-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pj-stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pj-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.pj-stat-icon.total {
    background: #e0e7ff;
    color: #4f46e5;
}
.pj-stat-icon.hadir {
    background: #dcfce7;
    color: #16a34a;
}
.pj-stat-icon.izin {
    background: #fef3c7;
    color: #d97706;
}
.pj-stat-icon.sakit {
    background: #dbeafe;
    color: #2563eb;
}
.pj-stat-icon.alpha {
    background: #fee2e2;
    color: #dc2626;
}

.pj-stat-angka {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.pj-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Profile */
.pj-profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pj-profile-card {
    text-align: center;
}

.pj-profile-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.pj-profile-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.pj-profile-jabatan {
    color: #6b7280;
    margin-bottom: 1rem;
}

.pj-persentase-ring {
    width: 100px;
    height: 100px;
    margin: 1rem auto 0.5rem;
    position: relative;
}

.pj-persentase-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.pj-persentase-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pj-persentase-angka {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.pj-persentase-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.pj-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pj-info-label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.pj-info-value {
    font-weight: 500;
    color: #1f2937;
}

.pj-content-box {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.pj-laporan-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .pj-profile-grid {
        grid-template-columns: 1fr;
    }

    .pj-info-grid {
        grid-template-columns: 1fr;
    }

    .pj-filter {
        flex-direction: column;
    }

    .pj-input {
        min-width: 100%;
    }
}

/* ==================== DOWNLOAD BUTTON PENANGGUNG JAWAB ==================== */
.detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-download-pj {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.btn-download-pj:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    color: white;
}

.btn-download-pj i {
    font-size: 1rem;
}

/* ==================== STRUKTUR ORGANISASI - ORG CHART ==================== */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    min-width: 800px;
    margin: 0 auto;
}

/* Node dasar */
.org-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.org-node.empty .org-photo {
    border-style: dashed;
    border-color: #9ca3af;
}

.org-node.empty .org-label {
    background: #d1d5db;
}

.org-node.empty .org-name {
    color: #9ca3af;
}

.org-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #374151;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.org-photo i {
    font-size: 1.75rem;
    color: #9ca3af;
}

.org-node.small .org-photo {
    width: 55px;
    height: 55px;
}

.org-node.small .org-photo i {
    font-size: 1.25rem;
}

.org-label {
    background: #6b7280;
    color: white;
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin-top: 0.4rem;
    white-space: nowrap;
}

.org-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1f2937;
    text-align: center;
    margin-top: 0.2rem;
    max-width: 120px;
}

/* Baris atas: Penanggung Jawab & Ketua - Ketua di tengah */
.org-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.org-row-top .org-node:first-child {
    position: absolute;
    left: -200px;
}

.org-connector-h {
    position: absolute;
    left: -100px;
    top: 35px;
    width: 130px;
    height: 2px;
    background: #374151;
}

/* Garis vertikal */
.org-connector-v {
    width: 2px;
    height: 30px;
    background: #374151;
}

.org-connector-v.long {
    height: 50px;
}

/* Baris tengah: Wakil Ketua */
.org-row-single {
    display: flex;
    justify-content: center;
}

/* Garis horizontal cabang */
.org-branch-line {
    width: 600px;
    height: 2px;
    background: #374151;
}

/* Baris bawah: Sekretaris & Bendahara */
.org-row-bottom {
    display: flex;
    justify-content: space-between;
    width: 700px;
}

.org-row-bottom .org-node {
    flex: 1;
    max-width: 140px;
}

.org-connector-v-up {
    width: 2px;
    height: 20px;
    background: #374151;
    margin-bottom: 0.3rem;
}

/* Divisi */
.org-divisi {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    width: 100%;
    text-align: center;
}

.org-divisi h4 {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.org-divisi-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Container scroll horizontal di mobile */
.about-struktur {
    overflow-x: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .org-chart {
        min-width: 700px;
    }

    .org-branch-line {
        width: 500px;
    }

    .org-row-bottom {
        width: 600px;
    }

    .org-row-top .org-node:first-child {
        left: -160px;
    }

    .org-connector-h {
        left: -100px;
        width: 100px;
    }
}

@media (max-width: 768px) {
    .org-chart {
        min-width: 600px;
        padding: 1rem 0;
    }

    .org-photo {
        width: 55px;
        height: 55px;
    }

    .org-photo i {
        font-size: 1.25rem;
    }

    .org-label {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }

    .org-name {
        font-size: 0.7rem;
        max-width: 90px;
    }

    .org-connector-h {
        width: 60px;
        left: -70px;
        top: 27px;
    }

    .org-row-top .org-node:first-child {
        left: -130px;
    }

    .org-branch-line {
        width: 400px;
    }

    .org-row-bottom {
        width: 480px;
    }

    .org-row-bottom .org-node {
        max-width: 95px;
    }
}
