/* Tambahkan kode ini di bagian atas file CSS */
.logo img {
  height: 60px; /* Tinggi utama */
  width: auto;  /* Lebar自动调节 agar tidak gepeng */
  max-width: 150px; /* Batas lebar maksimal */
  object-fit: contain; /* Memastikan logo tidak terpotong */
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E7D32;
    text-decoration: none;
}
/* --- RESET & UMUM --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9fdf9;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- HEADER & NAVIGASI --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E7D32; /* Hijau Utama */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #2E7D32;
    border-bottom: 2px solid #2E7D32;
}

.hero {
    /* Ganti 'hero-background.jpg' dengan nama file gambar Anda */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p.subheadline {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0,0,0,0.6);
    padding: 14px;
    border-radius: 4px;
}

/* --- SECTIONS GENERAL --- */
.section-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2.section-title {
    text-align: center;
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 1rem;
}
/* --- SDGS SECTION MENARIK --- */
.sdgs-wrapper {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f0 100%);
    border-radius: 15px;
}
/* Gambar SDGs */
.sdgs-img {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 100%;
    height: auto;
    width: 300px; /* Ukuran lebar lebih besar */
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1)); /* Bayangan halus */
}
/* Judul SDGs */
.sdgs-title {
    font-size: 1.4rem;
    color: #2E7D32;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* Deskripsi SDGs */
.sdgs-desc {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

/* Container goals */
.sdgs-goals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.sdgs-goals img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.sdgs-goals img:hover {
    transform: scale(1.2);
}
/* --- KISAH KAMI (Susunan Vertikal) --- */
h2.section-title {
    text-align: center;
    color: #2E7D32;
    margin-bottom: 10px; /* Dikecilkan */
    margin-top: 10px; /* Ditambahkan untuk rapat */
    font-size: 2rem;
    }
.story-grid {
    display: flex;
    flex-direction: column; /* Mengatur agar tersusun ke bawah */
    gap: 15px; /* Jarak antar kotak */
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}

.story-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid #2E7D32;
    width: 100%; /* Lebar penuh */
}

.story-card h3 {
    color: #388E3C;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.story-card p {
    font-size: 1rem;
    line-height: 1.8;
}
.story-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid #2E7D32;
    border-bottom: 1px solid #eee; /* Garis pemisah kecil */
}
/* --- LAYANAN (Cards) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- GAMBAR LAYANAN --- */
.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto akan mengisi area tanpa gepeng */
    transition: transform 0.3s;
}
/* Efek zoom saat kursor diarahkan */
.service-card:hover .service-img img {
    transform: scale(1.1);
}
.service-content {
    padding: 20px;
}

.service-content h3 {
    color: #2E7D32;
    margin-bottom: 10px;
}
/* --- SECTION CSR DENGAN FOTO --- */
.csr-section {
    /* Foto sebagai background */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('bg-csr.jpg');
    
    /* Pengaturan background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    /* Padding dan text */
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    color: white; /* Warna teks menjadi putih agar terlihat jelas */
    margin-top: 40px;
}

/* Judul CSR */
.csr-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

/* Paragraf CSR */
.csr-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #eee;
    max-width: 800px;
    margin: 0 auto;
}

/* Tombol dalam CSR (Jika ada) */
.csr-section .btn {
    margin-top: 20px;
}
/* --- GAMBAR CSR --- */
.csr-img-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.csr-img {
    width: 100%;
    height: 400px; /* Tinggi tetap */
    object-fit: cover; /* Foto tidak gepeng */
    object-position: center;
    display: block;
}
.csr-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.csr-img-container:hover .csr-img {
    transform: scale(1.02); /* Sedikit memperbesar saat kursor di atas */
}
/* --- KONTAK & FOUNDER --- */
.founder-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.founder-card {
    text-align: center;
    width: 250px;
}

.founder-img {
    width: 150px;
    height: 150px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-email {
    background-color: #2E7D32;
    color: white;
}

/* --- FOOTER --- */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
/* --- SECTION KONTAK & CTA --- */
.contact-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1000px;
}

.contact-title {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- KOTAK KONTAK --- */
.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Ikon dalam kotak */
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-box h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-box a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

/* Tombol WhatsApp */
.btn-whatsapp-box {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp-box:hover {
    background-color: #128c7e;
}

/* Tombol Email */
.btn-email-box {
    background-color: #2E7D32;
    color: white;
}

.btn-email-box:hover {
    background-color: #1b5e20;
}

/* --- ALAMAT KANTOR --- */
.office-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.office-info h3 {
    color: #2E7D32;
    margin-bottom: 20px;
}

.office-info p {
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.office-icon {
    color: #2E7D32;
    font-size: 1.2rem;
}
.btn-whatsapp-box {
    background: linear-gradient(45deg, #25D366, #128c7e);
    color: white;
    border: none;
}

.btn-email-box {
    background: linear-gradient(45deg, #2E7D32, #1b5e20);
    color: white;
    border: none;
}
/* --- SECTION KONTAK DENGAN GAMBAR --- */
.contact-section {
    /* Ganti dari gradient hijau menjadi gambar */
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('bg-kontak.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-title {
    font-size: 2.5rem;
    color: #1b5e20; /* Warna hijau tua */
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.contact-subtitle {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 500;
}
.contact-section {
    background-color: white;
    padding: 80px 20px;
    text-align: center;
    margin: 40px auto;
    max-width: 1100px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* --- SECTION OUR TEAM / LEADER --- */
.team-section {
    background-color: #f8fdf8;
    padding: 60px 20px;
    text-align: center;
}

.team-title {
    font-size: 2.2rem;
    color: #2E7D32;
    margin-bottom: 10px;
    text-align: center; /* Tambahkan ini */
    width: 100%; /* Tambahkan ini */
    display: block; /* Tambahkan ini */
}

.team-subtitle {
    color: #666;
    margin-bottom: 50px;
    font-size: 1rem;
    text-align: center; /* Tambahkan ini */
    width: 100%; /* Tambahkan ini */
    display: block; /* Tambahkan ini */
    margin-left: auto;
    margin-right: auto;
}

/* --- KARTU FOUNDER --- */
.team-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-card {
    width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- FOTO FOUNDER --- */
.founder-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

/* Overlay gradient pada foto */
.founder-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

/* --- INFO FOUNDER --- */
.founder-info {
    padding: 25px 20px;
}

.founder-name {
    font-size: 1.4rem;
    color: #1b5e20;
    font-weight: bold;
    margin-bottom: 5px;
}

.founder-role {
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.founder-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- TOMBOL LINKEDIN --- */
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #0077b5;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.linkedin-btn:hover {
    background-color: #005582;
}

.linkedin-btn i {
    font-size: 1.1rem;
}