* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #fafbfc;
}
 
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
 
/* ========== NAVBAR ========== */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8f0;
}
 
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
 
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c7a4d, #166534);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}
 
.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2c7a4d;
    line-height: 1.2;
}
 
.logo-text p {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.3px;
}
 
.menu-toggle {
    display: none;
    background: #e8f5e9;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    color: #2c7a4d;
    font-size: 1.6rem;
}
 
.menu-toggle:hover {
    background: #c8e6c9;
}
 
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}
 
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
    transition: 0.2s;
    padding: 6px 0;
    position: relative;
}
 
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c7a4d;
    transition: 0.2s;
}
 
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
 
.nav-links a:hover,
.nav-links a.active {
    color: #2c7a4d;
}
 
/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2c7a4d;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}
 
.btn-outline {
    background: transparent;
    border: 2px solid #2c7a4d;
    color: #2c7a4d;
}
 
.btn-outline:hover {
    background: #2c7a4d;
    color: white;
}
 
/* ========== HERO ========== */
.hero {
    background: linear-gradient(110deg, #eef6f0 0%, #dcebe0 100%);
    padding: 80px 0;
}
 
.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}
 
.hero-content {
    flex: 1;
}
 
.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a3622;
    margin-bottom: 20px;
}
 
.hero-content p {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 32px;
}
 
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
 
.hero-image {
    flex: 1;
    text-align: center;
}
 
.hero-image img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}
 
/* ========== SLIDESHOW ========== */
.slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}
 
.slide {
    display: none;
}
 
.slide.active {
    display: block;
}
 
.slideshow-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}
 
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: background 0.2s;
}
 
.slide-btn:hover {
    background: rgba(0,0,0,0.7);
}
 
.prev { left: 12px; }
.next { right: 12px; }
 
.slide-dots {
    text-align: center;
    position: absolute;
    bottom: 14px;
    width: 100%;
    z-index: 10;
}
 
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.2s;
}
 
.dot.active {
    background: white;
}
 
/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
}
 
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0a3622;
    margin-bottom: 56px;
}
 
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #2c7a4d;
    margin: 16px auto 0;
    border-radius: 4px;
}
 
/* ========== ABOUT GRID ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
}
 
.about-text p {
    margin-bottom: 20px;
    color: #334155;
    text-align: justify;
}
 
.background-story {
    background: #fefae0;
    border-radius: 24px;
    padding: 24px;
    margin: 24px 0;
    border-left: 4px solid #2c7a4d;
}
 
.background-story h3 {
    font-size: 1.25rem;
    color: #0a3622;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}
 
.visi-misi {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
 
.visi-misi h4 {
    color: #2c7a4d;
    margin: 16px 0 8px;
    font-size: 1.1rem;
}
 
/* ========== INFO CARD ========== */
.info-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
 
.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}
 
.info-item i {
    width: 28px;
    color: #2c7a4d;
    font-size: 1.1rem;
    margin-top: 2px;
}
 
.badge {
    display: inline-block;
    background: #2c7a4d;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}
 
/* ========== STATS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}
 
.stat-card {
    background: #f0fdf4;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
}
 
.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c7a4d;
}
 
/* ========== KEGIATAN CARD ========== */
.kegiatan-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    margin-top: 16px;
}
 
.kegiatan-card h4 {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    color: #0a3622;
}
 
.kegiatan-card ul {
    list-style: none;
}
 
.kegiatan-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
 
/* ========== PROGRAMS ========== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
 
.program-card {
    background: white;
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}
 
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}
 
.program-card i {
    font-size: 2.8rem;
    color: #2c7a4d;
    margin-bottom: 20px;
}
 
/* ========== ASUH ========== */
.asuh-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
 
.asuh-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    border-top: 4px solid #2c7a4d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
 
/* ========== HOURS ========== */
.hours-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
 
.hour-card {
    background: white;
    border-radius: 20px;
    padding: 20px 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
 
/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
 
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 0.85;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
 
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
 
.gallery-item:hover img {
    transform: scale(1.05);
}
 
/* ========== CONTACT ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}
 
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
 
.contact-icon {
    width: 48px;
    height: 48px;
    background: #e8f5e9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2c7a4d;
}
 
.rekening-box {
    background: #f1f8e9;
    border-radius: 24px;
    padding: 24px;
    margin-top: 24px;
}
 
.map-container {
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
}
 
.map-container iframe {
    width: 100%;
    height: 100%;
}
 
/* ========== FORM ========== */
.form-group {
    margin-bottom: 18px;
}
 
input,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fafbfc;
    transition: 0.2s;
}
 
textarea {
    border-radius: 24px;
    resize: vertical;
}
 
input:focus,
textarea:focus {
    outline: none;
    border-color: #2c7a4d;
    box-shadow: 0 0 0 3px rgba(44, 122, 77, 0.1);
    background: white;
}
 
button[type="submit"] {
    background: #2c7a4d;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}
 
button[type="submit"]:hover {
    background: #1e5a38;
    transform: translateY(-2px);
}
 
/* ========== FOOTER ========== */
footer {
    background: #0f1a12;
    color: #94a3b8;
    padding: 48px 0 32px;
}
 
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
 
.social-icons a {
    color: #94a3b8;
    margin: 0 12px;
    font-size: 1.4rem;
    transition: 0.2s;
}
 
.social-icons a:hover {
    color: #6fbf4c;
}
 
/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: 0.2s;
    z-index: 99;
    text-decoration: none;
}
 
.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128C7E;
}
 
/* ========== ALERT ========== */
.alert-success {
    background: #dcfce7;
    color: #15803d;
    padding: 12px;
    border-radius: 60px;
    margin-top: 16px;
    text-align: center;
}
 
/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
 
    .menu-toggle {
        display: flex;
    }
 
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0 12px;
    }
 
    .nav-links.show {
        display: flex;
    }
 
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
 
    .hero-content h2 {
        font-size: 1.9rem;
    }
 
    .btn-group {
        justify-content: center;
    }
 
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
 
    .asuh-grid {
        grid-template-columns: 1fr;
    }
 
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
    }
 
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .section-title {
        font-size: 1.8rem;
    }
 
    section {
        padding: 56px 0;
    }
 
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
 
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
 
    .logo-text h1 {
        font-size: 1rem;
    }
 
    .slideshow-container img {
        height: 260px;
    }
}
 
@media (min-width: 769px) and (max-width: 1024px) {
    .about-grid {
        gap: 32px;
    }
}