:root {
    --navy: #003366;
    --orange: #e67e22;
    --bg-light: #f8fafc;
    --text-gray: #475569;
}

body {
    background-color: var(--bg-light);
}

/* ================= HERO SECTION ================= */
.about-hero {
    background: 
        linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)),
        url('https://images.unsplash.com/photo-1529390079861-591de354faf5?q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 8%;
    color: #fff;
    text-align: center;
    border-bottom: 8px solid var(--orange);
}

/* ================= CONTENT ================= */
.content-wrapper {
    padding: 60px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-tag {
    display: block;
    margin-bottom: 15px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

/* ================= MISI GRID UPDATED ================= */
.misi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Sedikit lebih lebar */
    gap: 25px;
    margin-top: 20px;
}

.misi-item {
    display: flex; /* Mengaktifkan flexbox */
    background: #fff; /* Latar belakang utama putih */
    padding: 0; /* Padding diatur di dalam anak elemen */
    border-radius: 25px; /* Sudut membulat seperti di gambar */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none; /* Hilangkan border-left lama */
    align-items: stretch;
}

.misi-icon {
    background: var(--orange); /* Latar oranye untuk ikon */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 80px;
    font-size: 30px;
}

.misi-text {
    padding: 25px;
    color: #000; /* Teks hitam pekat seperti di gambar */
    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* ================= STATISTIK ================= */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.stat-card {
    padding: 30px;
    border-radius: 20px;
    color: #fff;
}

.stat-main {
    background: var(--navy);
}

.stat-orange {
    background: var(--orange);
}

.stat-outline {
    background: #fff;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.big-num {
    display: block;
    margin-bottom: 5px;
    font-size: 2.8rem;
    font-weight: 800;
}

/* ================= PARTNER LOGO ================= */
.partner-wrapper {
    text-align: center;
    padding: 20px 0;
}

.partner-logo-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* ================= FINANCIAL SECTION ================= */
.finance-grid {
    display: grid;
    /* grid-size: 1fr; */
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .finance-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.finance-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin: 15px 0;
}

.finance-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.chart-container {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
}

.chart-placeholder-img {
    max-width: 100%;
    height: auto;
}

/* ================= TABLE DESIGN ================= */
.table-responsive {
    overflow-x: auto;
    margin-top: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.custom-table th {
    background-color: #f1f5f9;
    color: var(--navy);
    padding: 15px;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
}

.custom-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-gray);
}

.custom-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.custom-table tr:last-child {
    background-color: #fff4ed; /* Warna highlight untuk total */
    font-weight: 700;
    color: var(--navy);
}

.text-center { text-align: center; }
.text-bold { font-weight: 700; }

/* ================= TIMELINE SECTION ================= */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-horizontal {
    display: flex;
    overflow-x: auto;
    padding: 40px 0;
    gap: 30px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.timeline-item {
    min-width: 280px;
    position: relative;
    padding-top: 40px;
    border-top: 4px solid var(--navy);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px var(--navy);
}

.year-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    display: block;
}

.timeline-content {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    border: 1px solid rgba(0,0,0,0.05);
}

.timeline-content strong {
    color: var(--orange);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* ================= HISTORY SECTION ================= */
.history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.history-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: justify;
}

.history-highlight {
    background: #eff6ff;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--navy);
    margin-bottom: 20px;
}

.history-highlight p {
    margin-bottom: 0;
    font-style: italic;
}

/* ================= MOBILE MENU ================= */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 18px;
    right: 20px;
    font-size: 20px; /* lebih kecil */
    background: var(--orange);
    color: white;
    width: 38px;      /* ukuran fix biar proporsional */
    height: 38px;
    border-radius: 8px; /* lebih smooth */
    cursor: pointer;
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Dropdown menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background: white;
    width: 190px; /* sedikit lebih slim */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 2000;
    animation: fadeSlide 0.25s ease;
}

.mobile-menu a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: #f8f9fa;
    padding-left: 22px;
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    nav div {
        display: none;
    }

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

/* Container Utama */
.contact-section {
    padding: 60px 5%;
}

.page-title {
    text-align: center; 
    color: var(--navy); 
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Grid System */
.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .contact-form-wrapper {
    flex: 1;
    min-width: 320px;
}

/* Info Styling */
.contact-subtitle {
    color: var(--orange);
    margin-bottom: 15px;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 8px;
}

/* GOOGLE MAPS RAPIH */
.map-container {
    margin-top: 30px;
    background: #eee;
    height: 350px; /* Ukuran lebih proporsional */
    border-radius: 15px;
    overflow: hidden; /* Agar sudut iframe melengkung */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

/* Form Styling */
.styled-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--navy);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

/* Responsif Layar Kecil */
@media (max-width: 768px) {
    .page-title { font-size: 1.8rem; }
    .contact-grid { gap: 30px; }
    .styled-form { padding: 25px; }
}