/* head */
:root {
    --primary-color: #43b4b1;
    --secondary-color: #3087bc;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color) !important;
}

.navbar-brand i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

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

.btn-login {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #3087bc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 100px 0 80px;
    color: white;
}

.hero-section h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    margin-right: 1rem;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

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

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Announcement Cards */
.announcement-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.announcement-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.announcement-date i {
    margin-right: 0.5rem;
}

.announcement-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.announcement-card p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.938rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-info {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.footer-info i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        margin-bottom: 1rem;
        display: block;
        width: 100%;
        margin-right: 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }
}

/* home */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.stat-icon.bg-success { background: #28a745; }
.stat-icon.bg-info { background: #17a2b8; }
.stat-icon.bg-warning { background: #ffc107; }

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: all 0.3s;
}

.feature-link:hover {
    gap: 0.75rem;
}

.announcement-card-home {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.announcement-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.priority-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.kegiatan-card-home {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.kegiatan-card-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.kegiatan-date-badge {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.date-day {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.kegiatan-content-home {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kegiatan-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.kegiatan-meta-home {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.meta-item i {
    color: var(--primary-color);
}

.gallery-card-home {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-image-home {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card-home:hover .gallery-image-home img {
    transform: scale(1.1);
}

.gallery-overlay-home {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
}

.gallery-overlay-home h5 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}


/* breadcrumb */
.page-header {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0 40px;
    color: white;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* info-iuran */
.stat-card-iuran {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card-iuran:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.stat-icon.bg-success { background: #28a745; }
.stat-icon.bg-info { background: #17a2b8; }
.stat-icon.bg-warning { background: #ffc107; }

.progress-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.progress {
    border-radius: 15px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.iuran-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.iuran-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.iuran-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    color: white;
}

.iuran-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.iuran-price {
    font-size: 1.75rem;
    font-weight: 700;
}

.iuran-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.iuran-description {
    padding: 1.5rem;
}

.iuran-description p {
    margin: 0;
    color: #64748b;
}

.chart-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.bank-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bank-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.bank-info h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.account-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.account-name {
    color: #64748b;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

/* transparansi-keuangan */
.keuangan-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

.keuangan-info {
    flex: 1;
}

.keuangan-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.keuangan-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
}

.chart-card,
.table-card,
.donasi-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.chart-card h4,
.table-card h4,
.donasi-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
}

.donasi-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.donasi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.donasi-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.donasi-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.938rem;
}

.donasi-progress {
    margin-top: auto;
}

.progress {
    border-radius: 12px;
    background: #e2e8f0;
}

.progress-bar {
    border-radius: 12px;
    font-weight: 600;
}

/* faq */
.faq-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.faq-sidebar h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: 0.875rem 1rem;
    transition: all 0.3s;
}

.list-group-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.list-group-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
}

.faq-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.category-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    color: #64748b;
    line-height: 1.8;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-card p {
    opacity: 0.9;
}

.contact-card .btn-primary-custom {
    background: white;
    color: var(--primary-color);
}

.contact-card .btn-primary-custom:hover {
    background: rgba(255,255,255,0.9);
}

@media (max-width: 991px) {
    .faq-sidebar {
        position: static;
    }

    .list-group {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .list-group-item {
        flex-shrink: 0;
        min-width: 200px;
    }
}

/* pengumuman */
.search-form .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
}

.search-form .btn {
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1.5rem;
}

.announcement-card-detail {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.announcement-card-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.announcement-image {
    overflow: hidden;
}

.announcement-image img {
    transition: transform 0.3s ease;
}

.announcement-card-detail:hover .announcement-image img {
    transform: scale(1.05);
}

.priority-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
}

.badge-tinggi {
    background: #dc3545;
    color: white;
}

.announcement-category {
    margin-bottom: 0.75rem;
}

.announcement-date {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.announcement-date i {
    margin-right: 0.5rem;
}

.announcement-card-detail h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.announcement-card-detail p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.938rem;
}

.announcement-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.announcement-meta span {
    font-size: 0.875rem;
    color: #64748b;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* kegiatan */
.nav-pills .nav-link {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.nav-pills .nav-link:hover {
    border-color: var(--primary-color);
    background: rgba(67, 180, 177, 0.1);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.kegiatan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kegiatan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.kegiatan-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.kegiatan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.kegiatan-card:hover .kegiatan-image img {
    transform: scale(1.1);
}

.kegiatan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.kegiatan-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kegiatan-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.kegiatan-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.info-item i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.kegiatan-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.938rem;
    flex: 1;
}

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

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

@media (max-width: 768px) {
    .nav-pills {
        flex-wrap: wrap;
    }

    .nav-pills .nav-link {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* jadwal-ronda */.stat-card-ronda {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card-ronda:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ronda-item {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1.5rem;
}

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

.ronda-time {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ronda-info {
    flex: 1;
}

.ronda-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.ronda-info p {
    color: #64748b;
    font-size: 0.875rem;
}

.ronda-status {
    flex-shrink: 0;
}

.ronda-item-small {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 1rem;
}

.ronda-item-small:last-child {
    border-bottom: none;
}

.ronda-time-small {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    min-width: 120px;
}

.ronda-name {
    font-size: 0.938rem;
}

.btn-group .btn {
    padding: 0.5rem 1rem;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

/* FullCalendar Custom Styles - Sesuai dengan warna Cyan Website */
.fc {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Header Kalender */
.fc .fc-toolbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0891b2;
}

.fc .fc-button {
    background: #06b6d4;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fc .fc-button:hover {
    background: #0891b2;
    transform: translateY(-2px);
}

.fc .fc-button:focus {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3);
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: #0e7490;
    border-color: #0e7490;
}

/* Header Hari */
.fc .fc-col-header-cell {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    padding: 1rem 0.5rem;
}

.fc .fc-col-header-cell-cushion {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Cells Tanggal */
.fc .fc-daygrid-day {
    background: white;
    border: 1px solid #e0f2fe;
    transition: all 0.2s ease;
}

.fc .fc-daygrid-day:hover {
    background: #f0fdfa;
}

.fc .fc-daygrid-day-number {
    color: #0e7490;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem;
}

/* Hari ini */
.fc .fc-day-today {
    background: #cffafe !important;
    border: 2px solid #06b6d4 !important;
}

.fc .fc-day-today .fc-daygrid-day-number {
    background: #06b6d4;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.25rem;
}

/* Event Styling */
.fc-event {
    border: none !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    margin: 2px 0 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.fc-event:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/* Event Colors - Sesuai dengan warna cyan */
.fc-event.bg-primary {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
    color: white !important;
}

.fc-event.bg-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
}

.fc-event.bg-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: white !important;
}

.fc-event.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    color: white !important;
}

.fc-event.bg-info {
    background: linear-gradient(135deg, #06b6d4, #0891b2) !important;
    color: white !important;
}

/* Event Title */
.fc-event-title {
    font-weight: 600 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* More Link */
.fc .fc-more-link {
    color: #0891b2;
    font-weight: 600;
    font-size: 0.85rem;
}

.fc .fc-more-link:hover {
    color: #0e7490;
    text-decoration: underline;
}

/* Popover untuk event */
.fc .fc-popover {
    border: 2px solid #06b6d4;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.2);
}

.fc .fc-popover-header {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 8px 8px 0 0;
}

/* Minggu/Weekend */
.fc .fc-day-sat,
.fc .fc-day-sun {
    background: #fef3f2;
}

/* Bulan lain (prev/next month) */
.fc .fc-day-other {
    background: #f8fafc;
    opacity: 0.5;
}

.fc .fc-day-other .fc-daygrid-day-number {
    color: #94a3b8;
}

/* Loading State */
.fc .fc-loading {
    background: rgba(6, 182, 212, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .fc .fc-toolbar {
        flex-direction: column;
        gap: 1rem;
    }

    .fc .fc-toolbar-title {
        font-size: 1.25rem;
    }

    .fc .fc-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }

    .fc-event {
        font-size: 0.75rem !important;
        padding: 2px 6px !important;
    }

    .ronda-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .ronda-time {
        font-size: 0.875rem;
    }

    .ronda-info h5 {
        font-size: 1rem;
    }
}

/* Animation untuk event */
@keyframes eventPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fc-event.urgent {
    animation: eventPulse 2s ease-in-out infinite;
}

/* Tooltip untuk event */
.fc-event[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0e7490;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* gallery */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    background: rgba(67, 180, 177, 0.1);
    color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
}

.filter-btn .badge {
    background: rgba(255,255,255,0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
}

.filter-btn.active .badge {
    background: rgba(255,255,255,0.2);
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-count {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-category {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gallery-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.gallery-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.gallery-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.gallery-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.938rem;
    flex: 1;
}

@media (max-width: 768px) {
    .category-filter {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}


/* struktur */
.struktur-page {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    margin-top: -20px;
}

.struktur-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.struktur-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.struktur-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.org-chart-container {
    background: white;
    border-radius: 20px;
    padding: 50px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Ketua RT - Top Level */
.ketua-box {
    text-align: center;
    margin-bottom: 40px;
}

.position-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 280px;
    border: 3px solid;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.position-card.ketua {
    border-color: #FFC107;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.position-card.inti {
    border-color: #FFC107;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
}

.position-card.seksi {
    border-color: #E0E0E0;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
}

.position-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.position-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.position-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.position-contact {
    font-size: 0.9rem;
    color: #666;
}

.position-contact i {
    margin-right: 5px;
    color: #43b4b1;
}

.position-contact a {
    color: #43b4b1;
    text-decoration: none;
}

.position-contact a:hover {
    text-decoration: underline;
}

/* Divider Line */
.vertical-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #43b4b1, #3087bc);
    margin: 0 auto;
}

.horizontal-line {
    height: 3px;
    background: linear-gradient(to right, #43b4b1, #3087bc);
    margin: 20px 0;
}

/* Inti Level (Sekretaris & Bendahara) */
.inti-level {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Seksi Level */
.seksi-level {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 40px 0 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #43b4b1, #3087bc);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .struktur-header h1 {
        font-size: 1.8rem;
    }

    .inti-level {
        gap: 30px;
    }

    .position-card {
        min-width: 240px;
    }

    .seksi-level {
        grid-template-columns: 1fr;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* pagination */

.pagination {
    gap: 5px;
}

.pagination .page-item .page-link {
    border-radius: 8px;
    padding: 8px 16px;
    color: #333;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.pagination .page-item:not(.active) .page-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

/* no-image */
.no-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.no-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.no-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}



/* detail-kegiatan */
.kegiatan-detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.info-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-top: 5px;
}

.info-item small {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
}

.detail-image img {
    width: 100%;
    border-radius: 10px;
}

.detail-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.detail-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.related-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.related-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.related-content {
    flex: 1;
}

.related-item h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .detail-title {
        font-size: 1.5rem;
    }

    .kegiatan-detail-card {
        padding: 20px;
    }

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

/* detail-gallery */
.gallery-detail-header {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.gallery-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #6c757d;
    font-size: 1rem;
}

.gallery-meta span i {
    margin-right: 8px;
}

.gallery-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: white;
    font-size: 3rem;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.75rem;
    }

    .gallery-meta {
        flex-direction: column;
        gap: 10px;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* detail-pengumuman */
.pengumuman-detail-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #6c757d;
    font-size: 0.95rem;
}

.detail-meta span i {
    margin-right: 5px;
}

.detail-image img {
    width: 100%;
    border-radius: 10px;
}

.detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.related-item {
    display: block;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.related-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.related-item h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .detail-title {
        font-size: 1.5rem;
    }

    .pengumuman-detail-card {
        padding: 20px;
    }
}

/* donasi */

.donasi-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    color: white;
    margin-top: -20px;
}

.donasi-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.donasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.donasi-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.donasi-content {
    padding: 25px;
}

.donasi-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.donasi-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.progress-wrapper {
    margin-bottom: 20px;
}

.progress {
    height: 12px;
    border-radius: 10px;
    background: #f0f0f0;
}

.progress-bar {
    background: linear-gradient(90deg, #43b4b1 0%, #3087bc 100%);
    border-radius: 10px;
}

.donasi-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #43b4b1;
}

.stat-label {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

.btn-donasi {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-donasi:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

/* donasi-show */
.donasi-detail-header {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 40px 0;
    color: white;
    margin-top: -20px;
}

.form-donasi {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.donatur-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

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

.donatur-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

/* create-laporan */
.form-laporan-container {
    max-width: 800px;
    margin: 50px auto;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #333;
    margin-bottom: 10px;
}

.kategori-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.kategori-item {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kategori-item:hover {
    border-color: #43b4b1;
    background: #f8f9ff;
}

.kategori-item input[type="radio"] {
    display: none;
}

.kategori-item input[type="radio"]:checked + label {
    color: #43b4b1;
    font-weight: 600;
}

.kategori-item input[type="radio"]:checked ~ .kategori-icon {
    color: #43b4b1;
    transform: scale(1.1);
}

.kategori-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}


/* index-laporan */
.laporan-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    color: white;
    margin-top: -20px;
}

.laporan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.laporan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.laporan-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.laporan-content {
    padding: 20px;
}

.laporan-number {
    font-size: 0.85rem;
    color: #999;
    font-family: monospace;
}

.laporan-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
}

.laporan-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-baru { background: #fff3cd; color: #856404; }
.status-diproses { background: #cfe2ff; color: #084298; }
.status-selesai { background: #d1e7dd; color: #0f5132; }
.status-ditolak { background: #f8d7da; color: #842029; }

.btn-lapor {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.btn-lapor:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
    color: white;
}

/* tracking */
.tracking-container {
    max-width: 900px;
    margin: 50px auto;
}

.tracking-search {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.tracking-result {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 3px solid #43b4b1;
    z-index: 1;
}

.timeline-item.active::before {
    background: #43b4b1;
}

.status-detail {
    background: #f8f9fa;
    border-left: 4px solid #43b4b1;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* satpam-index */
.satpam-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    color: white;
    margin-top: -20px;
}

.jadwal-today-card {
    background: linear-gradient(135deg, #3087bc 0%, #43b4b1 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.shift-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.shift-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.shift-pagi { background: #ffeaa7; color: #2d3436; }
.shift-siang { background: #74b9ff; color: #2d3436; }
.shift-malam { background: #2d3436; color: white; }

.satpam-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.satpam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.satpam-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #43b4b1;
}

.satpam-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.satpam-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.empty-jadwal {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* jadwal-satpam */
.jadwal-header {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 40px 0;
    color: white;
    margin-top: -20px;
}

.day-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.day-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.day-date {
    color: #666;
    font-size: 0.95rem;
}

.jadwal-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.jadwal-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.jadwal-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #43b4b1;
}

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

.jadwal-name {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 3px;
}

.jadwal-contact {
    font-size: 0.85rem;
    color: #636e72;
}

.shift-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 10px;
}

.shift-pagi { background: #ffeaa7; color: #2d3436; }
.shift-siang { background: #74b9ff; color: #2d3436; }
.shift-malam { background: #2d3436; color: white; }

.time-label {
    color: #636e72;
    font-size: 0.9rem;
}

.empty-day {
    text-align: center;
    padding: 40px;
    color: #95a5a6;
}

/* info-darurat */
.emergency-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    color: white;
    margin-top: -20px;
}

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: 	#FF6347;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    display: flex;
    align-items: center;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.emergency-item {
    background: #f8f9fa;
    border-left: 4px solid;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.emergency-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.emergency-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: 	#FF6347;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}

.phone-number a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    text-decoration: underline;
}

.phone-alt {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
}

.address-text {
    color: #636e72;
    font-size: 0.95rem;
    margin-top: 10px;
}

.btn-call {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quick-call-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 30px;
}

.quick-call-item {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-call-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.quick-call-number {
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.quick-call-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .phone-number {
        font-size: 1.2rem;
    }
    .quick-call-number {
        font-size: 1.5rem;
    }
}

/* create-kehilangan */
.form-container {
    max-width: 800px;
    margin: 50px auto;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.jenis-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.jenis-item {
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jenis-item:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.jenis-item input[type="radio"] {
    display: none;
}

.jenis-item input[type="radio"]:checked + .jenis-content {
    color: white;
}

.jenis-item input[type="radio"]:checked ~ .jenis-icon {
    transform: scale(1.1);
}

.jenis-item.hilang input[type="radio"]:checked ~ * {
    color: white;
}

.jenis-item.hilang:has(input:checked) {
    background: #dc3545;
    border-color: #dc3545;
}

.jenis-item.temuan:has(input:checked) {
    background: #28a745;
    border-color: #28a745;
}

.jenis-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.jenis-label {
    font-size: 1.2rem;
    font-weight: 600;
}

/* index-kehilangan */
.kehilangan-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 60px 0;
    color: white;
    margin-top: -20px;
}

.filter-tabs {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.item-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
margin-bottom: 40px;
height: 100%;
}

.item-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.badge-hilang {
    background: #dc3545;
    color: white;
}

.badge-temuan {
    background: #28a745;
    color: white;
}

.item-content {
    padding: 20px;
}

.item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.item-meta i {
    margin-right: 5px;
}

.item-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-lapor {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
}

.btn-lapor:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
    color: white;
}

/* show-kehilangan */

.detail-hero {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    padding: 40px 0;
    color: white;
    margin-top: -20px;
}

.detail-container {
    max-width: 1000px;
    margin: -50px auto 50px;
}

.detail-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.detail-image {
width: 100%;
height: 500px;
object-fit: contain;
background: #f8f9fa;
display: flex;
align-items: center;
justify-content: center;
}

.detail-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-content {
    padding: 40px;
}

.badge-jenis {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 200px;
    font-weight: 600;
    color: #666;
}

.info-value {
    flex: 1;
    color: #333;
}

.contact-card {
    background: linear-gradient(135deg, #43b4b1 0%, #3087bc 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
    margin-top: 30px;
}

.btn-contact {
    background: white;
    color: #f5576c;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: #f5576c;
}

