/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(67, 77, 103, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 35px;
    padding: 5px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a8b938;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a8b938;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #a8b938;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #96a632;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 185, 56, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background-color: #404553;
    background-image: url('images/header.jpg');
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a8b938 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #a8b938;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #96a632;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 185, 56, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #434d67;
    transform: translateY(-3px);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #434d67;
    line-height: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

/* Introduction Section */
.introduction {
    padding: 6rem 0;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1.5rem;
}



.intro-content p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}


.intro-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #d5d9b7;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1rem;
}

.intro-card p {
    color: #666;
    line-height: 1.8;
}

/* Why UMKM Section */
.why-umkm {
    padding: 6rem 0;
    background: #fff;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.3rem;
    color: #434d67;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #a8b938;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 900;
    color: white;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    line-height: 1rem;
    color: #fff;
    margin-top: 0.5rem;
}

.content-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Our Offer Section */
.our-offer {
    padding: 6rem 0;
    background: #f8f9fa;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: #a8b938;
    padding: 2.5rem;
    border-radius: 16px;
    border-top: 4px solid #a8b938;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8rem;
    color: #434d67;
    margin-bottom: 1rem;
}

.offer-card p {
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.offer-card ul {
    list-style: none;
    padding: 0;
}

.offer-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.offer-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a8b938;
    font-weight: bold;
}

/* Cooperation Section */
.cooperation {
    padding: 6rem 0;
    background: #fff;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cooperation-card {
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cooperation-card:hover {
    background: #434d67;
    color: #fff;
    transform: translateY(-5px);
}

.cooperation-icon {
    font-size: 3rem;
    margin-bottom: 0.2rem;
    display: block;
}

.cooperation-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cooperation-card:hover h3 {
    color: #a8b938;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #434d67 0%, #a8b938 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    text-align: center;
}

.cta-number {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    color: #fff;
}

.cta-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.btn-investment {
    background: #fff;
    color: #434d67;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-investment:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Page Sections */
.page-section {
    min-height: 100vh;
    padding: 6rem 0;
    display: none;
}

.page-section.active {
    display: block;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Styles */
.timeline-all {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.timeline {
    gap: 2rem;
}

.timeline-image {
    padding: 2rem;
}

/*
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #a8b938;
    transform: translateX(-50%);
}
*/


.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}


.timeline-year {
    display: inline-block;
    background: #a8b938;
    color: #fff;
    padding: 0.5rem;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 0.5rem;
}

/* AI Hadir */
.ai-hadir {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 3rem;
}

.ai-hadir p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}



/* AI Benefits */
.ai-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-benefits ul {
    padding-left: 15px;
}


.benefit-card {
    background: #f6f8e9;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #586310;
    margin-top: 1rem;
    margin-bottom: 1rem;
}


/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #a8b938;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    font-size:1.2rem;
    margin: 2rem 0 1rem 0;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    font-size:1.2rem;
    margin: 0.5rem 0;
    color: #666;
}


/* HIGHLIGHTS */
.highlight-card {
    padding: 2rem;
    border-radius: 1rem;
    background: #f1f2e9;
    margin-bottom: 3rem;
}

.highlight-card h3 {
    font-size:2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlight-card p {
    font-size:1.2rem;
    margin: 2rem 0 1rem 0;
}

.highlight-card ul {
    padding-left: 20px;
    font-size:1.2rem;
    margin: 2rem 0 1rem 0;
}

.highlight-card ul {
    margin-bottom: 0.5rem;
}


/* Forms */
.consultation-form, .partner-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultation-form h3, .partner-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #434d67;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8b938;
    box-shadow: 0 0 0 3px rgba(168, 185, 56, 0.1);
}

/* Investment Content */
.investment-content {
    margin-top: 3rem;
}

.concept-section, .criteria-section, .jo-jv-section {
    margin-bottom: 4rem;
}

.concept-section h2, .criteria-section h2, .jo-jv-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 2rem;
}

.concept-section p, .criteria-section p, .jo-jv-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.concept-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #a8b938;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.concept-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 0.8rem;
}

.concept-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}


/* Criteria List */
.criteria-main-grid {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 2rem;    
}


.criteria-list {
/*    max-width: 800px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.criteria-icon {
    background: #a8b938;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.criteria-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 0.5rem;
}

/* JO JV Grid */
.jo-jv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.jo-card, .jv-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.jo-card, .jv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #434d67;
    margin: 1.5rem 0 1rem 0;
}

.jo-card:hover, .jv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


.jo-details h4, .jv-details h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #434d67;
    margin: 1.5rem 0 1rem 0;
}

.jo-details ul, .jv-details ul {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 0.5rem;
}

.consultation-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.btn-consultation {
    background: #a8b938;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-consultation:hover {
    background: #96a632;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 185, 56, 0.3);
}

/* Footer */
.footer {
    background: #434d67;
    color: #fff;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 35px;
    padding: 5px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #a8b938;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a8b938;
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #a8b938;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #434d67;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 960px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #434d67;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .cta-button, .hero-image {
        display: none;
    }


    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .introduction, .why-umkm, .our-offer, .cooperation {
        padding: 2rem;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .jo-jv-grid {
        grid-template-columns: 1fr;
    }

    .timeline-all, .ai-hadir {
        display: flex;
    }

    .timeline-image, .ai-hadir-image {
        display: none;
    }

    .content-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .ai-benefits {
        text-align: center;
    }

    .benefit-card {
        align-items: center;
        text-align: left;
    }

}




@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .cooperation-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}