body {
    margin: 0;
    font-family: Arial;
    background: #F5F2E9;
    color: #1A1A1A;
}

.navbar {
    background: rgba(31, 61, 43, 0.7);
    padding: 40px 0; /* lebih tinggi = lebih mahal */
}
.navbar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar {
    position: relative;
}
.nav-container {
    max-width: 1400px; /* lebih lebar */
    padding: 0 40px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(31, 61, 43, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

/* saat scroll */
.navbar.scrolled {
    background: #1F3D2B;
    padding: 15px 0;
}
/* LOGO */
.logo {
    position: absolute;
    padding: 4px;
    left: 40px;
}

.logo img {
    height: 230px;
}

/* MENU */
.menu {
    flex: 1;
    text-align: center;
}
.menu a {
    margin: 0 20px;
    text-decoration: none;
    color: #F5F2E9;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.menu a:hover {
    color: #C8A951;
}
.menu {
    margin-left: 200px;
}
/* RIGHT */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang {
    font-size: 13px;
    color: #F5F2E9;
}

/* BUTTON */
.btn-nav {
    background: #C8A951;
    color: black;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.menu {
    display: flex;
    align-items: center;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}
.hero {
    margin-top: 80px;
}

/* HERO */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #1F3D2B, #2F5D3A);
    color: white;
}
.hero {
    height: 70vh;
    background: url('/assets/img/wood.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(31, 61, 43, 0.7);
}

.hero {
    height: 70vh;
    background: url('/assets/img/wood.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    background: linear-gradient(
        rgba(31,61,43,0.5),
        rgba(31,61,43,0.6)
    );
}
.hero-content {
    position: relative;
    color: white;
    max-width: 700px;
    margin-left: 5%;
}

.hero h2 {
    font-size: 56px;
    color: #C8A951;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

.hero h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #C8A951;
    margin-top: 15px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #C8A951;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.about, .why {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.grid {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.about {
    background: #F5F2E9;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 38px;
    font-weight: 700;
}
.about-text {
    max-width: 500px;
}
.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-text li {
    margin-bottom: 12px;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.about-text li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #C8A951;
}
.about-grid {
    gap: 80px;
}

.about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.stats {
    background: #1F3D2B;
    color: white;
    padding: 60px 0;
    text-align: center;
}
.tag {
    color: #C8A951;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
}

.stats h2 {
    color: #C8A951;
    font-size: 36px;
}
.services {
    padding: 80px 0;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* SECTION */
section {
    padding: 60px 0;
}

/* FOOTER */
footer {
    background: #1F3D2B;
    text-align: center;
    padding: 20px;
    color: white;
}
