/* ---------- RESET & VARIABEL (WARNA OREN DIPERKUAT) ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-soft: #FF7A00;
    --orange-light: #FFE8D0;
    --orange-dark: #D96600;
    --white: #ffffff;
    --gray-100: #f9f7f5;
    --gray-200: #f0edea;
    --gray-600: #6b5e55;
    --gray-800: #3d352e;
    --shadow: 0 8px 30px rgba(255, 122, 0, 0.20);
    --radius: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 48px auto;
}

.badge-orange {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange-dark);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- BUTTON ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--orange-soft);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

.btn:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--orange-soft);
    box-shadow: none;
    border: 2px solid var(--orange-soft);
}

.btn-outline:hover {
    background: var(--orange-soft);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    z-index: 999;
    padding: 14px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-soft);
}

.logo i {
    font-size: 1.8rem;
    color: var(--orange-soft);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--orange-soft);
    transition: var(--transition);
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--orange-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-nav {
    background: var(--orange-soft);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links .btn-nav:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.35);
}

.nav-links .btn-nav::after {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- HERO ---------- */
.hero {
    padding: 160px 0 100px 0;
    background: linear-gradient(145deg, var(--white) 0%, var(--orange-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.hero-content h1 span {
    color: var(--orange-soft);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--orange-light);
    z-index: -1;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .illustration {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1/1;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: var(--orange-soft);
    box-shadow: 0 30px 60px rgba(255, 122, 0, 0.25);
    background: linear-gradient(135deg, var(--white) 0%, var(--orange-light) 100%);
    transition: var(--transition);
}

.hero-image .illustration:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 122, 0, 0.35);
}

/* ---------- STATS ---------- */
.stats {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange-soft);
}

.stat-item p {
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* ---------- ABOUT ---------- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    background: var(--orange-light);
    border-radius: var(--radius);
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--orange-soft);
    box-shadow: var(--shadow);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-text .features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.about-text .features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}

.about-text .features li i {
    color: var(--orange-soft);
    font-size: 1.3rem;
    width: 28px;
}

/* ===== VISI & MISI (BARU) ===== */
.visi-misi {
    background: var(--gray-100);
}

.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.vm-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid transparent;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.12);
    border-color: var(--orange-light);
}

.vm-icon {
    font-size: 2.6rem;
    color: var(--orange-soft);
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.vm-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

.vm-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--gray-600);
    font-size: 0.98rem;
    line-height: 1.6;
}

.vm-list li i {
    color: var(--orange-soft);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---------- PROGRAMS ---------- */
.programs {
    background: var(--gray-100);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
    border-color: var(--orange-light);
}

.program-card .icon {
    font-size: 3rem;
    color: var(--orange-soft);
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ---------- TEAM ---------- */
.team {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange-soft);
    box-shadow: 0 16px 32px rgba(255, 122, 0, 0.12);
}

.team-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange-light);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--orange-soft);
    font-weight: 600;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--orange-soft);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-card .bio {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--orange-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 122, 0, 0.15);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author .avatar-sm {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--orange-soft);
}

.testimonial-card .author .name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card .author .title {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ---------- CTA ---------- */
.cta {
    background: var(--white);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
    border-radius: var(--radius);
    padding: 60px 48px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 32px auto;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--gray-800);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand .logo i {
    color: var(--orange-soft);
}

.footer-brand p {
    max-width: 280px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--orange-soft);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--orange-soft);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom i {
    color: var(--orange-soft);
    margin: 0 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image .illustration {
        max-width: 320px;
        font-size: 6rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text .features li {
        justify-content: center;
    }
    .visi-misi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.06);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hero {
        padding: 130px 0 60px;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-box {
        padding: 40px 24px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}