:root {
    --primary: #b6895b;

    --bg: #ffffff;

    --ease: cubic-bezier(0.2, 0.9, 0.3, 1);

    --card: #0b1220;

    --muted: #9aa4b2;

    --accent: rgb(0, 87, 50);

    --glass: rgb(0, 87, 0.03);

    --radius: 14px;

    --shadow: 0 8px 24px rgba(2, 6, 23, 0.6);
}

* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;

    outline: none;

    border: none;

    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    position: relative;
    background-color: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Navbar */

.navbar {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 1.4rem 7%;

    background-color: rgba(255, 255, 255, 0.9);

    border-bottom: 1px solid rgb(255, 255, 255);

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 9999;
}

.logo-img img {
    top: 0;
    left: 0;
    right: 0;
    width: 150px;
    height: auto;
}

.navbar .navbar-nav a {
    color: #000000;
    display: inline-block;
    font-size: 1.3rem;
    margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
    color: var(--primary);
}

.navbar .navbar-nav a::after {
    content: "";
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem solid #000000;
    transform: scaleX(0);
    transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
    transform: scaleX(0.5);
}

.navbar .navbar-extra a {
    color: #000000;
    margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
    color: var(--primary);
}

#hamburger-menu {
    display: none;
}

/*Login*/

/* ================= LOGIN ONLY (FIX FINAL) ================= */

.login-page {
    background: url("/img/backgroundLogin.jpg") no-repeat center center;
    background-size: cover;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* overlay biar lebih enak dilihat */
.login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

/* container */
.login-page .container {
    position: relative;
    z-index: 1;
}

/* card */
.login-page .login-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    overflow: hidden;
}

/* header (dibikin clean, bukan gradient norak) */
.login-page .login-header {
    background: url("/img/Cmolase.jpeg") 
    no-repeat center center;
    color: #fff;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.login-page .login-header h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.login-page .login-header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* body */
.login-page .login-body {
    padding: 25px 30px 30px;
}

/*email dan password */
.login-page .form-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}


/* input */
.login-page .form-control {
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #ccc;
}

.login-page .form-control:focus {
    border-color: #a67c52;
    box-shadow: 0 0 0 2px rgba(166,124,82,0.2);
}

/* button (lebih corporate) */
.login-page .btn-login {
    background: #a67c52;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
}

.login-page .btn-login:hover {
    background: #8c653f;
}

/* link */
.login-page a {
    color: #a67c52;
}

.login-page a:hover {
    text-decoration: underline;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../img/Cmolase.jpeg");
    background-size: cover; /* Mengatur gambar agar memenuhi elemen */
    background-position: center; /* Menempatkan gambar di tengah elemen */
    background-repeat: no-repeat;
    position: relative; /* Menghindasri pengulangan gambar */
}

.hero1 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../img/header-bg.jpg");
    background-size: cover; /* Mengatur gambar agar memenuhi elemen */
    background-position: center; /* Menempatkan gambar di tengah elemen */
    background-repeat: no-repeat;
    position: relative; /* Menghindasri pengulangan gambar */
}

.hero::after,
.hero1::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 8%,
        rgba(255, 255, 255, 0) 40%
    );
}

.hero .content,
.hero1 .content {
    padding: 1.4rem 7%;
    max-width: 60rem;
}

.hero .content h1,
.hero1 .content h1 {
    font-size: 5em;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .content p,
.hero1 .content p {
    font-size: 1.6rem;
    margin-top: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .content .cta {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.about,
.contact,
.service1,
.ourteam,
.news-section,
.service,
.product-app-section {
    padding: 10rem 7% 1.4rem;
}

.about h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.about p {
    color: #000000;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    padding-bottom: 150px;
    line-height: 1.7;
}

/* gambar pabrik */
/* pengaman global */
html,
body {
    overflow-x: hidden;
}

/* FULL BLEED IMAGE */
.about-img {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    width: 100vw;
    overflow: hidden;
    margin-top: 140px;
}

/* GAMBAR */
.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* GRADIENT ATAS & BAWAH */
.about-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 18%,
        rgba(255, 255, 255, 0) 82%,
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* news section */

/* ===================================
   OUR NEWS SECTION
=================================== */
.news-section {
    background: var(--primary);
    padding: 80px 8%;
}

.news-wrapper {
    max-width: 1300px;
    margin: auto;
}

.news-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.news-header span {
    background: white;
    color: var(--primary);
    font-size: 34px;
    font-weight: 700;
    padding: 18px 60px;
    border-radius: 40px 0px 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: 1px;
}

/* GRID */

.news-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
}

/* MAIN */

.news-main {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
}

.news-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.news-main-content {
    padding: 25px;
}

.news-main h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.news-main p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* SIDE GRID */

.news-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s;
}

.news-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.news-card h4 {
    padding: 12px;
    font-size: 13px;
    color: #000;
}

/* HOVER */

.news-main:hover,
.news-card:hover {
    border: 2px solid var(--primary);
}

.news-main:hover h3,
.news-card:hover h4 {
    color: var(--primary);
}

/* BUTTON */

.news-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.news-btn a {
    background: white;
    color: var(--primary);
    padding: 18px 60px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-btn a:hover {
    transform: scale(0.95);
    opacity: 0.7;
}

.news-btn a {
    cursor: pointer;
}

/*news Page*/

.news-page {
    padding: 80px 0;
    background: #f6f6f6;
}

.news-container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

.news-title-page {
    padding-top: 3rem;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #000;
}

.news-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-page {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    cursor: pointer;
}

.news-card-page img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-page h4 {
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.news-card-page:hover h4 {
    color: var(--primary);
}

.news-card-page:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/*news detail*/
/* ===== DETAIL ARTICLE FIX ===== */

.article-detail {
    padding-top: 6rem; /* supaya tidak ketutup navbar */
    padding-bottom: 4rem;
    background: #f8f9fb; /* jangan putih polos */
    min-height: 100vh;
}

.article-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.article-main {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-meta {
    color: #777;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.article-title {
    font-size: 30px;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.3;
}

.article-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.article-content {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.65;
    color: #333;
}

.article-content p {
    margin: 0 0 10px !important;
}

.article-content ul {
    margin: 6px 0 10px !important;
    padding-left: 18px;
}

.article-content li {
    margin: 4px 0 !important;
}

.article-content h2 {
    margin: 22px 0 8px !important;
    color: var(--primary);
}

.article-content h3 {
    margin: 16px 0 6px !important;
    color: var(--primary);
}



.molasses-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 15px;
    border: 1px solid #e5e7eb;
}

/* header */
.molasses-table th {
    background: var(--primary);
    color: #fff;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

/* body cells */
.molasses-table td {
    border: 1px solid #e5e7eb;
    padding: 14px 14px;
    vertical-align: top;
    color: #0f172a;
}

/* zebra rows */
.molasses-table tr:nth-child(even) {
    background: #f8fafc;
}

/* parameter column (Brix etc) */
.molasses-table td:first-child {
    font-weight: 600;
    color: #000;
    width: 140px;
}

/* spec column */
.molasses-table td:nth-child(2) {
    font-weight: 600;
    color: #000;
    width: 160px;
}

/* description column */
.molasses-table td:nth-child(3) {
    line-height: 1.6;
}

/* HARD RESET ARTICLE SPACING */

.article-content * {
    margin-top: 0 !important;
}

.article-content h2 {
    margin-bottom: 6px !important;
}

.article-content h3 {
    margin-bottom: 4px !important;
}

.article-content p {
    margin-bottom: 6px !important;
}

.article-content ul {
    margin: 4px 0 6px !important;
    padding-left: 16px !important;
}

.article-content li {
    margin: 2px 0 !important;
    line-height: 1.5 !important;
}



/* SIDEBAR */

.article-sidebar {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.article-sidebar h4 {
    margin-bottom: 15px;
}

.article-sidebar a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.article-sidebar a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* contact section */
.contact h2 {
    text-align: center;
    color: #000000;
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.contact p {
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact .row {
    display: flex;
    margin-top: 2rem;
    background-color: #222;
}
.contact .row .map {
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}
.contact .row form {
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    color: #000000;
    text-align: center;
}

.contact .row form .input-group {
    display: flex;
    align-items: center;
    margin-top: 1.2rem;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    gap: 10px;
}

.contact .row form .input-group svg {
    width: 18px;
    height: 18px;
    color: #555;
}

.contact .row form .input-group input {
    width: 100%;
    padding: 0.8rem 0.5rem;
    font-size: 1.4rem;
    background: none;
    border: none;
    outline: none;
    color: #333;
}
.contact .row form .btn {
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: rgb(0, 87, 50);
    cursor: pointer;
    border-radius: 10px;
}
.contact .row form .btn2 {
    margin-top: 3rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background-color: rgb(111, 2, 2);
    cursor: pointer;
    border-radius: 10px;
}

/*Map wrapper*/
.map-wrapper {
    position: relative;
}

/*info bar di map*/
.map-info {
    position: absolute;
    top: 80px;
    left: 15px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
    font-family: Inter, sans-serif;
    pointer-events: none;
}

.map-info strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.map-info span {
    font-size: 13px;
    color: #64748b;
}

.map-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CONTACT INFO BAR */
.contact-info-bar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;

    margin: 2rem auto 3rem;
    padding: 25px 40px;

    background: var(--primary);
    border-radius: 14px;
    max-width: 1100px;
}

/* GROUP (Information & Location) */
.info-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* TITLE */
.info-group h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ITEM */
.contact-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

/* TEXT */
.contact-info-bar .info-item p {
    margin: 0;
    color: #ffffff;
}

/* ICON FONT AWESOME */
.contact-info-bar .info-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* LOCATION STYLE */
.info-item.location {
    align-items: flex-start;
}

.info-item.location p {
    line-height: 1.35;
}

.info-item.location strong {
    display: block;
    margin-bottom: 6px;
}

.info-group .info-item.location {
    gap: 14px;
    padding: 8px 0;
}

.info-group .info-item.location p {
    font-size: 20px;
}

.info-group .info-item.location strong {
    font-size: 22px;
}

/* LOCATION TITLE */
.info-item.location strong {
    font-weight: 600;
}

/* HOVER EFFECT */
.contact-info-bar .info-item:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* FIX TEXT AGAR TIDAK CENTER */
.contact-info-bar {
    text-align: left;
}

.contact-info-bar .info-item {
    justify-content: flex-start;
}

/* PERBAIKI ALIGN LOCATION */
.info-item.location {
    display: flex;
    align-items: flex-start;
}

.info-item.location p {
    text-align: left;
}

.info-item.location strong {
    display: block;
    text-align: left;
}

/* ================= OUR SERVICE SECTION ================= */
/* service section */
.service h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.6rem;
    margin-bottom: 3rem;
}
.service h3 {
    text-align: center;
    color: #000000;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.title1 {
    color: var(--primary);
    font-weight: 700;
}
.service p {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 400;
    color: #565656;
    font-style: italic;
}

/* Warna "Our" */
.blue {
    color: var(--primary);
    font-weight: 700;
}

/* Titik di judul */
.red2 {
    color: var(--primary);
    font-weight: 700;
}

/* Subjudul hijau */
.service .title1 {
    display: block;
    margin-bottom: 1.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
}

/* Judul poin (1. Marketing, dst) */
.service .title {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
}

/*Service Img*/
.service1 {
    padding: 8rem 7% 6rem;
    background-color: #ffffff;
}

/* Judul */
.service1 h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary);
}

/* GRID LAYOUT */
.service1 .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* CARD */
.service1 .service-card {
    text-align: center;
    padding: 1rem;
}

/* ICON */
.service1 .service-card-img {
    width: 90px;
    height: auto;
    margin-bottom: 1.5rem;
}

/* TEXT */
.service1 .service-card-p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    color: #565656;
}

/* ITEM KE-7 → TENGAH SENDIRI */
.service1 .service-card:nth-child(7) {
    grid-column: 2 / 3;
}

/* BUTTON */
.service1 .more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.service1 .cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    padding: 1rem 3rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.6rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.service1 .cta:hover {
    opacity: 0.85;
}



/*Service Section*/
/* =================================================
   SERVICE PAGE FULL STYLE
================================================= */

.service-wrapper {
    padding: 100px 8%;
    background: #f8f9fa;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #a67c52;
    font-weight: 700;
}



/* ================= COMMITMENT ================= */

.commitment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.commitment-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.commitment-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.commitment-list {
    padding-left: 20px;
}

.commitment-list li {
    margin-bottom: 10px;
    color: #444;
}

.commitment-image img {
    width: 100%;
    border-radius: 20px;
}

/* ================= STRENGTHS ================= */

.strengths-section {
    margin-bottom: 120px;
    text-align: center;
}

.strengths-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #a67c52;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.strength-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 520px;
}

.strength-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.strength-card:hover {
    transform: translateY(-8px);
}

.strength-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.strength-card p {
    font-size: 14px;
    color: #666;
}

/* ===============================
   STRENGTH IMAGES GRID
================================ */

.strength-images {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.strength-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.strength-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.strength-img:hover img {
    transform: scale(1.05);
}

/* ===============================
   SUPPLY FLOW MODERN STYLE
================================ */

.flow-section {
    margin-top: 6rem;
    text-align: center;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3rem;
}

/* ================= STEPS ================= */

.flow-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.flow-item {
    position: relative;
    padding: 14px 35px;
    font-weight: 600;
    background: #d9d9d9;
    color: #444;
}

/* Arrow shape */
.flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 25px solid #d9d9d9;
}

.flow-item:not(:last-child) {
    margin-right: 25px;
}

/* Active */
.flow-item.active {
    background: linear-gradient(90deg, #2f5d50, #a57c3d);
    color: white;
}

.flow-item.active::after {
    border-left-color: #a57c3d;
}

/* ================= DESCRIPTION ================= */

.flow-desc {
    max-width: 900px;
    margin: 1.5rem auto 3rem;
    color: #666;
    line-height: 1.6;
}

/* ================= IMAGES NEW CARD STYLE ================= */

.flow-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.flow-card {
    flex: 0 1 calc(33.333% - 2rem);
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

/* Image */
.flow-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Content */
.flow-content {
    padding: 2rem;
}

.flow-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f3f36;
    margin-bottom: 1rem;
}

.flow-content p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.flow-card:nth-child(4) {
    grid-column: 1 / 2;
}

.flow-card:nth-child(5) {
    grid-column: 3 / 4;
}

.flow-card {
    justify-self: center;
    width: 100%;
}

/* Hover Effect */
.flow-card:hover {
    transform: translateY(-8px);
}

/* =======================================
   PRODUCT APPLICATIONS SECTION
======================================= */

.product-app-section .section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-app-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.product-app-section .app-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* LEFT SIDE */
.product-app-section .app-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.product-app-section .app-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.product-app-section .app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-app-section .app-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-app-section .app-content {
    padding: 25px;
}

.product-app-section .app-content h3 {
    font-size: 18px;
    color: #1e3d2f;
    margin-bottom: 12px;
}

.product-app-section .app-content p {
    font-size: 14px;
    color: #555;
}

/* RIGHT SIDE BENEFITS */
.product-app-section .benefit-box {
    flex: 1;
    background: linear-gradient(145deg, #e6d7b2, #cbb786);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-app-section .benefit-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #1e3d2f;
}

.product-app-section .benefit-box ul {
    list-style: none;
    padding: 0;
}

.product-app-section .benefit-box ul li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
}

.product-app-section .benefit-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2e6f4f;
    font-weight: bold;
}

.product-app-section .benefit-highlight {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

/*Service pop up*/
/* MODAL */

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.service-modal.show {
    display: flex;
}

.service-modal-content {
    display: flex ;
    flex-direction: row ;
    width: 900px !important;
    max-width: 95% !important;
}

/* kiri */
.modal-left {
    flex: 1,5 ;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* kanan */
.modal-right {
    flex: 2 !important;
    padding: 30px !important;
}

/* gambar */
.modal-left img {
    width: 100% !important;
    max-width: 500px !important;
}


.service-modal-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.service-modal h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.service-modal p {
    color: #444;
    line-height: 1.6;
}

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.service-modal.show {
    display: flex;
}

.modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
}

.modal-right {
    text-align: left !important;
}

.modal-right p {
    text-align: justify !important;
    line-height: 1.8;
}

.modal-right h3 {
    text-align: left;
    font-weight: 600;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

/* ================= SERVICE CARD HOVER ================= */

.service-card {
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ================= MODAL ANIMATION ================= */

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 9999;
}

.service-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    max-width: 520px;
    width: 90%;
    transform: scale(0.85);
    transition: 0.3s ease;
    text-align: center;
}

.service-modal.active .modal-box {
    transform: scale(1);
}

.modal-box img {
    width: 140px;
    margin-bottom: 20px;
}

.modal-box h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-box p {
    color: #555;
    line-height: 1.7;
}

/* klik area gelap */
.service-modal::before {
    content: "";
    position: absolute;
    inset: 0;
}

.service-card {
    cursor: pointer;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: scale(0.93);
}

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9999;
}

.service-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: 0.3s;
}

.service-modal.show .service-modal-content {
    transform: scale(1);
}

.service-modal img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
}

.service-card {
    cursor: pointer;
    transition: 0.3s;
}

.service-card:hover {
    transform: scale(0.95);
}

/* MODAL */

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 999;
}

.service-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.service-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    transform: scale(0.7);
    transition: 0.4s;
}

.service-modal.show .service-modal-content {
    transform: scale(1);
}

.service-modal img {
    width: 120px;
    margin-bottom: 15px;
}

/* our team */

.ourteam .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-left: 2rem;
    justify-content: center;

    border-radius: 0.5rem;
    gap: 1rem;
    align-items: center;
}
.ourteam .profile p {
    color: #565656;
    font-size: 1.2rem;
    font-weight: 300;
}
.ourteam h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 500;
}

.ourteam .row .profile img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 0 1 calc(33.333% - 2rem);
    border-color: #000000;
    border-style: groove;
    width: 90%;
    margin-bottom: 0.5rem;
    display: flex;
}
.ourteam h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

/* footer */
footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: var(--primary);
    padding: 3rem 0;
    text-align: center;
}
footer .socials {
    padding: 1rem 0;
}

footer .links {
    margin-bottom: 1.4rem;
}
footer .socials a {
    color: #fff;
    margin: 1rem;
}

footer .socials a:hover,
footer .links a:hover {
    color: var(--bg);
}

footer .links a {
    color: #fff;
    padding: 0.7rem 1rem;
}

footer .credit {
    font-size: 0.8rem;
}
footer .credit p {
    color: black;
}

footer .credit a {
    color: var(--bg);
    font-weight: 700;
}

footer {
    background: linear-gradient(180deg, #fff 0%, #c09361 100%);
}

/* INFO WEB */

.infoweb {
    position: relative;
    padding: 70px 20px 80px;
    background:
        radial-gradient(circle at 20% 20%, #dcfce7 0%, transparent 35%),
        radial-gradient(circle at 80% 40%, #dbeafe 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #fff 100%);
}

/* subtle color atmosphere */
.infoweb:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(34, 197, 94, 0.15),
            transparent 45%
        ),
        radial-gradient(
            circle at 30% 70%,
            rgba(56, 189, 248, 0.15),
            transparent 45%
        );
    z-index: 0;
}

.infoweb h1,
.infoweb .grid {
    position: relative;
    z-index: 1;
}

.infoweb h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 35px;
    color: #0f172a;
}

/* grid tighter */
.infoweb .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom tetap */
    gap: 24px;
    max-width: 1200px; /* tambah biar muat 4 */
    margin: 0 auto;
}

/* cards more corporate */
.infoweb .card {
    background: #0b1220;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.infoweb .card h2 {
    color: #ffffff;
}

.infoweb .card p {
    color: #cbd5e1;
}

.infoweb .card i,
.infoweb .card svg {
    color: #ffffff;
    stroke: #ffffff;
}

.infoweb .card:hover {
    transform: translateY(-6px);
}

/* REMOVE neon outline */
.infoweb .card:before {
    display: none;
}

/* badge */
.infoweb .badge {
    background: #16a34a22;
    color: #16a34a;
}

/* button softer */
.infoweb .card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;

    background: linear-gradient(135deg, #22c55e, #38bdf8);
    padding: 10px 24px;
    border-radius: 999px;

    font-weight: 600;
    font-size: 14px;
    color: white;
    text-decoration: none;

    transition: all 0.3s ease;
}

.infoweb .card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.infoweb .card:nth-child(4) .badge {
    background: #22c55e22;
    color: #16a34a;
}

/* Media Queries */

/* laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*Product section*/
/* Remove extra space at bottom */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    margin-bottom: 0;
    padding-bottom: 0;
}

footer {
    margin-bottom: 0;
}

/* Hero Section */
.hero1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/header-bg.jpg");
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero1 .content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero1 .content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Product Main Layout */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Image */
.product-image-section {
    position: sticky;
    top: 100px;
}

.product-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Product Info */
.product-info-section {
    padding: 0;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-header h2 {
    font-size: 32px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.badge {
    background: #e67e22;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Specifications */
.specifications {
    margin-bottom: 30px;
}

.specifications h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.spec-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.spec-table tr {
    border-bottom: 1px solid #eee;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 12px 15px;
}

.spec-label {
    color: #555;
    font-weight: 500;
    width: 40%;
}

.spec-value {
    color: #333;
    font-weight: 600;
}

/* Product Grade */
.product-grade {
    margin-bottom: 30px;
}

.product-grade h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.product-grade p {
    margin: 8px 0;
    color: #555;
}

.grade-list,
.packaging-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.grade-list li {
    position: relative;
    padding: 10px 15px 10px 35px; /* ruang untuk bullet */
    background: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #555;

    border-left: none; /* hapus garis oren */
}

/* Bullet hitam */
.grade-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
}

/* Optional hover biar lebih hidup */
.grade-list li:hover {
    background: #f1f1f1;
}

.packaging-list li {
    padding: 10px 15px;
    background: #f8f9fa;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #555;
    border-left: 4px solid #e67e22;
}

/* Packaging */
.packaging {
    margin-bottom: 30px;
}

.packaging h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.moq-info {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid #e67e22;
}

.moq-info p {
    margin: 0;
    color: #333;
    font-size: 15px;
}

/* Additional Info */
.additional-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #555;
}

.info-value {
    color: #333;
    font-weight: 500;
}

/* Order Section */
.order-section {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    padding-top: 25px;
    border-top: 2px solid #eee;
}

.quantity-selector {
    flex: 1;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 45px;
    height: 50px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #e67e22;
    color: white;
}

.qty-input {
    width: 70px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.btn-order {
    padding: 15px 50px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

.btn-submit {
    position: sticky;
    bottom: 0;
}

.modal {
    display: none !important;
}

.modal.show {
    display: block !important;
}

body.modal-open {
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.order-summary {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.order-summary p {
    margin: 8px 0;
    color: #555;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d35400;
}

/* =======================================
   CATALOG SECTION
======================================= */

.catalog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f3e9, #efe3c7);
}

.catalog-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 30px;
}

.catalog-text h2 {
    font-size: 28px;
    color: #1e3d2f;
    margin-bottom: 10px;
}

.catalog-text p {
    color: #555;
    max-width: 500px;
}

.catalog-btn {
    padding: 16px 30px;
    background: linear-gradient(135deg, #2e6f4f, #1e3d2f);
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.catalog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .product-app-section .app-container {
        flex-direction: column;
    }

    .product-app-section .app-grid {
        grid-template-columns: 1fr;
    }

    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-section {
        position: static;
    }

    .product-image img {
        height: 350px;
    }

    .contact-info-bar {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
    }

    .flow-images {
        grid-template-columns: 1fr;
    }

    .flow-card {
        flex: 0 1 calc(50% - 2rem);
    }
}

/* tablet */
@media (max-width: 768px) {
    html {
        font-size: 65%;
    }

    #hamburger-menu {
        display: inline-block;
    }

    .navbar .navbar-nav {
        position: absolute;
        top: 100%;
        right: -100%;
        background-color: rgba(255, 255, 255, 0.6);
        width: 30rem;
        height: 100vh;
        transition: 0.3s;
    }
    .navbar .navbar-nav.active {
        right: 0;
    }

    .navbar .navbar-nav a {
        color: black;
        display: block;
        margin: 1.5rem;
        padding: 0.5rem;
        font-size: 2rem;
    }
    .navbar .navbar-nav a::after {
        transform-origin: 0 0;
        border-bottom: 0.1rem solid #6f4e37;
    }
    .navbar .navbar-nav a:hover {
        color: #6f4e37;
    }
    .navbar .navbar-nav a:hover::after {
        transform: scaleX(0.1);
    }
    .contact .row {
        flex-wrap: wrap;
    }
    .contact .row .map {
        height: 30rem;
    }
    .contact .row form {
        padding-top: 0;
    }
    .produk p {
        text-align: justify;
        max-width: 30rem;
        color: #565656;
        margin: auto;
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.6;
        margin-top: 3rem;
    }
    .contact p {
        font-weight: 500;
        font-size: 1.5rem;
    }
    .produk .row {
        display: flex;
        flex-wrap: wrap;
        margin-top: 7rem;
        margin-left: 7rem;
        justify-content: center;
        gap: 0.1rem;
        align-items: center;
    }
    .title_produk {
        padding-top: 4rem;
        margin: 5rem;
    }
    .produk h3 {
        max-width: 110px;
    }
    .ourteam .profile p {
        color: #565656;
        font-size: 2rem;
        font-weight: 300;
    }
    .ourteam h3 {
        color: #000000;
        font-size: 2.5rem;
        font-weight: 500;
    }
    .service1 .row .service-card-p {
        color: #565656;
        text-align: center;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .commitment-section {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marquee-content {
        animation: marquee-mobile 15s linear infinite; /* Durasi lebih panjang */
    }
    .marquee-content img {
        width: 15%;
        object-fit: cover; /* Mengatur proporsi gambar */
    }
    .marquee {
        height: 100px;
    }
    .maps2 .grid {
        grid-template-columns: 1fr;
    }
    .maps2 .container {
        padding-bottom: 18px;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-side {
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .news-main {
        display: block;
    }

    #service .row {
        display: block !important;
    }

    #service .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 30px 0 !important;
        text-align: center;
    }

    #service .service-card-img {
        display: block;
        margin: 0 auto 15px auto;
        width: 80px;
    }

    .news-grid-page {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .news-card-page {
        width: 100% !important;
    }

    .news-card-page img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    /*Product*/
    .hero1 .content h1 {
        font-size: 32px;
    }

    .hero1 .content p {
        font-size: 16px;
    }

    .product-header h2 {
        font-size: 26px;
    }

    .order-section {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-controls {
        width: 100%;
        justify-content: center;
    }

    .btn-order {
        width: 100%;
    }

    /*service strength*/

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .strength-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .strength-images {
        grid-template-columns: 1fr;
    }

    /*Suplay*/
    .flow-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
    }

    .flow-item {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .flow-desc {
        padding: 0 5%;
        text-align: center;
    }

    .flow-images {
        display: block !important;
    }

    .flow-card {
        width: 100% !important;
        flex: none !important;
        margin-bottom: 20px;
    }

    .flow-card {
        flex: 0 1 100%;
    }

    /*info contact*/
    .contact-info-bar {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
    }

    /*info web*/
    .infoweb .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@keyframes marquee-mobile {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-210%);
    }
}
/* mobile phone */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }

    .news-side {
        grid-template-columns: 1fr;
    }

    .news-main-content h3 {
        font-size: 22px;
    }

    .news-main-content p {
        font-size: 14px;
    }

    .news-card h4 {
        font-size: 15px;
    }

    .news-wrapper {
        padding: 0 15px;
    }

    #service .row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    #service .service-card {
        width: 100% !important;
        text-align: center;
    }

    #service .service-card-img {
        width: 80px;
        margin: 0 auto 15px;
        display: block;
    }

    .flow-card {
        flex: 0 1 100%;
    }
}
