:root {
    --navy: #091b27;
    --navy-light: #0f2738;
    --green: #349b22;
    --green-light: #3da525;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* NAVBAR */
.main-navbar {
    background-color: var(--navy);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navbar.scrolled {
    background-color: rgba(9, 27, 39, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--green) !important;
}

/* DROPDOWN */
.dropdown-menu {
    background-color: var(--navy-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--green);
    color: white;
    padding-left: 1.5rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('/images/hero-ov.png') center/cover no-repeat;
    padding-top: 0.2rem;
    margin-top: var(--navbar-height);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(9, 27, 39, 0.85) 0%, rgba(9, 27, 39, 0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-section h2 {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-section p {
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-section .btn-group {
    animation: fadeInUp 1s ease 0.8s both;
}

/* ACCENT */
.text-accent {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.text-white-75 {
    color: var(--text-light);
}

.text-white-65 {
    color: var(--text-muted);
}

/* BUTTONS */
.btn-primary-custom {
    background-color: var(--green);
    border: 2px solid var(--green);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-style: normal;
    text-decoration: none;
}


.btn-primary-custom:hover {
    background-color: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(47, 143, 31, 0.4);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-style: normal;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* FEATURES SECTION */
.features-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* KEGIATAN SECTION */
.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.activity-date {
    background-color: var(--green);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.activity-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.activity-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.activity-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.activity-link:hover {
    color: var(--green-light);
    padding-left: 5px;
}

.activity-link i {
    transition: transform 0.3s ease;
}

.activity-link:hover i {
    transform: translateX(5px);
}

/* PAGE HEADER */
.page-header {
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern.png') center/cover;
    opacity: 0.05;
}

/* FILTER BUTTONS */
.filter-btn {
    background-color: white;
    border: 2px solid #dee2e6;
    color: #6c757d;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
    box-shadow: 0 4px 15px rgba(47, 143, 31, 0.3);
}

/* ACTIVITY CATEGORY BADGE */
.activity-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-meta {
    color: #6c757d;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* KEGIATAN ITEM ANIMATION */
.kegiatan-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.kegiatan-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* PAGINATION */
.pagination .page-link {
    color: var(--navy);
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--green);
    border-color: var(--green);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--green);
    border-color: var(--green);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
}

/* SUPPORT SECTION */
.support-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.bank-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bank-logo i {
    font-size: 2.5rem;
    color: white;
}

.bank-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
}

.bank-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.bank-info-item:last-child {
    border-bottom: none;
}

.bank-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.bank-value {
    color: var(--navy);
    text-align: right;
}

.confirmation-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.confirmation-box i {
    font-size: 1.5rem;
    color: var(--green);
}

.confirmation-box a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.confirmation-box a:hover {
    color: var(--green-light) !important;
}

/* IMPACT SECTION */
.impact-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.impact-item i {
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.impact-item span {
    line-height: 1.6;
}

/* INFO CARDS */
.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    line-height: 1.6;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.1rem;
}

.info-card p {
    color: #495057;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .nav-link::after {
        display: none;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .activity-image {
        height: 220px;
    }
    
    .page-header {
        padding: 6rem 0 3rem !important;
    }
    
    .support-section {
        padding: 3rem 0 !important;
    }
    
    .support-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .activity-image {
        height: 200px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .bank-value {
        font-size: 0.9rem;
    }
    
    .impact-section {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* FOOTER */
/* FOOTER */
.footer {
    background-color: var(--navy);
    color: #e5e7eb;
}

.footer-title {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #081821;
    color: #9ca3af;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f2a3a;
    color: var(--green);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
}


/* KONTAK */
/* ===============================================
   CONTACT PAGE STYLES - contact.css
   =============================================== */

/* CONTACT INFO CARDS */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2f8f1f 0%, #3da525 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-card h5 {
    color: #091b27;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #6c757d;
    line-height: 1.7;
}

.contact-card p a {
    color: #091b27;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-card p a:hover {
    color: #2f8f1f;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #2f8f1f;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-link:hover {
    color: #3da525;
    transform: translateX(5px);
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(3px);
}

/* INFO BOX (Bank & Social Media) */
.info-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2f8f1f 0%, #3da525 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-box-icon.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-box h4 {
    color: #091b27;
}

.info-box p {
    color: #6c757d;
}

/* BANK INFO BOX */
.bank-info-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #e9ecef;
}

.bank-info-box .text-muted {
    color: #6c757d;
}

.bank-info-box .fw-bold {
    color: #091b27;
}

/* SOCIAL MEDIA LINKS */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-item:hover {
    transform: translateX(5px);
    border-color: currentColor;
}

/* Social Media Platform Colors */
.social-link-item.facebook {
    color: #1877f2;
}

.social-link-item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.social-link-item.instagram {
    color: #e4405f;
}

.social-link-item.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.social-link-item.youtube {
    color: #ff0000;
}

.social-link-item.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
}

.social-link-item.whatsapp {
    color: #25d366;
}

.social-link-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.social-link-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-link-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.social-link-handle {
    font-weight: 600;
    font-size: 1rem;
}

.social-link-item .bi-arrow-right {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.social-link-item:hover .bi-arrow-right {
    transform: translateX(3px);
}

/* ALERT BOX */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #17a2b8;
}

/* GOOGLE MAPS IFRAME */
.container-fluid iframe {
    display: block;
    width: 100%;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
    .contact-card,
    .info-box {
        margin-bottom: 1.5rem;
    }
    
    .info-box {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    .info-box-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .bank-info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .social-link-item {
        padding: 0.75rem 1rem;
    }
    
    .social-link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .social-link-handle {
        font-size: 0.9rem;
    }
}


/* ===============================================
   ANGGOTA (MEMBERS) PAGE STYLES - anggota.css
   =============================================== */

/* STATS CARDS */
.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--green);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 155, 34, 0.3);
}

.stats-icon.bg-info {
    background: linear-gradient(135deg, #0dcaf0 0%, #0aa2c0 100%);
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
}

.stats-icon.bg-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stats-label {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* MEMBER CARD */
.member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* MEMBER PHOTO */
.member-photo {
    position: relative;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.member-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.05);
    border-color: var(--green);
}

/* MEMBER BADGE */
.member-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.6);
    }
}

/* MEMBER INFO */
.member-info {
    padding: 0 1.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-name {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-position {
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(52, 155, 34, 0.1);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.member-position i {
    color: var(--green);
}

.member-join-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.member-join-date i {
    color: var(--green);
}

/* FILTER ANIMATION */
.member-item {
    transition: all 0.4s ease;
}

.member-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* NO RESULTS MESSAGE */
#noResults {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#noResults i {
    display: block;
    margin: 0 auto;
}

/* SEARCH BOX */
.search-box {
    position: relative;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(52, 155, 34, 0.1);
}

.search-box i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
}

/* ENHANCED FILTER BUTTONS */
.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(52, 155, 34, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn.active::before {
    width: 300px;
    height: 300px;
    background: rgba(52, 155, 34, 0.1);
}

/* GRID LAYOUT VARIATIONS */
@media (min-width: 1400px) {
    .member-photo img {
        width: 150px;
        height: 150px;
    }
}

/* LOADING ANIMATION */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* MEMBER COUNT BADGE */
.member-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.member-count-badge i {
    color: var(--green);
}

/* ALTERNATE CARD STYLE (Optional) */
.member-card-alt {
    border-top: 4px solid var(--green);
}

.member-card-alt:hover {
    border-top-color: var(--green-light);
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
    .stats-card {
        padding: 1.5rem;
    }
    
    .stats-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .search-box {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-icon {
        margin: 0 auto;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
    
    .member-badge {
        top: 1.5rem;
        right: 1.5rem;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .member-name {
        font-size: 1rem;
        min-height: auto;
    }
    
    .member-position {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .member-photo {
        padding: 1.5rem 1.5rem 0.75rem;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .member-info {
        padding: 0 1rem 1.5rem;
    }
}

/* PRINT STYLES */
@media print {
    .member-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .member-card:hover {
        transform: none;
    }
    
    .filter-btn,
    .search-box {
        display: none;
    }
}

/* ===============================
   PROFILE PAGE
================================ */

.profile-card {
    background: white;
    border-radius: 20px;
    margin-top: 3rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.profile-header h1 {
    color: var(--navy);
    font-weight: 700;
}

.profile-header p {
    color: var(--green);
    font-weight: 500;
}

.profile-section {
    margin-bottom: 3rem;
}

.profile-section p,
.profile-section li {
    color: #495057;
    line-height: 1.9;
    font-size: 1.02rem;
}

.section-title {
    color: var(--navy);
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 4px;
    background: var(--green);
    border-radius: 4px;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 5px solid var(--green);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.highlight-box h4 {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-box ul {
    padding-left: 1.2rem;
}

.highlight-box ul li {
    margin-bottom: 0.5rem;
}


/* ===============================
   ORGANIZATION STRUCTURE
================================ */

.org-structure-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.org-structure-card p {
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: #495057;
}

.org-image-wrapper {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
}

.org-image {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


/* ===============================
   LEGALITY PAGE
================================ */

.legal-desc p {
    line-height: 1.9;
    color: #495057;
}

.legal-functions ul {
    padding-left: 1.2rem;
}

.legal-functions li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.legal-card h3 {
    margin-bottom: 0.5rem;
}

.legal-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}



/* ===============================================
   DETAIL KEGIATAN PAGE STYLES - detail-kegiatan.css
   =============================================== */

/* BREADCRUMB */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #2f8f1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #3da525;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

/* DETAIL HEADER */
.detail-header {
    border-bottom: 1px solid #e9ecef;
}

.detail-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #2f8f1f 0%, #3da525 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #091b27;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.detail-meta-item {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.95rem;
}

.detail-meta-item i {
    color: #2f8f1f;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* FEATURED IMAGE */
.detail-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT SECTION */
.detail-content {
    padding-right: 2rem;
}

.content-subtitle {
    color: #091b27;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2f8f1f;
}

.detail-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.content-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.content-list li {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
}

.content-list li::marker {
    color: #2f8f1f;
    font-weight: bold;
}

/* SPEAKER CARD */
.speaker-card {
    display: flex;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #2f8f1f;
}

.speaker-photo {
    flex-shrink: 0;
}

.speaker-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.speaker-info {
    flex-grow: 1;
}

.speaker-name {
    color: #091b27;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.speaker-bio {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* SIDEBAR CARDS */
.info-sidebar-card,
.share-card,
.contact-sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    color: #091b27;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.sidebar-info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-info-item:last-child {
    border-bottom: none;
}

.sidebar-info-label {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.sidebar-info-label i {
    margin-right: 0.5rem;
    color: #2f8f1f;
}

.sidebar-info-value {
    color: #091b27;
    font-weight: 600;
    font-size: 1rem;
}

/* SHARE BUTTONS */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.telegram {
    background: #0088cc;
}

.share-btn.link {
    background: #6c757d;
}

/* CONTACT SIDEBAR */
.contact-sidebar-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-outline-custom {
    border-color: #2f8f1f;
    color: #2f8f1f;
}

.btn-outline-custom:hover {
    background-color: #2f8f1f;
    border-color: #2f8f1f;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .detail-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .detail-title {
        font-size: 2rem;
    }
    
    .info-sidebar-card,
    .share-card,
    .contact-sidebar-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .detail-title {
        font-size: 1.75rem;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .speaker-card {
        flex-direction: column;
        text-align: center;
    }
    
    .speaker-photo {
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .content-subtitle {
        font-size: 1.3rem;
    }
}


/* temp */
/* * {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

img, video {
  filter: grayscale(100%);
} */
