 /* --- CSS GLOBAL --- */
 :root {
     --primary-green: #4a7c59;
     --dark-green: #1a3c25;
     --text-green: #2c4a34;
     --accent-gold: #f4d03f;
     --light-bg-green: #eff7f2;
 }

 body {
     padding-top: 86px;
     background-color: #fcfcfc;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* --- CSS NAVBAR --- */
 .navbar {
     background-color: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     padding-top: 10px;
     padding-bottom: 10px;
     height: 86px;
 }

 .brand-text {
     color: var(--text-green);
     font-weight: 800;
     font-size: 0.95rem;
     line-height: 1.2;
     text-transform: uppercase;
 }

 .logo-img {
     height: 45px;
     width: auto;
 }

 .navbar-nav .nav-link {
     color: var(--text-green);
     font-weight: 700;
     font-size: 1rem;
     padding: 0.5rem 1rem;
 }

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

 .nav-link.active-pill {
     background-color: var(--primary-green);
     color: white !important;
     border-radius: 50px;
     padding-left: 1.5rem !important;
     padding-right: 1.5rem !important;
 }

 .btn-login {
     background-color: #3e8e58;
     color: white;
     font-weight: 700;
     border-radius: 50px;
     padding: 8px 25px;
     text-decoration: none;
     transition: all 0.3s;
 }

 .btn-login:hover {
     background-color: #2c6b40;
     color: white;
 }

 /* --- CSS CAROUSEL --- */
 .hero-carousel-item {
     height: 600px;
     position: relative;
     background-color: #000;
 }

 .hero-carousel-item img {
     height: 100%;
     width: 100%;
     object-fit: cover;
     opacity: 0.6;
 }

 .carousel-caption-custom {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     width: 80%;
     z-index: 10;
 }

 .badge-gold {
     background-color: var(--accent-gold);
     color: #2c4a34;
     padding: 8px 20px;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.8rem;
     letter-spacing: 1px;
     margin-bottom: 20px;
     display: inline-block;
 }

 .hero-title {
     color: white;
     font-weight: 800;
     font-size: 2.5rem;
     margin-bottom: 30px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 }

 .btn-gold {
     background-color: var(--accent-gold);
     color: #2c4a34;
     font-weight: 700;
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: transform 0.2s;
 }

 .btn-gold:hover {
     background-color: #e6c02a;
     color: #1a2e20;
     transform: scale(1.05);
 }

 .nav-circle {
     background-color: rgba(255, 255, 255, 0.8);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2c4a34;
     transition: all 0.3s;
 }

 .nav-circle:hover {
     background-color: white;
     color: var(--primary-green);
 }

 /* --- CSS SECTION PROFIL & KHASAIS --- */
 .section-intro {
     background-color: #fcfcfc;
 }

 .intro-heading {
     color: var(--dark-green);
     font-weight: 800;
     line-height: 1.3;
     letter-spacing: -0.5px;
 }

 .underline-accent {
     border-bottom: 5px solid var(--primary-green);
     display: inline-block;
     line-height: 0.85;
 }

 .intro-desc {
     color: #6c757d;
     line-height: 1.8;
     font-size: 1rem;
 }

 .btn-outline-custom {
     border: 2px solid var(--text-green);
     color: var(--text-green);
     font-weight: 700;
     border-radius: 50px;
     padding: 10px 25px;
     transition: all 0.3s;
 }

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

 .btn-green-custom {
     background-color: #366343;
     color: white;
     font-weight: 700;
     border-radius: 50px;
     padding: 10px 25px;
     border: 2px solid #366343;
     transition: all 0.3s;
 }

 .btn-green-custom:hover {
     background-color: #264730;
     border-color: #264730;
     color: white;
 }

 .image-circle-container {
     position: relative;
     display: inline-block;
     padding: 20px;
 }

 .image-circle-container::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border: 1px solid #e0e0e0;
     border-radius: 50%;
     z-index: 0;
 }

 .circle-img {
     width: 350px;
     height: 350px;
     object-fit: cover;
     border-radius: 50%;
     position: relative;
     z-index: 1;
 }

 .section-khasais {
     background: linear-gradient(180deg, #43a047 0%, #2e7d32 100%);
     color: white;
 }

 .card-khasais {
     background: white;
     border-radius: 20px;
     padding: 40px 25px;
     text-align: center;
     height: 100%;
     transition: transform 0.3s ease;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     color: #333;
 }

 .card-khasais:hover {
     transform: translateY(-10px);
 }

 .icon-circle-bg {
     width: 80px;
     height: 80px;
     background-color: #5cb85c;
     color: white;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     margin-bottom: 25px;
 }

 .khasais-title {
     font-weight: 800;
     font-size: 2.5rem;
 }

 .khasais-subtitle {
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto 50px auto;
     opacity: 0.9;
 }

 .card-title-custom {
     font-weight: 800;
     color: #2c4a34;
     margin-bottom: 15px;
     font-size: 1.1rem;
 }

 .card-text-custom {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.6;
 }

 /* --- CSS SECTION BERITA --- */
 .section-berita {
     background-color: var(--light-bg-green);
     padding-bottom: 80px;
 }

 .section-badge {
     background-color: rgba(74, 124, 89, 0.1);
     color: var(--primary-green);
     padding: 5px 15px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.85rem;
     display: inline-block;
     margin-bottom: 15px;
 }

 .berita-title {
     color: var(--text-green);
     font-weight: 800;
     font-size: 2.2rem;
     margin-bottom: 10px;
 }

 .card-berita {
     border: none;
     border-radius: 15px;
     overflow: hidden;
     background: white;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     height: 100%;
 }

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

 .card-berita-img-wrapper {
     height: 220px;
     overflow: hidden;
     position: relative;
 }

 .card-berita-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .card-berita:hover .card-berita-img {
     transform: scale(1.05);
 }

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

 .meta-date {
     font-size: 0.8rem;
     color: #888;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .card-berita-title {
     font-weight: 700;
     font-size: 1.25rem;
     color: var(--text-green);
     margin-bottom: 10px;
     line-height: 1.4;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .card-berita-title a {
     text-decoration: none;
     color: inherit;
     transition: color 0.2s;
 }

 .card-berita-title a:hover {
     color: var(--primary-green);
 }

 .card-berita-excerpt {
     color: #6c757d;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .read-more-link {
     color: var(--primary-green);
     font-weight: 700;
     text-decoration: none;
     font-size: 0.9rem;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: gap 0.2s;
 }

 .read-more-link:hover {
     gap: 10px;
 }

 /* --- CSS CTA SECTION (NEW) --- */
 .section-cta {
     padding-bottom: 50px;
     background-color: var(--light-bg-green);
 }

 .cta-card {
     background: linear-gradient(135deg, #66bb6a, #43a047);
     /* Gradient hijau cerah */
     border-radius: 20px;
     padding: 60px 20px;
     text-align: center;
     color: white;
     box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
     position: relative;
     overflow: hidden;
 }

 /* Dekorasi background CTA */
 .cta-card::after {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 200px;
     height: 200px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
 }

 .cta-title {
     font-weight: 800;
     font-size: 2.5rem;
     margin-bottom: 15px;
 }

 .cta-desc {
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto 30px auto;
     opacity: 0.9;
 }

 .btn-white-custom {
     background-color: white;
     color: #2e7d32;
     font-weight: 700;
     padding: 12px 35px;
     border-radius: 50px;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     transition: all 0.3s;
 }

 .btn-white-custom:hover {
     transform: scale(1.05);
     background-color: #f1f1f1;
     color: #1b5e20;
 }

 /* --- CSS FOOTER (NEW & IMPROVED) --- */
 .footer-custom {
     background-color: var(--dark-green);
     /* Warna hijau gelap sesuai gambar */
     color: white;
     padding-top: 60px;
 }

 .footer-heading {
     color: var(--accent-gold);
     /* Warna kuning emas */
     font-weight: 700;
     font-size: 1.2rem;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 /* Garis bawah kuning di judul footer */
 .footer-heading::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 3px;
     background-color: var(--accent-gold);
     border-radius: 2px;
 }

 .contact-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .contact-list li {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
     gap: 15px;
     font-size: 0.95rem;
     color: #e0e0e0;
 }

 .contact-list li i {
     color: var(--accent-gold);
     margin-top: 4px;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: #e0e0e0;
     text-decoration: none;
     transition: color 0.2s;
     font-size: 0.95rem;
 }

 .footer-links a:hover {
     color: var(--accent-gold);
     padding-left: 5px;
     /* Efek geser saat hover */
 }

 .footer-bottom {
     background-color: rgba(0, 0, 0, 0.2);
     padding: 20px 0;
     margin-top: 50px;
     font-size: 0.85rem;
     color: #ccc;
 }

 .quote-footer {
     font-style: italic;
     color: #888;
 }

 /* Responsiveness */
 @media (max-width: 991px) {
     body {
         padding-top: 76px;
     }

     .navbar {
         height: auto;
     }

     .hero-carousel-item {
         height: 400px;
     }

     .circle-img {
         width: 280px;
         height: 280px;
     }

     .khasais-title {
         font-size: 2rem;
     }

     .cta-title {
         font-size: 1.8rem;
     }

     .footer-bottom {
         text-align: center;
     }

     .footer-bottom .d-flex {
         flex-direction: column;
         gap: 10px;
     }
 }
