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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header/Navbar */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    min-height: 100px;
}

.logo-left {
    position: absolute;
    left: 20px;
}

.logo-right {
    position: absolute;
    right: 20px;
}

.logo img {
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.logo-right img {
    height: 80px;
    max-width: 180px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #029b66;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00a651;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 100px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: justify;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Timeline Table */
.timeline-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.timeline-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-table thead {
    background: #00a651;
    color: #fff;
}

.timeline-table th {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.timeline-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.timeline-table tbody tr:last-child td {
    border-bottom: none;
}

.timeline-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* Keunggulan Section */
.keunggulan {
    padding: 80px 20px;
    background: #f5f5f5;
}

.keunggulan h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333;
}

.keunggulan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Accordion Styles */
.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    background: #00a651;
    color: #fff;
    padding: 18px 20px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: #008a43;
}

/* Active accordion header - Orange */
.accordion-item.active .accordion-header {
    background: #f9b234;
    color: #333;
}

.accordion-item.active .accordion-header:hover {
    background: #e6a12d;
}

.accordion-icon {
    font-size: 14px;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

.accordion-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.accordion-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

.accordion-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.button-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-keunggulan {
    background: #00a651;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 14px;
}

.btn-keunggulan:hover {
    background: #008a43;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 166, 81, 0.3);
}

.btn-keunggulan:last-child {
    background: #f9b234;
    color: #333;
}

.btn-keunggulan:last-child:hover {
    background: #e6a12d;
}

.keunggulan-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #333;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: #00a651;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #00a651;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    color: #333;
    padding: 18px 20px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-item.active .faq-question {
    background: #00a651;
    color: #fff;
}

.faq-item.active .faq-question:hover {
    background: #008a43;
}

.faq-icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 20px;
    border-top: 2px solid #00a651;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 17px;
}

/* Location Section */
.location {
    padding: 80px 20px;
    background: linear-gradient(135deg, #00a651 0%, #4dcc7d 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    color: #fff;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f9b234;
    font-weight: bold;
}

.cities-grid {
    display: flex;
    gap: 40px;
}

.cities-column {
    list-style: none;
    flex: 1;
}

.cities-column li {
    color: #fff;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.cities-column li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #f9b234;
    font-size: 12px;
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    color: #00a651;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 20px;
    min-width: 24px;
}

.contact-item p {
    line-height: 1.6;
    color: #555;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-left: 250px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 20px;
}

.social-links a:hover {
    background: #008a43;
    transform: translateY(-3px);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header .container {
        min-height: 90px;
    }

    .logo img {
        height: 60px;
        max-width: 140px;
    }

    .logo-right img {
        height: 70px;
        max-width: 160px;
    }

    .hero {
        margin-top: 90px;
    }

    .keunggulan-content {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        min-height: 80px;
    }

    .logo img {
        height: 55px;
        max-width: 110px;
    }

    .logo-left {
        position: relative;
        left: 0;
    }

    .logo-right {
        position: relative;
        right: 0;
    }

    .logo-right img {
        height: 65px;
        max-width: 130px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }

    .hero {
        margin-top: 70px;
    }

    .about h2,
    .keunggulan h2,
    .faq h2 {
        font-size: 28px;
    }

    .category-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 18px;
    }

    .timeline-table {
        overflow-x: auto;
    }

    .timeline-table table {
        min-width: 500px;
    }

    .cities-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header .container {
        min-height: 70px;
    }

    .logo img {
        height: 40px;
        max-width: 80px;
    }

    .logo-right img {
        height: 50px;
        max-width: 100px;
    }

    .hero {
        margin-top: 70px;
    }

    .about h2,
    .keunggulan h2,
    .faq h2 {
        font-size: 24px;
    }

    .category-title {
        font-size: 18px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .benefit-box {
        padding: 20px;
    }

    .benefit-box h3 {
        font-size: 14px;
    }

    .location h2 {
        font-size: 22px;
    }
}
