:root {
    --primary: #006400;
    --secondary: #ffd700;
    --accent: #1e3a8a;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

/* Base */
body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}
section {
    padding: 0px 0;
}
.bg-light {
    background-color: var(--light) !important;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
    height: 50px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 0px;
}
.hero-content {
    max-width: 800px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary:hover {
    background-color: #004d00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    font-weight: 600;
}
.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
}

/* Section Title */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}
.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

/* Statistic Cards */
.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.stat-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.stat-card:hover:before {
    opacity: 1;
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    margin-top: 10px;
    font-weight: 500;
}
.stat-unit {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Sectors */
.sector-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    margin-bottom: 30px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.sector-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.sector-content {
    padding: 25px;
}
.sector-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Map */
.map-container {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.map-popup {
    padding: 5px;
}
.map-popup h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #2c3e50;
}
.map-popup p {
    margin: 0;
    font-size: 14px;
}

/* UMKM Card */
.umkm-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.umkm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.umkm-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0.9)),
        url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}
.quote-icon {
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 0;
}
.quote-text {
    font-size: 1.5rem;
    font-weight: 300;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--secondary);
}

/* FAQ */
.faq-accordion {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.faq-item {
    border-bottom: 1px solid #eaeaea;
    background: #fff;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background-color: #f9f9f9;
}
.faq-question.active {
    background-color: #f1f7ff;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer.active {
    max-height: 500px;
}
.faq-answer-content {
    padding: 0 25px 20px;
    line-height: 1.7;
    color: #555;
}

/* Form & Contact */
.contact-section {
    background-color: var(--light);
    padding: 100px 0;
}
.form-control {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}
.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.5rem;
}
.back-to-top:hover {
    background: #34495e;
    transform: translateY(-3px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    section { padding: 60px 0; }
    .stat-number { font-size: 2.5rem; }
    .stat-icon { font-size: 2rem; }
    .faq-question { padding: 16px 20px; font-size: 1rem; }
    .faq-answer-content { padding: 0 20px 16px; }
    .map-container { height: 350px; }
    .back-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn { width: 100%; margin-bottom: 10px; }
    .hero-content .d-flex { flex-direction: column; }
}
