/* TOP BAR */
.top-bar {
    background-color: #4c5b46;
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.top-bar a:hover {
    color: #ffd54f;
}

.call-us {
    background: #f4c430;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

/* BRAND */
.brand-text {
    line-height: 1.1;
    font-size: 14px;
}

/* NAVBAR */
.navbar .nav-link {
    font-weight: 500;
    padding: 10px 14px;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #4c5b46;
}

.login-btn {
    font-weight: 600;
}


/* ===== HERO / CAROUSEL ===== */

/* kasih jarak dari navbar */
#heroCarousel {
    margin-top: 0;
}

/* tinggi carousel menyesuaikan navbar + topbar */
.carousel-img {
    height: calc(115vh - 140px);
    object-fit: cover;
}

/* posisi caption naik sedikit */
.carousel-caption {
    background: rgba(0, 0, 0, 0.45);
    padding: 20px;
    border-radius: 8px;
    bottom: 15%;
}

.carousel-caption h2 {
    font-weight: bold;
    text-transform: uppercase;
}


/* ===== ABOUT US ===== */

.about-section {
    background-color: #ffffff;
}

.section-subtitle {
    color: #6a8f3a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3a2f;
}

.about-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* IMAGE */
.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 420px;          /* ⬅️ INI YANG MEMPERBESAR FOTO */
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* BUTTON */

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
}


/* ===== READ MORE EFFECT ===== */

.about-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease, opacity 0.6s ease;
    opacity: 0;
}

.about-more.show {
    max-height: 1000px;
    /* cukup besar */
    opacity: 1;
}

/* tombol lebih smooth */
.btn-explore {
    cursor: pointer;
}


.services-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.our-services {
    padding: 90px 0;
    background: #ffffff;
}

.services-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
}

.services-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 15px auto 60px;
    font-size: 17px;
    color: #6b7280;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.service-box {
    background: #f9fafb;
    padding: 45px 35px;
    border-radius: 22px;
    transition: all 0.35s ease;
    border: 1px solid #f1f5f9;
}

.service-box:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.service-box h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
}

.service-box p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
}

.latest-news {
    padding: 100px 0;
    background: #f9fafb;
}

.news-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #111827;
}

.news-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 15px auto 65px;
    font-size: 17px;
    color: #6b7280;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.news-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.12);
}

.news-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.news-content {
    padding: 28px 26px 32px;
}

.news-date {
    display: inline-block;
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.news-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 14px;
}

.news-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

.news-link {
    font-size: 15px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #1e40af;
}

.contact-section {
    padding: 110px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.contact-subtitle {
    color: #6a8f3a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: #1f2937;
}

.contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 16px;
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    font-size: 20px;
    color: #2563eb;
}

/* FORM */
.contact-form {
    background: #f9fafb;
    padding: 45px;
    border-radius: 26px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.btn-contact {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-contact:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37,99,235,0.35);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 28px;
    }
}

.footer-section {
    background: #0f172a;
    color: #cbd5f5;
    padding: 90px 0 0;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    color: #cbd5f5;
}

.footer-contact i {
    color: #60a5fa;
}

/* SOCIAL */
.footer-social {
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    margin-right: 8px;
    transition: all 0.4s ease;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 70px;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===== VISION & MISSION ===== */

.vm-section {
    background: #ffffff;
}

.vm-subtitle {
    color: #6a8f3a;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.vm-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2933;
}

/* VISION */
.vision-card {
    max-width: 900px;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

/* MISSION */
.mission-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.mission-card h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2933;
}

.mission-card p {
    color: #4b5563;
    line-height: 1.7;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* OBJECTIVES */
.objectives-card {
    max-width: 900px;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.objectives-card ul {
    padding-left: 0;
    list-style: none;
}

.objectives-card li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 18px;
    color: #374151;
    line-height: 1.7;
}

.objectives-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6a8f3a;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vm-title {
        font-size: 28px;
    }

    .vision-card {
        padding: 28px;
    }
}


/* ===== OBJECTIVES ===== */

.objectives-section {
    background: #ffffff;
}

.objective-card {
    background: #f9fafb;
    padding: 35px 30px;
    border-radius: 18px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.objective-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2933;
}

.objective-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

/* hover smooth */
.objective-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .objective-card {
        padding: 28px 22px;
    }
}

/* ===== ORGANIZATIONAL STRUCTURE ===== */

.structure-section {
    background: #ffffff;
}

.structure-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.structure-card.highlight {
    background: linear-gradient(135deg, #eef2f7, #ffffff);
}

.structure-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2933;
}

.structure-name {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
}

.structure-name span,
.structure-list span {
    font-weight: 400;
    color: #6b7280;
}

.structure-list {
    list-style: none;
    padding-left: 0;
}

.structure-list li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.6;
}

.structure-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 22px;
    color: #6a8f3a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .structure-card {
        padding: 28px;
    }

    .structure-title {
        font-size: 20px;
    }
}


.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float img {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}
