/* ============================================================
   assets/css/style.css
   ============================================================ */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #1B5E20;
    --primary-dark: #0D2B1B;
    --primary-light: #2E7D32;
    --primary-lighter: #4CAF50;
    --primary-bg: #E8F5E9;
    --gold: #F9A825;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ========== GENERAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.text-green {
    color: var(--primary);
}

.text-gold {
    color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-hero:hover {
    background: #e6a000;
    border-color: #e6a000;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 168, 37, 0.4);
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--primary-dark) !important;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar .brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 10px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white) !important;
    background: rgba(76, 175, 80, 0.2);
}

.navbar .dropdown-menu {
    background: var(--primary-dark);
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    transition: var(--transition);
}

.navbar .dropdown-item:hover {
    background: rgba(76, 175, 80, 0.2);
    color: var(--white);
}

/* ========== HERO SLIDER ========== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 27, 0.85), rgba(27, 94, 32, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-section .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.hero-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
}

/* ========== SECTION PADDING ========== */
section {
    padding: 80px 0;
}

section.bg-light {
    background: var(--primary-bg);
}

.page-section {
    padding: 60px 0;
}

/* ========== ABOUT SECTION ========== */
.about-section img {
    box-shadow: var(--shadow);
    border-radius: 15px;
}

/* ========== VISI MISI CARDS ========== */
.visi-card,
.misi-card,
.motto-card {
    border: none;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}

.visi-card:hover,
.misi-card:hover,
.motto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.visi-card i,
.misi-card i {
    color: var(--primary);
}

.motto-card i {
    color: var(--gold);
}

/* ========== PROGRAM CARDS ========== */
.program-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 25px 20px;
    text-align: center;
    background: var(--white);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    transition: var(--transition);
}

.program-card:hover .program-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg) scale(1.05);
}

/* ========== BERITA CARDS ========== */
.berita-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.berita-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.berita-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.berita-card .card-body {
    padding: 20px;
}

/* ========== STATISTIK ========== */
.statistik-section {
    padding: 80px 0;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ========== GALERI ========== */
.galeri-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.galeri-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.galeri-card:hover img {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.galeri-card:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-overlay h5,
.galeri-overlay h6 {
    margin: 0;
    font-weight: 600;
}

/* ========== ALBUM CARDS ========== */
.album-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.album-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.album-card:hover img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay h5 {
    margin: 0;
    font-weight: 700;
}

/* ========== PENGURUS CARDS ========== */
.pengurus-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 20px;
    background: var(--white);
}

.pengurus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pengurus-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-bg);
}

.pengurus-card h5 {
    margin: 0;
    font-weight: 600;
}

.pengurus-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-dark) !important;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer p i {
    width: 25px;
    color: var(--primary-lighter);
}

.footer .social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--primary-lighter);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer small {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-section .swiper-button-next,
    .hero-section .swiper-button-prev {
        display: none;
    }
    section {
        padding: 50px 0;
    }
    .stat-item h2 {
        font-size: 2.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .navbar .brand-text {
        font-size: 1rem;
    }
    .berita-card .card-img-top {
        height: 150px;
    }
    .galeri-card img {
        height: 180px;
    }
}
/* ============================================================
   HEADER & FOOTER KEREN
   ============================================================ */

/* ========== TOPBAR ========== */
.topbar-info {
    background: #0D2B1B;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1030;
}

.topbar-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.topbar-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-contact li i {
    color: #4CAF50;
    font-size: 0.75rem;
    width: 16px;
}

.topbar-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.topbar-social a {
    color: rgba(255,255,255,0.6);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.05);
}

.topbar-social a:hover {
    color: #fff;
    background: #1B5E20;
    transform: translateY(-2px);
}

/* ========== MAIN NAVBAR ========== */
.main-navbar {
    background: #1B5E20 !important;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-navbar .navbar-brand img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.main-navbar .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.main-navbar .brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.main-navbar .brand-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
}

.main-navbar .dropdown-menu {
    background: #1B5E20;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 8px;
    margin-top: 8px;
}

.main-navbar .dropdown-item {
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navbar .dropdown-item i {
    width: 18px;
    font-size: 0.8rem;
    color: #4CAF50;
}

.main-navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ========== FOOTER ========== */
.footer {
    background: #0D2B1B;
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-widget h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: #1B5E20;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a i {
    font-size: 0.6rem;
    color: #4CAF50;
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    color: #4CAF50;
    width: 18px;
    margin-top: 3px;
}

/* Footer Map */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.05);
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: none;
}

.footer-map-placeholder {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 2px dashed rgba(255,255,255,0.1);
}

.footer-map-placeholder i {
    font-size: 2rem;
    color: #4CAF50;
    display: block;
    margin-bottom: 8px;
}

.footer-map-placeholder p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* Footer Bottom */
.footer-bottom {
    padding: 15px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #4CAF50;
}

/* ========== RESPONSIVE HEADER & FOOTER ========== */
@media (max-width: 992px) {
    .topbar-info {
        display: none;
    }
    
    .main-navbar .navbar-brand img {
        height: 40px;
    }
    
    .main-navbar .brand-name {
        font-size: 1rem;
    }
    
    .main-navbar .brand-tagline {
        font-size: 0.55rem;
    }
    
    .main-navbar .navbar-collapse {
        background: #1B5E20;
        padding: 16px 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-navbar .nav-link {
        padding: 10px 16px !important;
        border-radius: 8px;
    }
    
    .main-navbar .dropdown-menu {
        background: rgba(0,0,0,0.2);
        margin-left: 16px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-widget ul li a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-map {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .main-navbar .brand-name {
        font-size: 0.85rem;
    }
    
    .main-navbar .navbar-brand img {
        height: 34px;
    }
    
    .footer-widget h5 {
        font-size: 1rem;
    }
}
/* ============================================================
   HEADER SPACER - HILANGKAN SPACE PUTIH
   ============================================================ */

/* Topbar info */
.topbar-info {
    background: #0D2B1B;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1031;
}

/* Main Navbar - Fixed */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #1B5E20 !important;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* ============================================================
   RESET & BASE - TANPA SPACE PUTIH
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ============================================================
   HEADER - FIXED TANPA SPACE
   ============================================================ */

/* Topbar */
.topbar-info {
    background: #0D2B1B;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1031;
}

/* Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #1B5E20 !important;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Header Spacer - HANYA UNTUK FIXED HEADER */
.header-spacer {
    height: 105px;
    display: block;
    width: 100%;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .header-spacer {
        height: 85px;
    }
}

@media (max-width: 576px) {
    .header-spacer {
        height: 70px;
    }
}

/* ============================================================
   HERO SECTION - MULAI LANGSUNG SETELAH HEADER
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================================
   SECTION - TANPA PADDING BERLEBIH
   ============================================================ */
section {
    padding: 60px 0;
    position: relative;
}

section:first-of-type {
    padding-top: 0;
}

/* ============================================================
   TOPBAR CONTACT - RESPONSIVE
   ============================================================ */
.topbar-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-contact li i {
    color: #4CAF50;
    font-size: 0.7rem;
}

.topbar-social {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.topbar-social a {
    color: rgba(255,255,255,0.6);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
}

.topbar-social a:hover {
    color: #fff;
    background: #1B5E20;
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR BRAND
   ============================================================ */
.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.main-navbar .navbar-brand img {
    height: 45px;
    width: auto;
    border-radius: 6px;
}

.main-navbar .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.main-navbar .brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.main-navbar .brand-tagline {
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   NAVBAR LINKS
   ============================================================ */
.main-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12);
}

.main-navbar .dropdown-menu {
    background: #1B5E20;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    padding: 8px;
}

.main-navbar .dropdown-item {
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navbar .dropdown-item i {
    width: 18px;
    font-size: 0.8rem;
    color: #4CAF50;
}

.main-navbar .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ============================================================
   RESPONSIVE NAVBAR
   ============================================================ */
@media (max-width: 992px) {
    .main-navbar .navbar-brand img {
        height: 38px;
    }
    
    .main-navbar .brand-name {
        font-size: 0.95rem;
    }
    
    .main-navbar .brand-tagline {
        font-size: 0.5rem;
    }
    
    .main-navbar .navbar-collapse {
        background: #1B5E20;
        padding: 16px 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-navbar .nav-link {
        padding: 10px 16px !important;
        border-radius: 8px;
    }
    
    .main-navbar .dropdown-menu {
        background: rgba(0,0,0,0.2);
        margin-left: 16px;
    }
    
    .topbar-contact {
        gap: 10px;
    }
    
    .topbar-contact li {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .topbar-info {
        display: none;
    }
    
    .header-spacer {
        height: 65px !important;
    }
    
    .main-navbar .navbar-brand img {
        height: 32px;
    }
    
    .main-navbar .brand-name {
        font-size: 0.8rem;
    }
    
    .main-navbar .brand-tagline {
        font-size: 0.45rem;
    }
    
    .main-navbar .nav-link {
        font-size: 0.8rem;
        padding: 8px 14px !important;
    }
}
/* ============================================================
   HEADER MENYATU DENGAN SLIDER - TANPA SPACE
   ============================================================ */

/* Reset body */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ===== TOPBAR ===== */
.topbar-info {
    background: rgba(13, 43, 27, 0.85);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1031;
    backdrop-filter: blur(10px);
}

/* ===== NAVBAR OVERLAY ===== */
.main-navbar.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: transparent !important;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Navbar saat di-scroll */
.main-navbar.navbar-overlay.scrolled {
    background: #1B5E20 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
}

.main-navbar.navbar-overlay.scrolled .topbar-info {
    display: none;
}

/* ===== HERO SLIDER ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 43, 27, 0.8), rgba(27, 94, 32, 0.6));
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
    }
    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }
    .main-navbar.navbar-overlay {
        background: rgba(13, 43, 27, 0.9) !important;
    }
    .main-navbar.navbar-overlay .navbar-collapse {
        background: #1B5E20;
        padding: 16px 20px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .topbar-info {
        display: none;
    }
    .hero-section {
        min-height: 50vh;
    }
    .hero-slide {
        height: 50vh;
        min-height: 300px;
    }
    .main-navbar.navbar-overlay {
        background: rgba(13, 43, 27, 0.95) !important;
    }
}
/* ============================================================
   BADGE SECTION
   ============================================================ */
.badge-about {
    display: inline-block;
    background: #E8F5E9;
    color: #1B5E20;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ============================================================
   TENTANG DPC
   ============================================================ */
.about-section {
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #1B5E20;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-image-badge i {
    color: #F9A825;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.about-stats .stat-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1B5E20;
    margin: 0;
}

.about-stats .stat-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748B;
}

/* ============================================================
   VISI MISI CARDS
   ============================================================ */
.visi-card, .misi-card, .motto-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F1F5F9;
}

.visi-card:hover, .misi-card:hover, .motto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.visi-card .card-icon, .misi-card .card-icon, .motto-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.visi-card .card-icon {
    background: #E8F5E9;
    color: #1B5E20;
}

.misi-card .card-icon {
    background: #E8F5E9;
    color: #1B5E20;
}

.motto-card .card-icon {
    background: #FEF3C7;
    color: #F9A825;
}

.visi-card h4, .misi-card h4, .motto-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E293B;
}

.visi-card p, .misi-card p, .motto-card p {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #F1F5F9;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-card .program-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: #1B5E20;
    overflow: hidden;
}

.program-card .program-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E293B;
}

.program-card p {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ============================================================
   BERITA CARDS
   ============================================================ */
.berita-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    background: white;
}

.berita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.berita-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.berita-card .card-body {
    padding: 20px;
}

.berita-card .card-body small {
    font-size: 0.75rem;
}

.berita-card .card-body h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1E293B;
}

.berita-card .card-body p {
    color: #64748B;
    font-size: 0.85rem;
}

/* ============================================================
   GALERI CARDS
   ============================================================ */
.galeri-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.galeri-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-card:hover img {
    transform: scale(1.05);
}

.galeri-card .galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-card:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-card .galeri-overlay h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================================
   PENGGURUS CARDS
   ============================================================ */
.pengurus-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
}

.pengurus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pengurus-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #E8F5E9;
}

.pengurus-card h5 {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1E293B;
    margin-bottom: 5px;
}

.pengurus-card p {
    color: #64748B;
    font-size: 0.8rem;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .about-stats {
        gap: 15px;
        flex-wrap: wrap;
    }
    .about-stats .stat-item h3 {
        font-size: 1.2rem;
    }
    .galeri-card img {
        height: 180px;
    }
    .berita-card .card-img-top {
        height: 160px;
    }
    .program-card .program-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    .about-image-badge {
        bottom: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .pengurus-card img {
        width: 80px;
        height: 80px;
    }
}
/* ============================================================
   GALERI - UKURAN SERAGAM
   ============================================================ */

/* Galeri Card - Semua gambar sama besar */
.galeri-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1; /* Membuat kotak persegi */
    background: #F1F5F9;
}

.galeri-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-card:hover img {
    transform: scale(1.08);
}

.galeri-card .galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-card:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-card .galeri-overlay h5,
.galeri-card .galeri-overlay h6 {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Album Card */
.album-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    background: #F1F5F9;
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover img {
    transform: scale(1.08);
}

.album-card .album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-card .album-overlay h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    padding: 10px;
}

/* ============================================================
   RESPONSIVE GALERI
   ============================================================ */
@media (max-width: 768px) {
    .galeri-card .galeri-overlay h5,
    .galeri-card .galeri-overlay h6 {
        font-size: 0.75rem;
    }
    .album-card .album-overlay h5 {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .galeri-card .galeri-overlay {
        padding: 20px 10px 10px;
    }
    .galeri-card .galeri-overlay h5,
    .galeri-card .galeri-overlay h6 {
        font-size: 0.65rem;
    }
    .album-card .album-overlay h5 {
        font-size: 0.65rem;
    }
}
/* ============================================================
   VISI & MISI HOMEPAGE
   ============================================================ */

.visi-card, .misi-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
    height: 100%;
}

.visi-card:hover, .misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.visi-card .card-icon, .misi-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.visi-card .card-icon {
    background: #E8F5E9;
    color: #1B5E20;
}

.misi-card .card-icon {
    background: #E8F5E9;
    color: #1B5E20;
}

.visi-card h4, .misi-card h4 {
    font-weight: 700;
    text-align: center;
    color: #1E293B;
    margin-bottom: 15px;
}

.visi-list, .misi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visi-list li, .misi-list li {
    padding: 8px 0;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #F1F5F9;
}

.visi-list li:last-child, .misi-list li:last-child {
    border-bottom: none;
}

.visi-list li i, .misi-list li i {
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.visi-list li strong, .misi-list li strong {
    color: #1B5E20;
}