* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #4a5568;
    background: #fffaf0;
}

/* Container */
.container {
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

/* Header */
/* ===== NAVBAR SHARED ===== */
header {
    background: linear-gradient(135deg, rgba(254,176,8,0.87) 0%, #ffc78f 100%);
    position: sticky;
    width: 100%;
    padding: 0 1rem;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(246,137,58,0.2);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    width: 170px;
    height: auto;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0a0808;
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                background-color 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav menu — smooth slide + fade */
.nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(254,176,8,0.97), #ffc78f);
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    gap: 0;
    z-index: 999;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.35s ease,
                transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                padding 0.3s ease;
}

.nav-menu.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 8px 0 16px;
}

/* Staggered animation */
.nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu.active li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.nav-menu.active li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.10s; }
.nav-menu.active li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.nav-menu.active li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.nav-menu.active li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.nav-menu.active li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.30s; }
.nav-menu.active li:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.nav-menu.active li:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.40s; }
.nav-menu.active li:nth-child(9) { opacity: 1; transform: translateX(0); transition-delay: 0.45s; }

.nav-menu a {
    color: rgb(0, 0, 0);
    display: block;
    padding: 12px 2rem;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.18);
    padding-left: 2.5rem;
    opacity: 1;
}


/* Hero */
.hero {
    background: linear-gradient(135deg, #ada3a35f 0%, #f6893a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Profil */
.profil {
    padding: 80px 0;
    background: rgb(255, 255, 255);
}

.profil-grid {
    display: grid;
    grid-template-columns: 1fr; /* ubah dari 1fr 1fr */
    gap: 4rem;
    align-items: center;
}

.profil-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.2rem;
    border-left: 4px solid #dfa000;
    padding-left: 14px;
}

.profil-text p {
    font-size: 0.97rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.9;
    text-align: justify;
}

.stat span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.stat h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: #718096;
    margin: 2px 0 4px;
}

.stats {
    display: flex;
    gap: 2rem;
    
        
}

.stat {
    text-align: justify;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    
}

.stat small {
    color: #a0aec0;
    font-size: 0.9rem;
}

.profil-image {
    text-align: center;
}

.profil-image i {
    font-size: 8rem;
    color: #433a30;
    opacity: 0.8;
}

/* Visi Misi */
.visi-misi {
    padding: 80px 0;
    background: #fef5e7;
}

.visi-misi h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(246,137,58,0.1);
    transition: transform 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card i {
    font-size: 3rem;
    color: rgba(239, 182, 60, 0.735);
    margin-bottom: 1rem;
}

.vm-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* SECTION */
.company-list.modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d3748);
}

/* TITLE */
.title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

/* GLASS CONTAINER */
.table-glass {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ROW */
.table-glass .row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    padding: 16px 20px;
    color: rgb(243, 237, 237);
    transition: all 0.3s ease;
}

/* HEADER */
.table-glass .header {
    background: rgba(246, 137, 58, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* BORDER HALUS */
.table-glass .row:not(.header) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* HOVER EFFECT 🔥 */
.table-glass .row:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ANIMASI MASUK */
.table-glass .row {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.table-glass .row:nth-child(1) { animation-delay: 0.1s; }
.table-glass .row:nth-child(2) { animation-delay: 0.2s; }
.table-glass .row:nth-child(3) { animation-delay: 0.3s; }
.table-glass .row:nth-child(4) { animation-delay: 0.4s; }
.table-glass .row:nth-child(5) { animation-delay: 0.5s; }
.table-glass .row:nth-child(6) { animation-delay: 0.6s; }
.table-glass .row:nth-child(7) { animation-delay: 0.7s; }
.table-glass .row:nth-child(8) { animation-delay: 0.8s; }
.table-glass .row:nth-child(9) { animation-delay: 0.9s; }
.table-glass .row:nth-child(10) { animation-delay: 1s; }
.table-glass .row:nth-child(11) { animation-delay: 1.1s; }

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .table-glass .row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 4px 10px;
        padding: 12px 16px;
    }

    .table-glass .row div:nth-child(1) {
        grid-row: 1 / 3;
        align-self: center;
    }

    .table-glass .row div:nth-child(3) {
        display: block; /* ← hapus display:none */
        font-size: 0.85rem;
        color: #f6d9b0;
    }

    /* Header tetap rapi */
    .table-glass .header div:nth-child(3) {
        font-size: 0.75rem;
    }
}





/* Core Values - Super Rapi */
.core-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef5e7 0%, #fffaf0 100%);
    position: relative;
    overflow: hidden;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f6893a, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #f6893a, #fed7aa);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(246,137,58,0.12),
        0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(246,137,58,0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f6893a, #fed7aa);
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(246,137,58,0.2),
        0 5px 15px rgba(0,0,0,0.15);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6893a, #fed7aa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(246,137,58,0.3);
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.value-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .value-card {
        padding: 2.5rem 2rem;
    }
    
    .value-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .core-values {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 2rem 1.5rem;
    }
}

/* Business Field & Our Supply Cards */
.bf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.bf-card {
    background: white;
    border: 1px solid rgba(246,137,58,0.2);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(246,137,58,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.bf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(246,137,58,0.18);
}

.bf-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f6893a, #fec979);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bf-icon i {
    font-size: 1.3rem;
    color: white;
}

.bf-card span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
}

.supply-card {
    background: #fef5e7;
}

@media (max-width: 768px) {
    .bf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bf-grid {
        grid-template-columns: 1fr;
    }
}

/*footer*/
.footer {
    background-color: #222; /* sesuaikan dengan warna footer kamu */
    padding: 15px 0;
}

.footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer .footer-content p {
    margin: 0;
    font-size: 13px;
    color: #fff; /* sesuaikan warna teks */
    white-space: nowrap;
}

.footer .footer-content a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-content .divider {
    color: #aaa;
    font-size: 13px;
}

/* Responsiv */
@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .footer .footer-content .divider {
        display: none;
    }
}