* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background:#fff;
    color: #222;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    color: #c9a24d;
    font-weight: bold;
    letter-spacing: 3px;
}

.header a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
}

.nav-btn {
    border: 1px solid #c9a24d;
    padding: 8px 15px;
}

/* HERO */
.hero {
    height: 100vh;
    background: rgba(255,255,255,0.06)
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-text {
    position: relative;
    max-width: 650px;
    color: #fff;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero p {
    margin: 20px 0;
    font-size: 18px;
}

.btn {
    background: #c9a24d;
    color: #000;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn.full {
    width: 100%;
}

/* SECTION */
.section {
    padding: 120px 60px;
    text-align: center;
}

.section.dark {
    background: #111;
    color: #fff;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 60px;
    color: #666;
}

/* ABOUT */
.about-grid,
.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

/* GRID PRODUK */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: transform .4s ease, box-shadow .4s ease;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform .6s ease;
}

/* HOVER */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.product-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.product-overlay h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.product-overlay p {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.85;
}

/* FORM */
.order-form {
    max-width: 500px;
    margin: auto;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: none;
}

/* FOOTER */
footer {
    background: #000;
    color: #aaa;
    padding: 25px;
    text-align: center;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.lang-btn {
    background: transparent;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    padding: 6px 10px;
    margin-left: 10px;
    cursor: pointer;
}

.header a {
    position: relative;
}

.header a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c9a24d;
    transition: width 0.3s ease;
}

.header a:hover::after {
    width: 100%;
}
.about-grid div,
.export-grid div {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.about-grid div:hover,
.export-grid div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* EXPORT CAPABILITIES */
.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.export-card {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.export-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.export-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.export-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.export-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}
/* EXPORT SECTION BACKGROUND */
.export-section {
    background: #f3efe7; /* beige elegan */
    color: #2b2b2b;
}

.export-card.highlight {
    background: #777777
}
