/* ==========================================================================
   A. GLOBAL STYLES & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
body {
    background-color: #f9fbf7;
    color: #333333;
    overflow-x: hidden;
}
.container {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   B. NAVBAR STYLES (Glassmorphism & Responsive)
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.logo-container { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 45px; width: auto; object-fit: contain; display: block; }
.logo-text { font-weight: 700; font-size: 1.1rem; color: #ffffff; transition: color 0.4s; letter-spacing: 0.5px; }
nav ul { display: flex; list-style: none; gap: 30px; }
nav ul li a { text-decoration: none; color: #ffffff; font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; padding-bottom: 5px; }
nav ul li a.active, nav ul li a:hover { color: #ffffff; font-weight: 600; border-bottom: 2px solid #ffffff; }
.right-nav { display: flex; align-items: center; color: #ffffff; font-weight: 600; font-size: 0.95rem; }
.menu-toggle { display: none; font-size: 1.5rem; color: #ffffff; cursor: pointer; transition: transform 0.3s ease; }

header.scrolled {
    background-color: #ffffff;
    padding: 15px 8%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-bottom: 1px solid #eeeeee;
}
header.scrolled .logo-text { color: #2e6b14; }
header.scrolled nav ul li a { color: #333333; }
header.scrolled nav ul li a:hover, header.scrolled nav ul li a.active { color: #2e6b14; border-bottom: 2px solid #2e6b14; }
header.scrolled .right-nav { color: #333333; }
header.scrolled .menu-toggle { color: #333333; }

/* Hero Banner */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('bg_img.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero h1 { color: #ffffff; font-size: 3.2rem; font-weight: 700; text-shadow: 2px 2px 10px rgba(0,0,0,0.4); }

.hero-buttons { display: flex; gap: 20px; }
.btn-primary { background-color: #2e6b14; color: #ffffff; text-decoration: none; padding: 15px 35px; font-size: 1.05rem; font-weight: 600; border-radius: 30px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(46, 107, 20, 0.4); }
.btn-primary:hover { background-color: #214e0e; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(46, 107, 20, 0.6); }
.btn-outline { background-color: transparent; color: #ffffff; text-decoration: none; padding: 14px 35px; font-size: 1.05rem; font-weight: 600; border-radius: 30px; border: 2px solid #ffffff; transition: all 0.3s ease; }
.btn-outline:hover { background-color: #ffffff; color: #2e6b14; transform: translateY(-3px); }

/* Elemen Grid Tambahan untuk Halaman Utama */
.intro-section { max-width: 1200px; margin: 100px auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.intro-text h2 { color: #2e6b14; font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.intro-text p { color: #555555; font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-card { background: #f0f7ed; padding: 30px; border-radius: 14px; text-align: center; border-bottom: 4px solid #2e6b14; }
.stat-card i { font-size: 2rem; color: #2e6b14; margin-bottom: 10px; }
.stat-card h3 { font-size: 1.15rem; color: #333333; font-weight: 700; }

/* Style Default Beranda Services */
.services-section-index { background-color: #f9fbf7; padding: 100px 20px; text-align: center; }
.section-title { color: #2e6b14; font-size: 2.4rem; font-weight: 800; margin-bottom: 15px; }
.section-subtitle { color: #666666; font-size: 1.1rem; margin-bottom: 60px; max-width: 650px; margin-left: auto; margin-right: auto; }
.grid-services { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card { background: #ffffff; padding: 40px 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f0f7ed; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(46, 107, 20, 0.1); border-color: rgba(46, 107, 20, 0.2); }
.service-card i { font-size: 2.2rem; color: #2e6b14; margin-bottom: 25px; background: #f0f7ed; width: 75px; height: 75px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.service-card h3 { font-size: 1.2rem; color: #333333; margin-bottom: 15px; font-weight: 700; line-height: 1.4; }
.service-card p { font-size: 0.92rem; line-height: 1.6; color: #555555; }

/* ==========================================================================
    STYLE LAYANAN
   ========================================================================== */
.services-section {
    max-width: 1200px;
    margin: 80px auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.services-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}
.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tab-btn {
    background: #ffffff;
    border: 1px solid #e2ebd9;
    padding: 22px 25px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #444444;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: left;
    width: 100%;
}
.tab-btn i {
    font-size: 1.4rem;
    color: #2e6b14;
    background: #f0f7ed;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.tab-btn:hover {
    border-color: #2e6b14;
    transform: translateX(5px);
}
.tab-btn.active {
    background: #2e6b14;
    color: #ffffff;
    border-color: #2e6b14;
    box-shadow: 0 10px 20px rgba(46, 107, 20, 0.2);
}
.tab-btn.active i {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.services-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 450px;
}
.tab-panel {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}
.tab-panel.active {
    display: block;
}
@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Detail Card Sub-Layanan */
.service-sub-title {
    color: #2e6b14;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.sub-services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sub-service-card {
    background: #fafafa;
    border-left: 4px solid #2e6b14;
    padding: 25px;
    border-radius: 0 12px 12px 0;
}
.sub-service-card h4 {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sub-service-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* ISO Grid Layout */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.iso-item {
    background: #ffffff;
    border: 1px solid #e9f0e6;
    padding: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}
.iso-item i {
    color: #2e6b14;
    font-size: 1.2rem;
    background: #f0f7ed;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.iso-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444444;
}

/* CTA SECTION & PARTNERS */
.cta-section { background: #f0f7ed; color: #2e6b14; padding: 95px 20px; text-align: center; }
.cta-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; max-width: 750px; margin: 0 auto 40px auto; color: #000000; line-height: 1.6; }
.btn-green { background-color: #2e6b14; color: #ffffff; text-decoration: none; padding: 15px 40px; font-size: 1.05rem; font-weight: 700; border-radius: 30px; transition: all 0.3s ease; display: inline-block; }
.btn-green:hover { background-color: #245410; transform: scale(1.05); box-shadow: 0 5px 20px rgba(0,0,0,0.2); }

.partners-section { background-color: #ffffff; padding: 80px 20px; text-align: center; border-top: 1px solid #eeeeee; }
.partners-title { color: #2e6b14; font-size: 2.4rem; font-weight: 800; margin-bottom: 40px; }
.partners-grid { display: flex; justify-content: center; align-items: center; gap: 60px; max-width: 800px; margin: 0 auto; flex-wrap: wrap; }
.partner-logo { max-width: 180px; height: auto; transition: all 0.3s ease; }
.partner-logo:hover { opacity: 1; transform: scale(1.05); }

/* DOCUMENTATION GALLERY STYLES */
.gallery-section {
    max-width: 1200px;
    margin: 60px auto 80px auto;
    padding: 0 20px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    aspect-ratio: 3 / 4;
    background-color: #e2ebd9;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, opacity 0.5s ease;
    will-change: transform, box-shadow;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item:hover {
    transform: translateY(-10px) !important; 
    box-shadow: 0 15px 35px rgba(46, 107, 20, 0.25);
}
.gallery-item.hidden-item {
    display: none !important;
    opacity: 0;
}
.gallery-item.show-item {
    display: grid !important;
    opacity: 1;
}
#loadMoreBtn {
    background-color: #2e6b14;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
#loadMoreBtn:hover {
    background-color: #245410;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 107, 20, 0.3);
}
/* ==========================================================================
    STYLE BERANDA
   ========================================================================== */
.hero-index {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.35)), url('bg_img.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-index h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.4);
    max-width: 950px;
    line-height: 1.25;
}
.hero-index p {
    color: #f5f5f5;
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 750px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
}
/* Section index */
.services-section {
    background-color: #f9fbf7;
    padding: 100px 20px;
    text-align: center;
}
.section-title {
    color: #2e6b14;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.grid-services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.service-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f7ed;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46, 107, 20, 0.1);
    border-color: rgba(46, 107, 20, 0.2);
}
.service-card i {
    font-size: 2.2rem;
    color: #2e6b14;
    margin-bottom: 25px;
    background: #f0f7ed;
    width: 75px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.service-card h3 {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}
.service-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555555;
}
/* Responsive */
@media (max-width: 1100px) {
    .grid-services { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 992px) {
    .intro-section { grid-template-columns: 1fr; text-align: center; }
        .hero h1 { font-size: 2.6rem; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        }
    nav.active { max-height: 280px; padding: 20px; }
    nav ul { flex-direction: column; gap: 14px; width: 100%; }
    nav ul li a { color: #1f2937 !important; display: block; font-size: 1rem; }
    .right-nav { display: none; }
    .grid-services { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; width: 90%; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
    .partner-logo { max-width: 120px; }
}
/* ==========================================================================
    STYLE TENTANG KAMI
   ========================================================================== */
.about-block { background: #ffffff; padding: 45px; border-radius: 16px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); margin-bottom: 40px; line-height: 1.7; }
.about-block h2 { color: #2e6b14; font-size: 2rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.about-block h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background-color: #2e6b14; border-radius: 2px; }
.about-block p { color: #555555; font-size: 1.05rem; margin-bottom: 15px; }

.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.vision-card, .mission-card { background: #ffffff; padding: 40px; border-radius: 16px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.vision-card h3, .mission-card h3 { color: #2e6b14; font-size: 1.5rem; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.vision-card p { color: #555555; font-size: 1.05rem; line-height: 1.6; }
.mission-list { list-style: none; }
.mission-list li { position: relative; padding-left: 25px; margin-bottom: 15px; color: #555555; font-size: 1rem; line-height: 1.5; }
.mission-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; color: #2e6b14; font-size: 0.9rem; }

.section-heading { text-align: center; margin: 70px 0 40px 0; color: #2e6b14; font-size: 2.2rem; font-weight: 700; }
.services-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 60px; }
.service-box { background: #ffffff; padding: 35px; border-radius: 14px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); display: flex; gap: 20px; transition: transform 0.3s; }
.service-box:hover { transform: translateY(-5px); }
.service-box i { font-size: 2rem; color: #2e6b14; background: #f0f7ed; width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.service-box-content h4 { font-size: 1.2rem; color: #333333; margin-bottom: 10px; font-weight: 700; }
.service-box-content p { color: #666666; font-size: 0.95rem; line-height: 1.6; }

.advantages-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 40px; margin: 60px 0 80px 0; background: #ffffff; padding: 45px; border-radius: 16px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); }
.adv-left h3 { color: #2e6b14; font-size: 1.8rem; margin-bottom: 20px; }
.adv-list { list-style: none; }
.adv-list li { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px dashed #e5edd2; color: #444444; font-weight: 500; }
.adv-list li:last-child { border-bottom: none; }
.adv-list li i { color: #2e6b14; font-size: 1.1rem; }
.commitment-box { background: #f0f7ed; padding: 35px; border-radius: 12px; border-left: 5px solid #2e6b14; display: flex; flex-direction: column; justify-content: center; }
.commitment-box h3 { color: #2e6b14; font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; }
.commitment-box p { color: #444444; line-height: 1.7; font-size: 1.02rem; font-style: italic; }

/* ==========================================================================
    STYLE HUBUNGI KAMI
   ========================================================================== */
.contact-container { max-width: 1200px; margin: 80px auto 80px auto; padding: 0 20px; position: relative; z-index: 10; display: flex; gap: 40px; }
.contact-info { flex: 2; background: #ffffff; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-info h2 { color: #2e6b14; font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.company-name { font-size: 1.2rem; font-weight: 600; color: #444444; margin-bottom: 30px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.info-item i { font-size: 1.3rem; color: #2e6b14; background: #f0f7ed; padding: 12px; border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; }
.info-text p { color: #666666; line-height: 1.6; font-size: 1rem; }
.info-text strong { color: #333333; display: block; margin-bottom: 2px; }

.contact-form-card { flex: 3; background: #ffffff; padding: 40px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-form-card h2 { color: #333333; font-size: 1.8rem; margin-bottom: 30px; font-weight: 700; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #555555; margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 1rem; color: #333333; background-color: #fafafa; transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2e6b14; background-color: #ffffff; box-shadow: 0 0 0 4px rgba(46, 107, 20, 0.1); }
.btn-submit { background-color: #2e6b14; color: #ffffff; border: none; padding: 14px 35px; font-size: 1rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; }
.btn-submit:hover { background-color: #214e0e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(46, 107, 20, 0.3); }

/* ==========================================================================
    E. GLOBAL FOOTER
   ========================================================================== */
footer {
    background: #2e6b14;
    color: #e2e8f0;
    padding: 56px 6% 32px 6%;
        }
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-left { flex: 2; min-width: 240px; }
.footer-right { flex: 1; min-width: 150px; }
.footer-right h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: white;
}
.footer-right ul { list-style: none; }
.footer-right li { margin-bottom: 12px; }
.footer-right a {
    color: #cbd5e6;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-right a:hover { color: white; text-decoration: underline; }
.social-icons { display: flex; gap: 16px; margin-top: 20px; }
.social-icons a {
    background: 2e6b14;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.2s;
}

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a { width: 36px; height: 36px; background-color: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; }
.social-icons a:hover { background-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.copyright { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); color: #aaaaaa; font-size: 0.85rem; }

/* ==========================================================================
    FLOATING WA BUTTON
   ========================================================================== */
.wa-float {
    position: fixed; bottom: 30px; right: 30px; background-color: #2e6b14; 
    color: white; padding: 14px 28px; border-radius: 30px; display: flex; 
    align-items: center; gap: 12px; text-decoration: none; font-weight: bold; z-index: 999; 
    transition: background-color 0.3s;
    
    outline: 2px solid rgba(67, 241, 67, 0.863);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: bolaDenyutMurni 2s ease-in-out infinite;
}
.wa-float:hover { background-color: #245410; }

@keyframes bolaDenyutMurni {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.07); }
}

/* Media */
@media (max-width: 992px) {
    .vision-mission-grid, .services-layout, .advantages-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-container { flex-direction: column; margin-top: 40px; gap: 30px; }
    .services-container { grid-template-columns: 1fr; gap: 30px; }
    .services-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
    .tab-btn { white-space: nowrap; flex: 1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav {
        display: block; position: absolute; top: 100%; left: 0; width: 100%;
        background-color: #ffffff; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 0 20px; border-top: 1px solid #eeeeee; overflow: hidden;
        max-height: 0; transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    }
    nav.active { max-height: 300px; padding: 20px; }
    nav ul { flex-direction: column; gap: 15px; width: 100%; }
    nav ul li a { color: #333333 !important; display: block; width: 100%; font-size: 1.05rem; padding: 8px 0; }
    header:not(.scrolled) nav ul li a { color: #333333; }
    header.scrolled nav ul li a.active, header.scrolled nav ul li a:hover { border-bottom: none; color: #2e6b14 !important; }
    .right-nav { display: none; }
    .about-block, .vision-card, .mission-card, .advantages-grid, .contact-info, .contact-form-card { padding: 25px; }
    .hero h1 { font-size: 2.3rem; }
    /* Tambahan penyesuaian seluler untuk komponen layanan */
    .services-content, .sub-service-card { padding: 25px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .iso-grid { grid-template-columns: 1fr; }
}