body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar{
    background: rgba(111, 78, 55, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 10px 0;
    transition: 0.3s;
}

.navbar.scrolled {
    background: #ffffff;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    color: white;
    font-weight: 800;
    font-size: 28px;
}

.nav-link {
    color: yellow;
    margin-left: 20px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(25,15,8,0.7), rgba(25,15,8,0.7)),
                url('../images/hero/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    max-width: 700px;
}

.hero-content p {
    max-width: 600px;
    margin: 20px 0;
}

.btn-main {
    background: #ffffff;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
}
.products-section {
    background: #f8f6f2;
    padding: 100px 0;
}

.section-title span {
    color: #c68b3c;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content p {
    text-align: justify;
	color: #666;
    line-height: 1.7;
}
.contact-section {
    padding: 120px 0;
    background: #E5E5E5;
}

.contact-subtitle {
    color: #c68b3c;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.contact-info p {
    margin: 12px 0;
    color: #555;
}

.contact-form {
    background: #4A4A4A;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 14px;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: #c68b3c;
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #a96e25;
}
html {
    scroll-behavior: smooth;
}
.nav-link {
    color: white;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #d9a15d;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}
.btn-main:hover {
    background: #2b1a0f;
    transform: translateY(-3px);
    transition: 0.3s;
}
.navbar-toggler {
    font-size: 28px;
}
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 99999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.about-video-section {
    position: relative;
    min-height: 50px;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(0.65);
    z-index: 1;
}
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 5, 0.65);
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
}

.about-subtitle {
    color: #d9a15d;
    font-weight: 700;
    letter-spacing: 2px;
}

.terms-box{
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: 50px;
}

.terms-box h3{
    font-weight: 800;
    color: #6F4E37;
}

.terms-box h5{
    font-weight: 700;
    margin-bottom: 12px;
    color: #B8860B;
}

.terms-box p{
    color: #555;
    line-height: 1.8;
}

.form-check-label{
    color: #444;
    font-size: 15px;
}
.inquiry-card{
    border-radius: 28px;
}

.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea{
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid #ddd;
}

.inquiry-card input:focus,
.inquiry-card select:focus,
.inquiry-card textarea:focus{
    border-color: #B8860B;
    box-shadow: 0 0 0 0.15rem rgba(184,134,11,0.2);
}

.terms-box{
    background: #faf7f2;
    padding: 35px;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.05);
}

.terms-box h4{
    color: #6F4E37;
}

.terms-box h5{
    color: #B8860B;
    margin-bottom: 12px;
}

.terms-box p{
    color: #555;
    line-height: 1.8;
}

.form-check-label{
    color: #444;
    font-size: 15px;
}

.btn-success{
    background: linear-gradient(135deg,#6F4E37,#B8860B);
    border: none;
    padding: 14px 40px;
    font-weight: 600;
}

.btn-success:hover{
    transform: translateY(-2px);
    transition: 0.3s;
}
/* TEXT ALIGNMENT */
/* TEXT ALIGNMENT */
.inquiry-card,
.inquiry-card p,
.inquiry-card label,
.inquiry-card h4,
.inquiry-card h5,
.terms-box p{
    text-align: justify;
}

/* CENTER ONLY TITLE */
.inquiry-card .text-center,
.inquiry-card .text-center h2,
.inquiry-card .contact-subtitle{
    text-align: center;
}

/* FORM LABEL */
.form-label{
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

/* TERMS PARAGRAPH */
.terms-box p{
    line-height: 1.9;
    color: #555;
}

/* TERMS SPACING */
.terms-box .mt-4{
    margin-top: 28px !important;
}

/* FORM INPUT */
.inquiry-card input,
.inquiry-card select,
.inquiry-card textarea{
    text-align: left;
}

/* CHECKBOX */
.form-check{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input{
    margin-top: 6px;
}

.form-check-label{
    line-height: 1.8;
    text-align: justify;
    color: #444;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(111, 78, 55, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 12px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
}


.coffee-variants{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* VIDEO BACKGROUND */
.bg-video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%, -50%);
    object-fit:cover;
    z-index:1;
}

/* DARK LAYER */
.video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.80);
    z-index:2;
}

/* CONTENT ABOVE VIDEO */
.content-layer{
    position:relative;
    z-index:3;
}

/* PRODUCT CARD */
.product-card{
    background:rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius:20px;
    padding:25px;
    height:100%;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.20);
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card h4{
    color:#154734;
    font-weight:700;
}

.product-card p{
    color:#444;
}
.product-card{
    background: rgba(255,255,255,0.18); /* semi transparan */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 25px;
    padding: 25px;
    height: 100%;

    box-shadow: 0 8px 32px rgba(0,0,0,0.20);

    transition: all 0.4s ease;
}

/* Hover Effect */
.product-card:hover{
    transform: translateY(-10px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.30);
}

/* Image */
.product-card img{
    border-radius: 20px;
}

</style>
<style>

.product-card{
    background: rgba(20, 20, 20, 0.35); /* semi transparan gelap */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 25px;
    padding: 25px;
    height: 100%;

    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* Hover effect */
.product-card:hover{
    transform: translateY(-8px);
    background: rgba(20,20,20,0.50);
}

/* Image */
.product-card img{
    border-radius: 18px;
    width: 100%;
}

/* Title terang */
.product-card h4{
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.9),
        0 0 15px rgba(255,255,255,0.15);
}

/* Text terang benderang */
.product-card p{
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.95),
        0 0 12px rgba(255,255,255,0.10);
}

</style>
<style>

/* GLOBAL */
html, body{
    margin:0;
    padding:0;
    min-height:100%;
}

/* BACKGROUND WEBSITE */
body{
    background:
    radial-gradient(circle at top left,
        rgba(193,154,107,0.18),
        transparent 25%),

    radial-gradient(circle at bottom right,
        rgba(111,78,55,0.20),
        transparent 30%),

    linear-gradient(
        135deg,
        #24130F,
        #3E2723,
        #4E342E,
        #6F4E37
    );

    background-attachment: fixed;
    background-size: cover;
    color:#fff;
}

/* HILANGKAN PUTIH DARI SECTION */
section{
    background: transparent !important;
}

/* HILANGKAN BACKGROUND PUTIH BOOTSTRAP */
.bg-white,
.bg-light{
    background: transparent !important;
}

/* Kalau container masih putih */
.products,
.products-section,
.site-section{
    background: transparent !important;
}

</style>
.logo-container {
    background-image: url('../images/logo/logo1.png');
}
.about-subtitle{
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #9b7b58;
    
    display: inline-block;
    position: relative;

    padding-bottom: 14px;
    margin-bottom: 25px;

    line-height: 1.4;
}

.about-subtitle::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 70px;
    height: 1.5px;

    background: linear-gradient(
        to right,
        transparent,
        #9b7b58,
        transparent
    );

    opacity: 0.8;
}
.hero-section{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;

    width:100%;
    max-width:1200px;
    padding:0 30px;
}
.hero-content h1{
    font-size:72px;
    font-family:'Cormorant Garamond', serif;
    text-align:center;
    margin:0 auto 20px;
    letter-spacing:2px;
}
.logo-text{
    text-align:center;
    line-height:1.2;
}

.logo-main{
    font-family:'Cormorant Garamond', serif;
    font-size:32px;
    font-weight:700;
    color:#0f3d2e;
    letter-spacing:3px;
}

.logo-tagline{
    font-size:11px;
    letter-spacing:6px;
    color:#0f3d2e;
    font-weight:500;
    margin-top:3px;
    text-transform:uppercase;
}

.logo-tagline span{
    color:#c8a45a;
    margin:0 6px;
}

.logo-sub{
    font-size:10px;
    letter-spacing:2px;
    color:#444;
    margin-top:4px;
}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-text h4{
    margin:0;
    color:#0f3d2e;
    font-weight:700;
    letter-spacing:2px;
}

.brand-text span{
    color:#a96e25;
    font-size:12px;
    letter-spacing:2px;
}

/* Khusus layar HP */
@media screen and (max-width: 768px) {

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 12px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 8px;
    }

    .title-center {
        font-size: 18px;
        padding: 0 10px;
    }
}
.contact-hero{
    margin-top:100px;
    padding:80px 20px;
    background:linear-gradient(
        rgba(15,61,46,.85),
        rgba(15,61,46,.85)
    ),
    url('images/slider/coffe.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;
    text-align:center;
}

.contact-hero h1{
    font-size:3rem;
    font-weight:700;
}

.contact-hero p{
    font-size:1.1rem;
    opacity:.9;
}
.contact-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.contact-info{
    background:#0f3d2e;
    color:white;
    border-radius:20px;
    padding:40px;
    height:100%;
}
.form-control,
.form-select{

    border:1px solid #ddd;
    border-radius:12px;
    padding:14px 18px;

    transition:.3s;
}

.form-control:focus,
.form-select:focus{

    border-color:#c8a96a;

    box-shadow:
    0 0 0 .2rem rgba(200,169,106,.2);
}
.btn-export{

    background:#c8a96a;

    color:white;

    border:none;

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;
}

.btn-export:hover{

    background:#b8934f;

    transform:translateY(-2px);
}
.inquiry-section{
    padding:120px 0 80px;
    background:#f7f8f9;
}

.inquiry-header{
    margin-bottom:50px;
}

.badge-export{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 30px;
    border-radius:999px;
    background:#0F3D2E;
    backdrop-filter:blur(12px);
    border:1px solid rgba(200,169,106,.4);
    color:#FFFFFF;
    font-size:23px;
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.inquiry-header h1{
    color:#C9A227;
    font-weight:700;
    margin-top:10px;
}

.inquiry-header p{
    color:#D4AF37;
}

.contact-info-card{
    background:#0f3d2e;
    color:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
}

.contact-info-card h4,
.contact-info-card h5{
    color:#fff;
}

.info-item{
    margin-bottom:20px;
}

.product-list{
    padding-left:18px;
}

.product-list li{
    margin-bottom:10px;
}

.inquiry-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-control,
.form-select{
    border-radius:12px;
    padding:12px 15px;
}

.form-control:focus,
.form-select:focus{
    border-color:#c8a96a;
    box-shadow:0 0 0 .2rem rgba(200,169,106,.15);
}

.btn-export{
    background:#0f3d2e;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:12px 35px;
    font-weight:600;
}

.btn-export:hover{
    background:#14503c;
    color:#fff;
}
.contact-info-card img {
    width: 100%;
    height: auto;
    display: block;
}
.step .card {
border: 1px solid #dee2e6;
border-radius: 12px;
transition: all .3s ease;
}

.step .card:hover {
border-color: #198754;
box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

.form-check-input:checked {
background-color: #198754;
border-color: #198754;
}

.form-check-label {
cursor: pointer;
width: 100%;
}

.btn-success {
border-radius: 30px;
}
.product-card .col-lg-5 > div:hover{
    transform:translateY(-8px);
    border-color:rgba(200,169,106,.4);
    box-shadow:
        0 15px 40px rgba(0,0,0,.3),
        0 0 30px rgba(200,169,106,.12);
}

.carousel-item {
    transition: opacity 1.8s ease-in-out !important;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.carousel-item.active img {
    transform: scale(1.08);
}
.carousel-item {
    transition: opacity 1.8s ease-in-out !important;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.carousel-item.active img {
    transform: scale(1.08);
}
.hero-counter{
    position:absolute;
    right:50px;
    bottom:50px;
    z-index:20;
    color:white;
    display:flex;
    align-items:center;
    gap:15px;
}

.hero-counter .line{
    width:80px;
    height:1px;
    background:white;
}
body {
    font-family: 'Roboto', sans-serif;
}
#footer {
    opacity: 0;
    animation: fadeIn 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.carousel-inner {
    max-width: 800px;   /* ukuran slider */
    margin: auto;
}

.carousel-img {
    width: 100%;
    height: 100px;      /* kecilkan tinggi */
    object-fit: cover;  /* biar tidak gepeng */
    border-radius: 16px;
}
.carousel-img {
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}
.team-photo{
    width:120px;
    height:170px;

    object-fit:cover;
    object-position:center top;

    border-radius:20px;
    border:3px solid #c8a96a;

    cursor:pointer;

    transition:all .35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);
}

.team-photo:hover{
    transform:scale(1.08);
    box-shadow:
    0 15px 35px rgba(0,0,0,.25);
}
.team-photo.zoomed{
    transform:scale(1.5);
    z-index:999;
    position:relative;
}
.team-foto.ceo { width: 140px; height: 200px; }

.responsive-text {
    font-size: 1rem; /* default desktop */
    line-height: 1.7;
}

@media (max-width: 768px) {
    .responsive-text {
        font-size: 1.05rem; /* sedikit lebih besar di HP */
    }
}
.title-center {
    text-align: center;
    margin-top: 0;
}
.step-video{
    width:5cm;
    height:5cm;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #c8a96a;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
    transition:transform .3s ease;
}

.step-video:hover{
    transform:scale(1.08);
}
.step-video-square{
    width:5cm;
    height:5cm;
    object-fit:cover;
    border-radius:8px;
    border:3px solid #c8a96a;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
    transition:transform .3s ease;
}

.step-video-square:hover{
    transform:scale(1.05);
}
.dap-workflow{
    padding:80px 20px;
    background:#f8f8f8;
    text-align:center;
}

.dap-workflow h2{
    color:#1c2d4a;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.dap-workflow p{
    color:#666;
    margin-bottom:50px;
}

.timeline{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.step{
    position:relative;
    min-width:180px;
    padding:18px 15px;
    background:#fff;
    border:2px solid #c8a96a;
    border-radius:12px;
    font-weight:600;
    color:#1c2d4a;

    opacity:0;
    transform:translateY(40px);

    animation:fadeUp .8s ease forwards;
}

.step:nth-child(1){animation-delay:.2s;}
.step:nth-child(2){animation-delay:.4s;}
.step:nth-child(3){animation-delay:.6s;}
.step:nth-child(4){animation-delay:.8s;}
.step:nth-child(5){animation-delay:1s;}
.step:nth-child(6){animation-delay:1.2s;}
.step:nth-child(7){animation-delay:1.4s;}
.step:nth-child(8){animation-delay:1.6s;}
.step:nth-child(9){animation-delay:1.8s;}
.step:nth-child(10){animation-delay:2s;}
.step:nth-child(11){animation-delay:2.2s;}
.step:nth-child(12){animation-delay:2.4s;}

.step:hover{
    background:#c8a96a;
    color:#fff;
    transform:translateY(-5px);
    transition:.3s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.timeline{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:40px;
}

.step{
    position:relative;
    background:#fff;
    border:2px solid #C8A96A;
    border-radius:12px;
    padding:15px 20px;
    min-width:220px;
    text-align:center;
    font-weight:600;
    color:#1c2d4a;
}

/* Panah */
.step:not(:last-child)::after{
    content:"➜";
    position:absolute;
    right:-28px;
    top:50%;
    transform:translateY(-50%);
    font-size:24px;
    color:#C8A96A;
    font-weight:bold;
}

/* Mobile */
@media (max-width:768px){

    .timeline{
        flex-direction:column;
        gap:35px;
    }

    .step:not(:last-child)::after{
        content:"⬇";
        right:50%;
        top:auto;
        bottom:-28px;
        transform:translateX(50%);
    }
}
.workflow-section{
    padding:90px 0;
    background:#faf8f4;
    overflow:visible;
}

.workflow-wrapper{
    position:relative;
}

.workflow{
    overflow:hidden;
    mask-image:linear-gradient(
        to right,
        transparent,
        black 8%,
        black 92%,
        transparent
    );
}

.workflow-wrapper{
    overflow-x:auto;
}

.workflow-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:workflowMove 45s linear infinite;
}
.workflow:hover .workflow-track{
    animation-play-state:paused;
}

@keyframes workflowMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

.workflow-item{
    width:190px;
    text-align:center;
    flex-shrink:0;
}

.circle{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#d4b06f,#b88d44);
    color:#fff;
    font-weight:700;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(200,169,106,.35);
    transition:.4s;
}

.workflow-item:hover .circle{
    transform:translateY(-8px) scale(1.08);
    box-shadow:0 15px 35px rgba(200,169,106,.5);
}

.workflow-item h6{
    margin-top:15px;
    color:#ffffff;
    font-weight:600;
    font-size:15px;
}

.arrow{
    width:80px;
    height:4px;
    background:#c8a96a;
    position:relative;
    flex-shrink:0;
}

.arrow::after{
    content:'';
    position:absolute;
    right:-2px;
    top:50%;
    transform:translateY(-50%);
    border-top:9px solid transparent;
    border-bottom:9px solid transparent;
    border-left:15px solid #c8a96a;
}

.workflow-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#c8a96a;
    color:#fff;
    z-index:5;
    cursor:pointer;
    transition:.3s;
}

.workflow-btn:hover{
    background:#b88d44;
    transform:translateY(-50%) scale(1.08);
}

.left{
    left:10px;
	display: none !important;
}
}

.right{
    right:10px;
	display: none !important;
}
}

@media(max-width:768px){

    .workflow-item{
        width:150px;
    }

    .circle{
        width:60px;
        height:60px;
        font-size:18px;
    }

    .arrow{
        width:45px;
    }

    .workflow-track{
        animation-duration:35s;
    }
}
.dap-workflow-header{
    text-align: center;
    padding: 30px 15px;
}

.dap-workflow-header h2{
    color: #ffd700; /* emas terang */
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.dap-workflow-header p{
    color: #ffcc66; /* emas lembut untuk subjudul */
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.5px;
}
@keyframes workflowScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
.workflow-image{
    width:100%;
    height:auto;
    display:block;
    margin:auto;
    cursor:pointer;
}

.workflow-image.zoom-click{
    transform:scale(1.08);
    transition:transform .4s ease;
}
.video-column{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
}

.step-video-square{
    width:100%;
    max-width:500px;
    height:auto;
    border-radius:12px;
    object-fit:cover;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}
.about-text{
    text-align:justify;
    font-size:clamp(14px, 1.2vw, 18px);
    line-height:1.9;
    color:#444;
}
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    display: none;
}

.dropdown-submenu.open > .dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .dropdown-submenu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 220px;
    }
}

@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 15px;
    }
}@media (max-width: 991px) {

    .dropdown-submenu .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        margin-left: 15px;
        box-shadow: none;
    }

}
.company-info {
    background: linear-gradient(
        135deg,
        #FFF8DC,
        #F7E7A9,
        #D4AF37
    );

    color: #3e2723 !important;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}
.video-bg {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
}
.title-wrapper{
    text-align: center;
    margin-bottom: 25px;
}

.business-title{
    font-size: 42px;
    font-weight: 700;
}

.business-text{
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.9;
    max-width: 850px;
    margin: 0 auto;
	font-size: 14px;
}
.premium-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 38px;

    text-decoration:none;
    color:#fff;

    font-weight:800;
    font-size:16px;
    letter-spacing:1.5px;
    text-transform:uppercase;

    border-radius:60px;

    background:
        linear-gradient(
            135deg,
            rgba(200,169,106,.95),
            rgba(232,215,165,.95)
        );

    color:#1a1a1a;

    border:1px solid rgba(255,255,255,.2);

    box-shadow:
        0 10px 30px rgba(200,169,106,.25),
        inset 0 1px 0 rgba(255,255,255,.4);

    transition:all .4s ease;

    position:relative;
    overflow:hidden;
}

.premium-btn::before{
    content:'';

    position:absolute;
    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.5),
            transparent
        );

    transform:skewX(-25deg);
    transition:.8s;
}

.premium-btn:hover::before{
    left:150%;
}

.premium-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 45px rgba(200,169,106,.40);

    color:#111;
}

.premium-btn i{
    transition:.3s;
}

.premium-btn:hover i{
    transform:translateX(6px);
}
.premium-badge{
    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        rgba(200,169,106,.18),
        rgba(232,215,165,.08)
    );

    border:1px solid rgba(200,169,106,.4);

    color:#d4b06a;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    backdrop-filter:blur(10px);

    box-shadow:
        0 10px 30px rgba(200,169,106,.15),
        inset 0 1px 0 rgba(255,255,255,.15);

    cursor:default;

    transition:.4s ease;
}

.premium-badge:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 40px rgba(200,169,106,.25);

    color:#f2ddb0;
}
.hero-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:380px;
    height:82px;

    padding:0 50px;

    border-radius:999px;

    background:linear-gradient(
        180deg,
        #dcc58d 0%,
        #cfb47a 100%
    );

    color:#111;

    font-size:18px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;

    box-shadow:
        0 15px 40px rgba(212,176,106,.30),
        inset 0 2px 0 rgba(255,255,255,.35);

    border:1px solid rgba(255,255,255,.20);
}
.shine-text{
    position: relative;
    display: inline-block;

    font-weight: 600;
    color: #c8a96a;

    background: linear-gradient(
        90deg,
        #8a6d2f 0%,
        #fff7d6 20%,
        #ffd700 40%,
        #ffffff 50%,
        #ffd700 60%,
        #8a6d2f 100%
    );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 4s linear infinite;
}

@keyframes goldShine{
    0%{
        background-position: -300% center;
    }
    100%{
        background-position: 300% center;
    }
}
.premium-shine{
    position:relative;
    display:inline-block;

    color:#c8a96a;
    font-weight:600;

    overflow:hidden;
}

.premium-shine::after{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transform:skewX(-25deg);

    animation:shineSweep 3s infinite;
}

@keyframes shineSweep{
    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }
}
.premium-shine{
    display:block;
    width:100%;
    text-align:center;

    white-space:normal;
    overflow-wrap:break-word;
    word-break:normal;

    line-height:1.4;
}
/* Desktop tetap seperti semula */
.premium-shine{
    text-align:left;
}

/* HP */
@media (max-width:768px){

    .premium-shine{
        text-align:left !important;
        display:block;
        width:100%;
        padding-left:15px;
        padding-right:15px;
    }

}
/* =========================
   SEARCH BUTTON
========================= */
.search-btn{
    background:transparent;
    border:none;
    color:#ffffff;
    font-size:20px;
    cursor:pointer;
    transition:0.3s ease;
}

.search-btn:hover{
    color:#c8a97e;
    transform:scale(1.1);
}

/* =========================
   SEARCH OVERLAY
========================= */
.search-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:0.4s ease;

    z-index:99999;
}

.search-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================
   SEARCH BOX
========================= */
.search-box{
    width:90%;
    max-width:800px;

    display:flex;
    align-items:center;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    border-radius:60px;

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.40);
}

/* INPUT */
.search-box input{
    flex:1;

    background:transparent;
    border:none;
    outline:none;

    color:#ffffff;

    padding:22px 30px;

    font-size:18px;
}

/* PLACEHOLDER */
.search-box input::placeholder{
    color:rgba(255,255,255,0.60);
}

/* BUTTON */
.search-submit{
    background:#8B5E3C;

    color:#ffffff;

    border:none;

    padding:22px 35px;

    cursor:pointer;

    transition:0.3s ease;
}

.search-submit:hover{
    background:#a46d44;
}

/* CLOSE BUTTON */
.close-search{
    position:absolute;

    top:30px;
    right:40px;

    color:#ffffff;

    font-size:50px;

    cursor:pointer;

    transition:0.3s ease;
}

.close-search:hover{
    color:#c8a97e;
    transform:rotate(90deg);
}
.search-box:focus-within{
    border:1px solid #c8a97e;

    box-shadow:
        0 0 0 3px rgba(200,169,126,0.15),
        0 15px 40px rgba(0,0,0,0.40);
}
/* ==========================================
   NZG-E PREMIUM PRODUCTS DROPDOWN
   Dark Brown + Gold Theme
========================================== */

.product-dropdown .dropdown-menu{
    background: rgba(62,39,35,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    min-width: 320px;
    padding: 10px;

    border: 1px solid rgba(212,175,55,.35);
    border-radius: 14px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.35),
        0 0 15px rgba(212,175,55,.08);

    overflow: hidden;
}

.product-dropdown .dropdown-item{
    color: #F5E6CA;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;

    padding: 12px 18px;
    border-radius: 10px;

    transition: all .3s ease;
}

.product-dropdown .dropdown-item:hover{
    background: linear-gradient(
        90deg,
        #5D4037,
        #6D4C41
    );

    color: #D4AF37;
    transform: translateX(6px);
}

.product-dropdown .dropdown-item:active{
    background: #6D4C41;
    color: #fff;
}

.product-dropdown .dropdown-divider{
    border-color: rgba(212,175,55,.15);
    margin: 6px 0;
}

/* Panah dropdown */
.product-dropdown .dropdown-toggle::after{
    margin-left: 8px;
    color: #D4AF37;
    transition: transform .3s ease;
}

/* Rotasi panah saat hover */
.product-dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
}

/* Hover Desktop */
@media (min-width:992px){

    .product-dropdown:hover .dropdown-menu{
        display: block;
        margin-top: 0;

        animation: dropdownFade .35s ease forwards;
    }

    @keyframes dropdownFade{
        from{
            opacity:0;
            transform: translateY(12px);
        }
        to{
            opacity:1;
            transform: translateY(0);
        }
    }
}

/* Efek garis emas atas */
.product-dropdown .dropdown-menu::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;

    background: linear-gradient(
        90deg,
        transparent,
        #D4AF37,
        transparent
    );
}

/* Mobile */
@media (max-width:991px){

    .product-dropdown .dropdown-menu{
        min-width:100%;
        border-radius:10px;
        margin-top:8px;
    }

    .product-dropdown .dropdown-item{
        padding:14px 18px;
    }
}
@media (max-width:991px){

    .dropdown-menu{
        display:none;
    }

    .dropdown-menu.show{
        display:block;
    }
}
.story-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.story-text{
    flex:1;
}

.story-animation{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.oil-drop{
    width:180px;
    height:180px;

    background: radial-gradient(
        circle at 30% 30%,
        #ffd54f,
        #d4af37,
        #8b6b1d
    );

    border-radius:50% 50% 50% 0;

    transform:rotate(-45deg);

    animation:float 4s ease-in-out infinite;

    box-shadow:
        0 0 30px rgba(212,175,55,.4),
        0 0 60px rgba(212,175,55,.2);
}

@keyframes float{
    0%,100%{
        transform:rotate(-45deg) translateY(0);
    }
    50%{
        transform:rotate(-45deg) translateY(-20px);
    }
}
.aroma span{
    width:120px;
    height:120px;
    border-radius:50%;
    border:2px solid rgba(212,175,55,.4);

    filter:blur(1px);

    animation:luxuryAroma 5s ease-in-out infinite;
}

@keyframes luxuryAroma{
    0%{
        opacity:0;
        transform:translateY(50px) rotate(0deg);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translateY(-120px) rotate(40deg);
    }
}
.section-title h2{
    font-size:80px;
    font-family:'Cormorant Garamond', serif;
    color:#D4AF37;
    margin-bottom:20px;
}

.section-title p{
    font-size:28px;
    color:#d8c6a0;
}

.catalog-card{
    max-width:1200px;
    margin:auto;
    padding:80px;
}

.catalog-card img{
    width:100%;
    height:600px;

    object-fit:cover;
    object-position:center center;

    border-radius:25px;
}
.catalog-card h3{
    font-size:56px;
    color:#fff;
    margin-top:30px;
}

.catalog-card p{
    font-size:24px;
    line-height:1.8;
    color:#ddd;
    max-width:900px;
    margin:auto;
}

.catalog-btn{
    font-size:22px;
    padding:18px 40px;
}
.product-left img{
    width:100%;
    max-height:650px;
    object-fit:center;

    border-radius:20px;
    background:#0b0b0b;
}
.about-video-section{
    margin-top: 70px; /* atur sesuai kebutuhan */
}
/* KHUSUS INDEX.HTML */

..home-hero{
    position:relative;
    overflow:hidden;
}

.home-hero .container{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

.home-hero .about-content{
    text-align:center;
    transform:translateY(-80px);
}
/* KHUSUS INDEX */

.home-hero .about-video-bg{
    object-fit:cover;
    object-position:center 20%;
}
.home-video{
    object-fit:cover;
    object-position:center top;
}
/* =========================
   FILTER BUTTON STYLE
========================= */

.index-page .filter-bar .btn {
    background: #dff5e1;      /* hijau muda */
    color: #000;              /* teks hitam */
    border: none;
    border-radius: 25px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: 0.3s ease;
    margin: 3px;
}

/* HOVER */
.index-page .filter-bar .btn:hover {
    background: #c9eecf;
    transform: translateY(-2px);
}

/* ACTIVE = GOLD */
.index-page .filter-bar .btn.active {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

/* OPTIONAL: ACTIVE HOVER */
.index-page .filter-bar .btn.active:hover {
    transform: translateY(-2px);
}
.index-page .filter-bar .btn {
    letter-spacing: 0.3px;
    text-transform: capitalize;
}
.index-page .btn-order:hover {
    background: #d4af37; /* gold premium */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
}
/* =========================
   ORDER BUTTON - INDEX ONLY
========================= */

.index-page .btn-order {
    width: 100%;
    margin-top: 10px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px;
    border: none;
    transition: 0.3s ease;
    text-align: center;
    display: inline-block;
}

/* HOVER */
.index-page .btn-order:hover {
    background: linear-gradient(135deg, #d4af37, #f5d76e); /* gold */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
}

/* ACTIVE CLICK */
.index-page .btn-order:active {
    transform: scale(0.98);
}
.footer-section{
    background:#0f172a;
    color:#cbd5e1;
    padding:60px 0 25px;
}

.footer-title{
    color:#f4c95d;
    font-weight:700;
    margin-bottom:20px;
}

.footer-section p{
    line-height:1.8;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#f4c95d;
    padding-left:5px;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:40px;
    height:40px;

    margin-right:8px;

    border-radius:50%;
    background:#1e293b;
    color:white;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:#f4c95d;
    color:#000;
}

.footer-bottom{
    margin-top:20px;
}

.footer-bottom p{
    color:#fff;
}

.footer-bottom small{
    color:#94a3b8;
}
.about-video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video background */
.about-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay gelap */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* Content di atas video */
.about-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.about-subtitle {
    font-size: 32px;
    letter-spacing: 3px;
    color: #d4af37; /* gold export premium look */
}
@media (min-width: 992px) {
  .product-grid .product-item {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}
