* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid #222;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: .3s;
    font-size: 18px;
}

.nav-links a:hover {
    color: #C9A356;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #C9A356;
    font-size: 30px;
    cursor: pointer;
}

/* =========================
   BUTTONS
========================= */

.btn {
    background: white;
    color: black;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid white;
    padding: 12px 25px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: all .3s ease;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

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

    text-align: center;

    padding: 120px 20px 60px;

    background-image: url('/img/nyomot1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1000px;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 20px;
    background: linear-gradient(390deg,
            #553b06,
            #C9A356,
            #e2d598,
            #C9A356,
            #553b06);

    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 55px;
}

.hero p {
    font-size: 20px;
    color: #ccc;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================
   ABOUT
========================= */

.about-container {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 60px;

    align-items: center;

    margin-top: 50px;
}

.about-text {

    text-align: left;
}

.about-text p {

    margin-bottom: 20px;

    color: #fff;

    line-height: 1.9;

    font-size: 20px;
}

.about-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    object-position: center bottom;

    border-radius: 15px;

    margin: auto;

    display: block;

    border-radius: 15px;

    border: 1px solid #222;
}

/* WHY CHOOSE US */

.why-us {

    margin-top: 80px;
}

.why-us h3 {

    font-size: 36px;

    text-align: center;

    margin-bottom: 40px;
}

.why-slider-wrapper {

    width: 1020px;

    max-width: 100%;

    margin: auto;

    overflow: hidden;

    padding-top: 10px;

    cursor: grab;

    user-select: none;
}

.why-slider-wrapper:active {

    cursor: grabbing;
}

.why-slider {

    display: flex;

    gap: 30px;

    touch-action: pan-y;

    transition: transform .8s ease;
}

.why-card {

    width: 320px;

    min-height: 220px;

    background: #111;

    border: 1px solid #222;

    border-radius: 15px;

    padding: 25px;

    flex-shrink: 0;

    transition: .3s;

    display: flex;

    flex-direction: column;
}

.why-card:hover {

    transform: translateY(-5px);

    border-color: #C9A356;
}

.why-card-title {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    min-height: 60px;
}

/* .why-card-title i{

    font-size:24px;

    color:#C9A356;
} */

.why-card-title img {

    width: 30px;
    height: 30px;
}

.why-card-title h4 {

    font-size: 22px;

    text-align: center;

    margin: 0;

    color: #fff;
}

.why-card p {

    color: #ccc;

    margin-top: 15px;

    line-height: 1.8;

    font-size: 16px;
}

/* =========================
   SECTION
========================= */

.section {
    padding: 120px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;

    scroll-margin-top: 100px;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #C9A356;
}

/* =========================
   PRODUCT TABS
========================= */

.product-tabs {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 40px;

    margin-bottom: 40px;
}

.product-tab {

    background: #111;

    color: white;

    border: 1px solid #222;

    padding: 12px 25px;

    border-radius: 8px;

    cursor: pointer;

    transition: .3s;

    font-size: 18px;

    font-weight: bold;
}

.product-tab:hover {

    border-color: #C9A356;
}

.product-tab.active {

    background: white;

    color: black;
}

/* =========================
   PRODUCT DETAIL
========================= */

.product-detail {

    display: none;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}

.active-product {

    display: grid;
}

.product-image img {

    width: 100%;

    border-radius: 12px;

    display: block;
}

.product-content {

    text-align: left;
}

.product-content h3 {

    font-size: 32px;

    margin-bottom: 20px;

    white-space: nowrap;
}

.product-content p {

    max-width: 100%;

    font-size: 18px;

    margin-bottom: 20px;
}

.product-content ul {

    padding-left: 20px;
}

.product-content li {

    margin-bottom: 10px;

    font-size: 17px;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-item {
    height: 250px;
    background: #111;
    border: 1px solid #222;

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

    font-size: 22px;
    border-radius: 12px;
}

/* =========================
   NEWS SECTION
========================= */

.news-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.news-slider {
    display: flex;
    gap: 25px;

    overflow-x: hidden;

    scroll-behavior: smooth;

    padding: 20px 10px;

    width: 1020px;

    scrollbar-width: none;
}

.news-slider::-webkit-scrollbar {
    display: none;
}

.news-card {
    min-width: 320px;

    background: #111;

    border: 1px solid #222;

    border-radius: 12px;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    text-decoration: none;

    color: white;

    transition: .3s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #C9A356;
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card h3 {
    padding: 15px;
    padding-bottom: 10px;
}

.news-card p {
    margin-top: auto;
    padding: 0 15px 20px;
    color: #bbb;
}

.news-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;

    background: #111;

    color: white;

    font-size: 24px;

    cursor: pointer;

    border-radius: 50%;

    flex-shrink: 0;

    transition: .3s;
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

.news-btn:hover {
    background: #222;
}

/* ===================================
   NEWS ARTICLE
=================================== */

.article-page {
    background: #000;
    padding: 140px 20px 80px;
}

.article-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* HEADER */

.article-header {
    margin-bottom: 50px;
}

.article-title {
    font-size: 3rem;
    line-height: 1.25;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

/* COVER IMAGE */

.article-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* CONTENT */

.article-content {
    margin-top: 50px;
}

.article-content h2 {
    font-size: 2rem;
    color: #222;
    margin-top: 50px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.article-content h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #C9A356;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}

.article-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* LIST */

.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

.article-content li::marker {
    color: #C9A356;
}

/* TABLE */

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    overflow: hidden;
    border-radius: 12px;
}

.article-table thead {
    background: #1d2939;
    color: white;
}

.article-table th {
    padding: 16px;
    text-align: left;
}

.article-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #000;
}

.article-table tbody tr:hover {
    background: #f7f7f7;
}

/* COMPANY VIDEO */

.company-video {

    margin-top: 80px;
}

.company-video iframe {

    width: 100%;

    max-width: 900px;

    height: 500px;

    border: none;

    border-radius: 15px;

    display: block;

    margin: auto;
}

.company-video h3 {
    font-size: 36px;

    text-align: center;

    margin-bottom: 40px;
}

/* =========================
   STATISTICS
========================= */

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;

    padding: 80px 20px;

    background: #111;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 48px;
}

.stat-box p {
    color: #bbb;
}

/* =========================
   CONTACT
========================= */

.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    margin-top: 50px;

    align-items: start;
}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

    text-align: left;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 18px;

    padding: 10px;
}

.contact-item i {

    font-size: 24px;

    width: 30px;

    color: white;
}

.contact-item a {
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-form input {
    background: #111;
    color: white;


    border: 1px solid #333;

    padding: 15px;

    border-radius: 8px;

    font-size: 15px;
}


.contact-form textarea {
    background: #111;
    color: white;

    font-size: 15px;

    border: 1px solid #333;

    padding: 15px;

    border-radius: 8px;
}

.contact-form textarea {
    height: 180px;
    resize: none;
}

.contact-form button {
    font-size: 15px;
}

/* =========================
   FOOTER
========================= */

footer {

    border-top: 1px solid #222;

    padding: 30px 20px;

    background: #000;
}

.footer-container {

    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer-text {

    color: #888;
}

.footer-social {

    display: flex;

    gap: 15px;
}

.social-link {

    width: 45px;

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid #222;

    border-radius: 50%;

    color: white;

    text-decoration: none;

    transition: .3s;
}

.social-link:hover {

    border-color: white;

    transform: translateY(-3px);
}

.social-link i {

    font-size: 20px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float {
    position: fixed;

    bottom: 30px;
    right: 30px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: white;

    border-radius: 50%;

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

    text-decoration: none;

    font-size: 24px;
    font-weight: bold;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .3);

    transition: .3s;

    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 32px;
}

/* (HP kecil) */
@media (max-width: 575px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 55px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid #222;
        padding: 20px;
        gap: 15px;
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 100px 15px 40px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section {
        padding: 60px 15px;
        scroll-margin-top: 70px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .about-text {
        text-align: left;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .about-image img {
        height: auto;
        max-height: 300px;
    }

    .why-us {
        margin-top: 50px;
    }

    .why-us h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .why-slider-wrapper {
        width: 100%;
    }

    .why-card {
        width: 280px;
        padding: 20px;
    }

    .product-tabs {
        gap: 10px;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .product-tab {
        padding: 10px 15px;
        font-size: 14px;
        flex: 1 1 100%;
        text-align: center;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-content h3 {
        font-size: 22px;
        white-space: normal;
        margin-bottom: 15px;
    }

    .product-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .product-content li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .news-slider {
        width: 100%;
        padding: 15px 5px;
        flex-direction: column;
        gap: 20px;
    }

    .news-card {
        width: 100%;
        min-width: auto;
    }

    .news-card img {
        height: 180px;
    }

    .news-card h3 {
        font-size: 16px;
        padding: 10px;
    }

    .news-card p {
        font-size: 13px;
        padding: 0 10px 15px;
    }

    .company-video {
        margin-top: 50px;
    }

    .company-video h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .company-video iframe {
        height: 220px;
    }

    .stats {
        padding: 50px 15px;
        gap: 25px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 14px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-info {
        gap: 15px;
    }

    .contact-item {
        font-size: 15px;
        padding: 5px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contact-form textarea {
        height: 140px;
    }

    footer {
        padding: 20px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 18px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }

    .article-page {
        padding: 100px 15px 40px;
    }

    .article-container {
        padding: 20px;
    }

    .article-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .article-meta {
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .article-featured-image {
        height: 200px;
    }

    .article-content {
        margin-top: 30px;
    }

    .article-content h2 {
        font-size: 18px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article-content h3 {
        font-size: 15px;
    }

    .article-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .article-table th,
    .article-table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* (HP besar) */
@media (min-width:576px) and (max-width:767px) {
    .navbar {
        padding: 12px 20px;
    }

    .logo img {
        height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid #222;
        padding: 20px;
        gap: 15px;
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 110px 20px 50px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        margin-top: 30px;
        gap: 15px;
    }

    .section {
        padding: 85px 20px;
        scroll-margin-top: 80px;
    }

    .section h2 {
        font-size: 32px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image img {
        height: auto;
        max-height: 380px;
    }

    .why-us {
        margin-top: 60px;
    }

    .why-us h3 {
        font-size: 28px;
    }

    .why-slider-wrapper {
        width: 100%;
    }

    .product-tabs {
        gap: 12px;
    }

    .product-tab {
        padding: 10px 20px;
        font-size: 16px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-content h3 {
        font-size: 26px;
        white-space: normal;
    }

    .product-content p {
        font-size: 16px;
    }

    .news-slider {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .news-card {
        width: 100%;
        min-width: auto;
    }

    .company-video iframe {
        height: 320px;
    }

    .stats {
        padding: 60px 20px;
        gap: 30px;
    }

    .stat-box h3 {
        font-size: 38px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .article-page {
        padding: 110px 20px 50px;
    }

    .article-container {
        padding: 30px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-content h2 {
        font-size: 22px;
    }

    .article-content p {
        font-size: 15px;
    }
}

/* (Tablet) */
@media (min-width:768px) and (max-width:991px) {
    .logo img {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid #222;
        padding: 20px;
        gap: 15px;
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 100px 30px;
        scroll-margin-top: 90px;
    }

    .section h2 {
        font-size: 36px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: auto;
        max-height: 400px;
        object-position: center 75%;
    }

    .why-us h3 {
        font-size: 32px;
    }

    .why-slider-wrapper {
        width: 100%;
    }

    .why-card {
        width: 330px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-content h3 {
        font-size: 28px;
        white-space: normal;
    }

    .news-slider {
        width: 100%;
        flex-direction: column;
        gap: 25px;
    }

    .news-card {
        width: 100%;
        min-width: auto;
    }

    .company-video iframe {
        height: 400px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-container {
        padding: 40px;
    }

    .article-title {
        font-size: 36px;
    }

    .article-featured-image {
        height: 400px;
    }

    .article-content h2 {
        font-size: 26px;
    }
}