body {
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: none;
    border: none;
}

a {
    color: #60bd9a;
    outline: none;
}

a:hover {
    outline: none;
    border: none;
    text-decoration: none;
}

h1 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 45px;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3 {
    color: #633991;
    font-size: 33px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #633991;
}

h5 {
    font-size: 28px;
    font-weight: 300;
    color: #633991;
    margin-bottom: 0.7rem;
}

p {
    color: #959094;
}

p.lead {
    color: #2a8d62;
    margin-bottom: 2rem;
}

.mb-30 {
    margin-bottom: 180px !important;
}

.mb-40 {
    margin-bottom: 240px !important;
}

.pb-20 {
    padding-bottom: 120px;
}

.my-20 {
    margin: 120px 0;
}

.primary-bg {
    background-color: #60bd9a;
}

.white--bg {
    background-color: #ffffff;
}

.bg-image {
    background-image: url('../images//carousel//background_1.png');
    background-size: cover;
}

.product__wrap {
    padding: 12px 42px;
    border-radius: 18px;
}

.container {
    max-width: 85%;
}

@media (max-width:767px) {
    .container {
        max-width: 95%;
    }
}

.text-primary {
    color: #2a8d62 !important;
}

.light-font {
    font-weight: 300;
}

.btn {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.8rem 1rem;
    font-size: 15px;
}

.button__cta {
    width: 220px;
    height: 58px;
    border: 5px solid #fff;
    background-color: #60bd9a;
    border-radius: 100px;
}

.light-bg {
    background-color: #faf6fb;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section.full__height {
    min-height: 100vh;
    margin-top: 160px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.4em;
    color: #60bd9a;
}

.section-title small {
    color: #998a9b;
}

@media (max-width:767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
}


/* NAVBAR
----------------------*/
/* LOGO IMAGE - SMOOTH TRANSITION (Tambahkan setelah .logo__image) */
.logo__image {
    max-width: 200px;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Preload logo putih agar tidak ada delay saat scroll */
.navbar-brand::after {
    content: url('images/icon/logo_main_putih.png');
    display: none;
}

/* Hamburger Icon Color - Default (Hitam) */
.navbar-toggler-icon .fa-bars {
    color: #333333;
    font-size: 24px;
    transition: color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

/* Hamburger Icon Color - Saat Scrolling (Putih) */
.nav-menu.is-scrolling .navbar-toggler-icon .fa-bars {
    color: #ffffff;
}

/* Hamburger Icon Color - Saat Menu Mobile Dibuka (Putih) */
.nav-menu.menu-is-open .navbar-toggler-icon .fa-bars {
    color: #ffffff;
}

/* X icon juga putih saat menu mobile dibuka */
.nav-menu.menu-is-open .navbar-toggler::before,
.nav-menu.menu-is-open .navbar-toggler::after {
    background-color: #ffffff;
}

/* Navbar Toggler Button - Hapus border default */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    outline: none;
    position: relative;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Hover effect untuk hamburger icon */
.navbar-toggler:hover .fa-bars {
    transform: scale(1.1);
}

/* ===== HAMBURGER TO X ANIMATION ===== */

/* Sembunyikan icon bars saat menu terbuka */
.navbar-toggler[aria-expanded="true"] .fa-bars {
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
}

/* Buat X icon dengan pseudo element */
.navbar-toggler::before,
.navbar-toggler::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: #333333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    border-radius: 2px;
}

/* Saat scrolling, X jadi putih */
.nav-menu.is-scrolling .navbar-toggler::before,
.nav-menu.is-scrolling .navbar-toggler::after {
    background-color: #ffffff;
}

/* Saat menu dibuka, tampilkan X */
.navbar-toggler[aria-expanded="true"]::before {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.navbar-toggler[aria-expanded="true"]::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}

/* Sinkronkan dengan Bootstrap collapse animation (0.35s) */
.navbar-collapse {
    transition: height 0.35s ease;
}

/* Responsive - Ukuran X untuk mobile kecil */
@media (max-width: 480px) {
    .navbar-toggler::before,
    .navbar-toggler::after {
        width: 20px;
        height: 2.5px;
    }
}

/* NAVBAR SMOOTH TRANSITION - Tambahkan setelah .nav-menu (sekitar baris 126) */

/* Smooth transition untuk navbar background dan shadow */
.nav-menu {
    padding: 1rem 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background-color: rgb(13, 143, 67);
    background: -moz-linear-gradient(135deg, #60bd9a 0%, #61bd9a 100%);
    background: -webkit-linear-gradient(135deg, #60bd9a 0%, #61bd9a 100%);
    background: linear-gradient(135deg, #60bd9a 0%, #61bd9a 100%);
    -webkit-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
}

/* Smooth transition untuk nav-link color */
.navbar-nav .nav-link {
    transition: color 0.35s ease;
}

.nav-menu.is-scrolling .nav-link {
    color: #fff;
}

/* Bootstrap collapse - Override untuk sinkronisasi */
.navbar-collapse.collapsing {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hilangkan jank saat navbar collapse */
@media (max-width: 991px) {
    .navbar-collapse {
        overflow: hidden;
    }
}

/* ===== NAVBAR HOVER ANIMATION ===== */
/* Untuk navbar yang sudah di-scroll (hijau) */
.nav-menu.is-scrolling .nav-item a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu.is-scrolling .nav-item a:hover,
.nav-menu.is-scrolling .nav-item a:focus {
    color: #ffffff;
}

.nav-menu.is-scrolling .nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-menu.is-scrolling .nav-item a:hover::after {
    width: 80%;
}

/* Untuk navbar default (belum di-scroll) */
.nav-item a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-item a:hover,
.nav-item a:focus {
    color: #60bd9a;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #60bd9a;
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 80%;
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
}

/* Base styling untuk semua nav-item */
.navbar-nav .nav-link {
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25em;
    font-weight: 700;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 1.25em;
    }
}

/* ===== HOVER ANIMATION - DESKTOP & TABLET (≥992px) ===== */
@media (min-width: 992px) {
    /* Untuk navbar yang sudah di-scroll (hijau) */
    .nav-menu.is-scrolling .nav-item a {
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-menu.is-scrolling .nav-item a:hover,
    .nav-menu.is-scrolling .nav-item a:focus {
        color: #ffffff;
    }

    .nav-menu.is-scrolling .nav-item a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: #ffffff;
        transition: width 0.3s ease;
    }

    .nav-menu.is-scrolling .nav-item a:hover::after,
    .nav-menu.is-scrolling .nav-item a:focus::after {
        width: 80%;
    }

    /* Untuk navbar default (belum di-scroll) */
    .nav-item a {
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-item a:hover,
    .nav-item a:focus {
        color: #60bd9a;
    }

    .nav-item a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: #60bd9a;
        transition: width 0.3s ease;
    }

    .nav-item a:hover::after,
    .nav-item a:focus::after {
        width: 80%;
    }
}

/* ===== HOVER ANIMATION - TABLET & MOBILE (≤991px) ===== */
@media (max-width:991px) {
    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-item {
        text-align: center;
    }
    .navbar-collapse .navbar-nav .nav-link {
        color: #fff !important;
    }
    
    /* Hover animation untuk mobile/tablet */
    .navbar-collapse .navbar-nav .nav-item a {
        position: relative;
        transition: color 0.3s ease, background-color 0.3s ease;
        padding: 12px 20px;
        display: block;
        border-radius: 8px;
    }
    
    /* Underline animation untuk mobile */
    .navbar-collapse .navbar-nav .nav-item a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #ffffff;
        transition: width 0.3s ease;
    }
    
    .navbar-collapse .navbar-nav .nav-item a:hover::after,
    .navbar-collapse .navbar-nav .nav-item a:focus::after {
        width: 60%;
    }
    
    /* Spacing antar menu item */
    .navbar-collapse .navbar-nav .nav-item {
        margin: 5px 0;
    }
}

/* ===== MOBILE MEDIUM (≤767px) ===== */
@media (max-width:767px) {
    .navbar-collapse .navbar-nav .nav-item a {
        padding: 10px 18px;
    }
    
    .navbar-collapse .navbar-nav .nav-item a::after {
        height: 2px;
        bottom: 6px;
    }
    
    .navbar-collapse .navbar-nav .nav-item a:hover::after {
        width: 55%;
    }
}

/* ===== MOBILE SMALL (≤480px) ===== */
@media (max-width:480px) {
    .navbar-collapse .navbar-nav .nav-item a {
        padding: 10px 15px;
        font-size: 1.1em;
    }
    
    .navbar-collapse .navbar-nav .nav-item a::after {
        height: 2px;
        bottom: 6px;
    }
    
    .navbar-collapse .navbar-nav .nav-item a:hover::after {
        width: 50%;
    }
    
    .navbar-collapse .navbar-nav .nav-item {
        margin: 4px 0;
    }
}

/* ===== MOBILE EXTRA SMALL (≤380px) ===== */
@media (max-width:380px) {
    .navbar-collapse .navbar-nav .nav-item a {
        padding: 9px 12px;
        font-size: 1em;
    }
    
    .navbar-collapse .navbar-nav .nav-item a:hover::after {
        width: 45%;
    }
}

/* Float Button
----------------------*/

.float__buttton {
    position: fixed;
    z-index: 999;
    bottom: 30px;
    right: 30px;
}

.float__buttton a {
    display: block;
    text-decoration: none;
}

.float__buttton a:hover,
.float__buttton a:focus {
    border: none !important;
    outline: none !important;
}

.float__buttton .button__cta {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.float__buttton .button__cta:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
}

.float__buttton .button__cta span {
    color: #fff;
    font-weight: bold;
    font-size: 1.15em;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float__buttton .wrapping__icon {
    position: relative;
    top: -2px;
    padding: 10px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.float__buttton .wrapping__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Desktop & Tablet: Text hidden, muncul saat hover */
@media (min-width: 992px) {
    .float__buttton .button__cta {
        width: 58px;
        height: 58px;
    }
    
    .float__buttton .button__cta span {
        opacity: 0;
        max-width: 0;
        padding: 0;
        margin: 0;
        transform: translateX(10px);
    }
    
    .float__buttton .button__cta:hover {
        width: 220px;
    }
    
    .float__buttton .button__cta:hover span {
        opacity: 1;
        max-width: 150px;
        padding-left: 10px;
        margin-top: -2px;
        transform: translateX(0);
    }
    
    .float__buttton .wrapping__icon {
        right: 0;
    }
    
    .float__buttton .button__cta:hover .wrapping__icon {
        right: -11px;
    }
}

/* Tablet: Text hidden, muncul saat hover */
@media (min-width: 577px) and (max-width: 991px) {
    .float__buttton {
        bottom: 25px;
        right: 25px;
    }
    
    .float__buttton .button__cta {
        width: 54px;
        height: 54px;
    }
    
    .float__buttton .button__cta span {
        opacity: 0;
        max-width: 0;
        padding: 0;
        margin: 0;
        font-size: 1.05em;
        transform: translateX(10px);
    }
    
    .float__buttton .button__cta:hover {
        width: 200px;
    }
    
    .float__buttton .button__cta:hover span {
        opacity: 1;
        max-width: 130px;
        padding-left: 10px;
        margin-top: -2px;
        transform: translateX(0);
    }
    
    .float__buttton .wrapping__icon {
        width: 48px;
        height: 48px;
        right: 0;
    }
    
    .float__buttton .button__cta:hover .wrapping__icon {
        right: -8px;
    }
}

/* Mobile: Text SELALU tampil (no hover) */
@media (max-width: 576px) {
    .float__buttton {
        bottom: 20px;
        right: 20px;
    }
    
    .float__buttton .button__cta {
        width: 180px;
        height: 50px;
        border: 4px solid #fff;
    }
    
    .float__buttton .button__cta span {
        opacity: 1;
        font-size: 0.95em;
        padding-left: 8px;
    }
    
    .float__buttton .wrapping__icon {
        width: 44px;
        height: 44px;
        right: -8px;
        padding: 8px;
    }
}

/* Mobile sangat kecil: Text SELALU tampil */
@media (max-width: 380px) {
    .float__buttton {
        bottom: 15px;
        right: 15px;
    }
    
    .float__buttton .button__cta {
        width: 160px;
        height: 46px;
    }
    
    .float__buttton .button__cta span {
        opacity: 1;
        font-size: 0.85em;
    }
    
    .float__buttton .wrapping__icon {
        width: 40px;
        height: 40px;
    }
}

header {
    padding: 100px 0 0;
    text-align: center;
    color: #60bd9a;
}

@media (max-width:1200px) {
    .img-holder {
        padding-bottom: 50%;
    }
}

@media (max-width:767px) {
    .tagline {
        font-size: 17px;
    }
    .img-holder {
        padding-bottom: 100%;
    }
}

/* ===== ADJUST PRODUCT HERO SECTION POSITION - INDEX.HTML ===== */
/* Desktop (≥992px) */
@media (min-width: 992px) {
    #features.product-hero-wrapper {
        margin-top: -180px;
        position: relative;
        z-index: 10;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    #features.product-hero-wrapper {
        margin-top: -140px;
        position: relative;
        z-index: 10;
    }
}

/* Tablet Portrait & Mobile (≤767px) */
@media (max-width: 767px) {
    #features.product-hero-wrapper {
        margin-top: -100px;
        position: relative;
        z-index: 10;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    #features.product-hero-wrapper {
        margin-top: -80px;
        position: relative;
        z-index: 10;
    }
}

/* ===== SMOOTH PRODUCT TRANSITION ===== */
.product-display-section {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-display-image img {
    transition: opacity 0.3s ease;
}

/* Prevent layout shift during transition */
.product-display-image {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .product-display-image {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .product-display-image {
        min-height: 280px;
    }
}

/* FEATURES
----------------------*/
/* ===== PRODUCT SECTION - RESPONSIVE STYLING ===== */
/* Base Section Styling */
.section.bg-image {
    background-image: url('../images/carousel/background_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .section.bg-image#features {
        padding: 80px 0;
    }
    
    .product__wrap.white--bg {
        padding: 12px 42px;
        border-radius: 18px;
        background-color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .product__wrap.white--bg:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .product__content {
        padding: 18px;
        border-radius: 18px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 3em;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 1.4em;
        line-height: 38px;
        text-align: justify;
    }
}

/* Tablet Landscape (768px - 991px) - VERTIKAL SEPERTI MOBILE */
@media (min-width: 768px) and (max-width: 991px) {
    .section.bg-image#features {
        padding: 60px 0;
    }
    
    .product__wrap.white--bg {
        padding: 20px 30px;
        border-radius: 16px;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        max-width: 320px;
        margin: 0 auto 30px;
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .product__content {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 2em;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 1em;
        line-height: 30px;
        text-align: justify;
    }
}

/* Tablet Portrait & Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .section.bg-image#features {
        padding: 50px 0;
    }
    
    .product__wrap.white--bg {
        padding: 18px 25px;
        border-radius: 14px;
        background-color: #ffffff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        margin: 0 auto 25px;
        max-width: 280px;
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .product__content {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 1.9em;
        margin-bottom: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 0.95em;
        line-height: 28px;
        text-align: justify;
    }
}

/* Mobile Medium (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .section.bg-image#features {
        padding: 40px 0;
    }
    
    .product__wrap.white--bg {
        padding: 15px 20px;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        margin: 0 auto 22px;
        max-width: 250px;
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .product__content {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 1.75em;
        margin-bottom: 0.9rem;
        line-height: 1.3;
        text-align: center;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 0.9em;
        line-height: 26px;
        text-align: justify;
    }
}

/* Mobile Small (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .section.bg-image#features {
        padding: 35px 0;
    }
    
    .product__wrap.white--bg {
        padding: 12px 18px;
        border-radius: 12px;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        margin: 0 auto 20px;
        max-width: 230px;
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .product__content {
        padding: 15px 10px;
        border-radius: 12px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 1.6em;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        text-align: center;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 0.88em;
        line-height: 24px;
        text-align: justify;
    }
}

/* Mobile Extra Small (≤375px) */
@media (max-width: 375px) {
    .section.bg-image#features {
        padding: 30px 0;
    }
    
    .product__wrap.white--bg {
        padding: 10px 15px;
        border-radius: 10px;
        background-color: #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        margin: 0 auto 18px;
        max-width: 210px;
    }
    
    .product__wrap img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    
    .product__content {
        padding: 12px 8px;
        border-radius: 10px;
    }
    
    .product__content h2 {
        color: #fff;
        font-weight: 700;
        font-size: 1.5em;
        margin-bottom: 0.7rem;
        line-height: 1.3;
        text-align: center;
    }

    .product__content p {
        color: #fff;
        font-weight: 300;
        font-size: 0.85em;
        line-height: 22px;
        text-align: justify;
    }
}

/* Utility Classes */
@media (max-width: 767px) {
    .container {
        max-width: 95%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.product__wrap img {
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.product__wrap,
.product__content {
    transition: all 0.3s ease;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

@media (max-width: 767px) {
    .mb-4 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 480px) {
    .mb-4 {
        margin-bottom: 0.8rem !important;
    }
}

.white--bg {
    background-color: #ffffff;
}

/* TESTIMONI
----------------------*/
/* ===== VIDEO SECTION - RESPONSIVE STYLING ===== */
/* ===== DESKTOP (≥992px) ===== */
@media (min-width: 992px) {
    .wrapping__video {
        position: relative;
        top: -50px;
        left: 0;
        right: 0;
        margin-bottom: 0;
    }

    .wrapping__video .content__video {
        border-radius: 24px;
        max-width: fit-content;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    
    .wrapping__video .content__video:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

    .wrapping__video .content__video img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .wrapping__video .content__video::after {
        content: "\f01d";
        background-color: rgba(179, 178, 178, 0.35);
        font: normal normal normal 120px/1 FontAwesome;
        color: #959094;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }
    
    .wrapping__video .content__video:hover::after {
        background-color: rgba(179, 178, 178, 0.45);
    }
}

/* ===== TABLET LANDSCAPE (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .wrapping__video {
        position: relative;
        top: -40px;
        left: 0;
        right: 0;
        margin-bottom: 0;
    }

    .wrapping__video .content__video {
        border-radius: 20px;
        max-width: fit-content;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }

    .wrapping__video .content__video img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .wrapping__video .content__video::after {
        content: "\f01d";
        background-color: rgba(179, 178, 178, 0.35);
        font: normal normal normal 100px/1 FontAwesome;
        color: #959094;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== TABLET PORTRAIT & MOBILE (≤767px) ===== */
@media (max-width: 767px) {
    .wrapping__video {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .wrapping__video .content__video {
        border-radius: 16px;
        max-width: 100%;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .wrapping__video .content__video img {
        width: 100%;
        height: auto;
        display: block;
    }

    .wrapping__video .content__video::after {
        content: "\f01d";
        background-color: rgba(179, 178, 178, 0.35);
        font: normal normal normal 80px/1 FontAwesome;
        color: #959094;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===== MOBILE SMALL (≤480px) ===== */
@media (max-width: 480px) {
    .wrapping__video .content__video {
        border-radius: 14px;
    }
    
    .wrapping__video .content__video::after {
        font-size: 70px;
    }
}

/* ===== FANCYBOX MODAL - RESPONSIVE ===== */

/* Desktop Modal */
@media (min-width: 992px) {
    .fancybox-container {
        z-index: 9999;
    }
    
    .fancybox-slide--iframe .fancybox-content {
        width: 920px;
        height: 517px;
        max-width: 90vw;
        max-height: 80vh;
    }
    
    #youtube iframe {
        width: 920px;
        height: 517px;
        max-width: 100%;
        max-height: 100%;
    }
}

/* Tablet Landscape Modal */
@media (min-width: 768px) and (max-width: 991px) {
    .fancybox-container {
        z-index: 9999;
    }
    
    .fancybox-slide--iframe .fancybox-content {
        width: 90vw;
        height: calc(90vw * 9 / 16);
        max-width: 700px;
        max-height: 70vh;
    }
    
    #youtube iframe {
        width: 100%;
        height: 100%;
    }
}

/* Tablet Portrait & Mobile Modal */
@media (min-width: 481px) and (max-width: 767px) {
    .fancybox-container {
        z-index: 9999;
        padding: 10px;
    }
    
    .fancybox-slide--iframe .fancybox-content {
        width: 95vw !important;
        height: calc(95vw * 9 / 16) !important;
        max-width: 95vw !important;
        max-height: 60vh !important;
        margin: auto;
    }
    
    #youtube {
        width: 100% !important;
        height: auto !important;
    }
    
    #youtube iframe {
        width: 100% !important;
        height: calc(95vw * 9 / 16) !important;
        max-height: 60vh !important;
    }
    
    .fancybox-button {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Small Modal */
@media (max-width: 480px) {
    .fancybox-container {
        z-index: 9999;
        padding: 8px;
    }
    
    .fancybox-slide--iframe .fancybox-content {
        width: 96vw !important;
        height: calc(96vw * 9 / 16) !important;
        max-width: 96vw !important;
        max-height: 55vh !important;
        margin: auto;
    }
    
    #youtube {
        width: 100% !important;
        height: auto !important;
    }
    
    #youtube iframe {
        width: 100% !important;
        height: calc(96vw * 9 / 16) !important;
        max-height: 55vh !important;
    }
    
    .fancybox-button {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .fancybox-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Extra Small Modal */
@media (max-width: 375px) {
    .fancybox-container {
        padding: 5px;
    }
    
    .fancybox-slide--iframe .fancybox-content {
        width: 98vw !important;
        height: calc(98vw * 9 / 16) !important;
        max-width: 98vw !important;
        max-height: 50vh !important;
    }
    
    #youtube iframe {
        width: 100% !important;
        height: calc(98vw * 9 / 16) !important;
        max-height: 50vh !important;
    }
    
    .fancybox-button {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
}

/* Fancybox Background */
.fancybox-bg {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Close Button Styling */
.fancybox-button--close {
    background-color: rgba(96, 189, 154, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fancybox-button--close:hover {
    background-color: rgba(96, 189, 154, 1);
    transform: scale(1.1);
}

/* Loading Animation */
.fancybox-loading {
    border-color: #60bd9a transparent #60bd9a transparent;
}

/* Ensure video is centered in modal */
.fancybox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

/* Remove default margins on mobile */
@media (max-width: 767px) {
    .fancybox-slide {
        padding: 0;
    }
    
    .fancybox-content {
        margin: 0;
    }
}

/* ===== ADVANTAGE SECTION - RESPONSIVE STYLING ===== */

/* Base Styling */
.wrapping__advantage .frame__image {
    border: 3px solid #60bd9a;
    border-radius: 24px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapping__advantage .frame__image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(96, 189, 154, 0.3);
}

.wrapping__advantage .frame__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .wrapping__advantage {
        position: relative;
        top: -160px;
        left: 0;
        right: 0;
        margin-bottom: -160px;
    }

    .wrapping__advantage .frame__image {
        padding: 50px;
        margin-bottom: 0;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .wrapping__advantage {
        position: relative;
        top: -120px;
        left: 0;
        right: 0;
        margin-bottom: -120px;
    }

    .wrapping__advantage .frame__image {
        padding: 40px;
        margin-bottom: 0;
    }
    
    .wrapping__advantage .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .wrapping__advantage {
        position: relative;
        top: -80px;
        left: 0;
        right: 0;
        margin-bottom: -80px;
    }

    .wrapping__advantage .frame__image {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    /* 1 KOLOM */
    .wrapping__advantage .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .wrapping__advantage .frame__image {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Large (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .wrapping__advantage {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .wrapping__advantage .frame__image {
        padding: 25px;
        margin-bottom: 18px;
        border-radius: 20px;
        border-width: 2.5px;
    }
    
    /* 1 KOLOM */
    .wrapping__advantage .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .wrapping__advantage .frame__image {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Medium (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .wrapping__advantage {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .wrapping__advantage .frame__image {
        padding: 22px;
        margin-bottom: 16px;
        border-radius: 18px;
        border-width: 2.5px;
    }
    
    /* 1 KOLOM */
    .wrapping__advantage .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .wrapping__advantage .frame__image {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Small (321px - 375px) */
@media (min-width: 321px) and (max-width: 375px) {
    .wrapping__advantage {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding-top: 20px;
    }

    .wrapping__advantage .frame__image {
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 16px;
        border-width: 2px;
    }
    
    /* 1 KOLOM */
    .wrapping__advantage .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .wrapping__advantage .frame__image {
        max-width: 220px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Extra Small (≤320px) */
@media (max-width: 320px) {
    .wrapping__advantage {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin-bottom: 0;
        padding-top: 15px;
    }

    .wrapping__advantage .frame__image {
        padding: 18px;
        margin-bottom: 14px;
        border-radius: 14px;
        border-width: 2px;
    }
    
    /* 1 KOLOM */
    .wrapping__advantage .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .wrapping__advantage .frame__image {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Last Item - Hapus margin bottom */
@media (max-width: 767px) {
    .wrapping__advantage .col-6:last-child .frame__image {
        margin-bottom: 0;
    }
}

/* ===== PRODUCT PAGE - PRISTINE STYLE LAYOUT (FIXED) ===== */

/* Product Hero Wrapper */
.product-hero-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* Product Hero Container - Flexbox Layout */
.product-hero-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
}

/* Left Side - Image Wrapper (60% width on desktop) */
.product-hero-image-wrapper {
    width: 100%;
    position: relative;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.product-hero-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: none;
}

/* Right Side - Content Wrapper (40% width on desktop) */
.product-hero-content-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #60bd9a;
    color: #ffffff;
    padding: 60px 50px;
    overflow: hidden;
}

.product-hero-content {
    max-width: 600px;
    width: 100%;
}

.product-hero-content h2 {
    color: #ffffff;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-hero-content p {
    color: #ffffff;
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Button Cari Distributor - Yellow Contrast */
.btn-cari-distributor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 45px;
    background-color: #FFD93D;
    color: #2D5F3F;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 217, 61, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-cari-distributor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cari-distributor:hover::before {
    left: 100%;
}

.btn-cari-distributor i {
    font-size: 1.3em;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cari-distributor:hover {
    background-color: #FFC93D;
    color: #1a3a28;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.4);
}

.btn-cari-distributor:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    transition: all 0.1s ease;
}

/* Product Selection Section */
.product-selection-section {
    padding: 80px 0 240px 0;
    overflow-x: hidden;
    width: 100%;
}

/* Product Filter Buttons */
.product-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 0 0 50px 0;
    max-width: 100%;
}

.product-filter-btn {
    padding: 12px 32px;
    background-color: #ffffff;
    border: 2px solid #60bd9a;
    border-radius: 50px;
    color: #60bd9a;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.product-filter-btn:hover {
    background-color: #60bd9a;
    color: #ffffff;
}

.product-filter-btn.active {
    background-color: #60bd9a;
    color: #ffffff;
}

/* Product Display Section */
.product-display-section {
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.product-display-image {
    text-align: center;
    overflow: hidden;
}

.product-display-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.product-display-content {
    padding-left: 40px;
}

.product-title {
    color: #60bd9a;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-description {
    color: #60bd9a;
    font-size: 1.15em;
    line-height: 1.8;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Desktop Large (≥1200px) - 60/40 Split */
@media (min-width: 1200px) {
    .product-hero-wrapper {
        padding-top: 130px;
    }
    
    .product-hero-container {
        min-height: calc(100vh - 130px);
    }
    
    .product-hero-image-wrapper {
        width: 60%;
        z-index: 1;
    }
    
    .product-hero-content-wrapper {
        width: 40%;
        background-color: #60bd9a;
        z-index: 0;
        padding: 80px 70px;
    }
    
    .product-hero-content h2 {
        font-size: 4em;
    }
    
    .product-display-image img {
        max-width: 500px;
    }
}

/* Desktop Medium (992px - 1199px) - 60/40 Split */
@media (min-width: 992px) and (max-width: 1199px) {
    .product-hero-wrapper {
        padding-top: 125px;
    }
    
    .product-hero-container {
        min-height: calc(100vh - 125px);
    }
    
    .product-hero-image-wrapper {
        width: 60%;
        z-index: 1;
    }
    
    .product-hero-content-wrapper {
        width: 40%;
        background-color: #60bd9a;
        z-index: 0;
        padding: 60px 50px;
    }
    
    .product-hero-content h2 {
        font-size: 3em;
    }
    
    .product-hero-content p {
        font-size: 1.05em;
    }
}

/* Tablet & Mobile - Vertical Stack */
@media (max-width: 991px) {
    .product-hero-wrapper {
        margin-top: 0;
        padding-top: 110px;
        min-height: auto;
    }
    
    .product-hero-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .product-hero-image-wrapper {
        width: 100%;
        background-color: #ffffff;
        min-height: 60vh;
    }
    
    .product-hero-image-content {
        padding: 0;
        height: 100%;
        min-height: 60vh;
    }
    
    .product-hero-content-wrapper {
        width: 100%;
        background-color: #60bd9a;
        padding: 50px 30px;
    }
    
    .product-hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .product-hero-content h2 {
        font-size: 2.5em;
    }
    
    .product-hero-content p {
        font-size: 1.05em;
    }
    
    .btn-cari-distributor {
        padding: 12px 38px;
        font-size: 1em;
    }
    
    .product-selection-section {
        padding: 60px 0 180px 0;
    }
    
    .product-filter-buttons {
        padding: 0 15px 40px 15px;
    }
    
    .product-filter-btn {
        padding: 10px 28px;
        font-size: 1em;
    }
    
    .product-display-image img {
        max-width: 360px;
    }
    
    .product-display-content {
        padding-left: 30px;
        /* padding-right: 30px; */
    }
    
    .product-title {
        font-size: 2.3em;
    }
    
    .product-description {
        font-size: 1.05em;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .product-hero-wrapper {
        margin-top: 0;
        padding-top: 100px;
    }
    
    .product-hero-image-wrapper {
        min-height: 50vh;
    }
    
    .product-hero-image-content {
        padding: 0;
        min-height: 50vh;
    }
    
    .product-hero-content-wrapper {
        padding: 40px 20px;
    }
    
    .product-hero-content h2 {
        font-size: 2em;
        margin-bottom: 1.2rem;
    }
    
    .product-hero-content p {
        font-size: 1em;
        margin-bottom: 0.8rem;
    }
    
    .btn-cari-distributor {
        padding: 11px 35px;
        font-size: 0.95em;
    }
    
    .product-selection-section {
        padding: 50px 0 150px 0;
    }
    
    .product-filter-buttons {
        gap: 12px;
        padding: 0 10px 40px 10px;
    }
    
    .product-filter-btn {
        padding: 9px 20px;
        font-size: 0.95em;
    }
    
    .product-display-image {
        margin-bottom: 30px;
    }
    
    .product-display-image img {
        max-width: 320px;
    }
    
    .product-display-content {
        padding-left: 15px;
        /* padding-right: 15px; */
        text-align: center;
    }
    
    .product-title {
        font-size: 2em;
        margin-bottom: 1.2rem;
    }
    
    .product-description {
        font-size: 1em;
    }
}

/* Mobile Small (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .product-hero-wrapper {
        padding-top: 95px;
    }
    
    .product-hero-image-wrapper {
        min-height: 45vh;
    }
    
    .product-hero-image-content {
        min-height: 45vh;
    }
    
    .product-hero-content-wrapper {
        padding: 35px 15px;
    }
    
    .product-hero-content h2 {
        font-size: 1.8em;
    }
    
    .product-hero-content p {
        font-size: 0.95em;
        line-height: 1.7;
    }
    
    .btn-cari-distributor {
        padding: 10px 28px;
        font-size: 0.9em;
    }
    
    .product-selection-section {
        padding: 40px 0 120px 0;
    }
    
    .product-filter-buttons {
        gap: 8px;
        padding: 0 10px 35px 10px;
    }
    
    .product-filter-btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }
    
    .product-display-image img {
        max-width: 280px;
    }
    
    .product-title {
        font-size: 1.8em;
    }
    
    .product-description {
        font-size: 0.95em;
        line-height: 1.7;
    }
}

/* Mobile Extra Small (≤375px) */
@media (max-width: 375px) {
    .product-hero-wrapper {
        padding-top: 90px;
    }
    
    .product-hero-image-wrapper {
        min-height: 40vh;
    }
    
    .product-hero-image-content {
        min-height: 40vh;
    }
    
    .product-hero-content-wrapper {
        padding: 30px 15px;
    }
    
    .product-hero-content h2 {
        font-size: 1.6em;
    }
    
    .product-hero-content p {
        font-size: 0.9em;
        line-height: 1.6;
    }
    
    .btn-cari-distributor {
        padding: 9px 24px;
        font-size: 0.85em;
    }
    
    .product-selection-section {
        padding: 35px 0 100px 0;
    }
    
    .product-filter-buttons {
        gap: 6px;
        padding: 0 10px 30px 10px;
    }
    
    .product-filter-btn {
        padding: 7px 14px;
        font-size: 0.8em;
    }
    
    .product-display-image img {
        max-width: 250px;
    }
    
    .product-title {
        font-size: 1.6em;
    }
    
    .product-description {
        font-size: 0.9em;
        line-height: 1.6;
    }
}

/* Mobile Small (376px - 480px) - NO WHITESPACE */
@media (min-width: 376px) and (max-width: 480px) {
    .product-hero-wrapper {
        padding-top: 85px;
    }
    
    .product-hero-image-wrapper {
        min-height: 45vh;
    }
    
    .product-hero-image-content {
        padding: 0;
        min-height: 45vh;
    }
    
    .product-hero-content-wrapper {
        padding: 35px 25px;
    }
    
    .product-hero-content h2 {
        font-size: 1.8em;
    }
    
    .product-hero-content p {
        font-size: 0.95em;
        line-height: 1.7;
    }
    
    .btn-cari-distributor {
        padding: 10px 32px;
        font-size: 0.9em;
    }
    
    .product-selection-section {
        padding: 40px 0 120px 0;
    }
    
    .product-filter-buttons {
        gap: 10px;
        padding-bottom: 35px;
    }
    
    .product-filter-btn {
        padding: 8px 22px;
        font-size: 0.9em;
    }
    
    .product-display-image img {
        max-width: 280px;
    }
    
    .product-title {
        font-size: 1.8em;
    }
    
    .product-description {
        font-size: 0.95em;
        line-height: 1.7;
    }
}

/* Mobile Extra Small (≤375px) - NO WHITESPACE */
@media (max-width: 375px) {
    .product-hero-wrapper {
        padding-top: 85px;
    }
    
    .product-hero-image-wrapper {
        min-height: 40vh;
    }
    
    .product-hero-image-content {
        padding: 0;
        min-height: 40vh;
    }
    
    .product-hero-content-wrapper {
        padding: 30px 20px;
    }
    
    .product-hero-content h2 {
        font-size: 1.6em;
    }
    
    .product-hero-content p {
        font-size: 0.9em;
        line-height: 1.6;
    }
    
    .btn-cari-distributor {
        padding: 9px 28px;
        font-size: 0.85em;
    }
    
    .product-selection-section {
        padding: 35px 0 100px 0;
    }
    
    .product-filter-buttons {
        gap: 8px;
        padding-bottom: 30px;
    }
    
    .product-filter-btn {
        padding: 7px 20px;
        font-size: 0.85em;
    }
    
    .product-display-image img {
        max-width: 250px;
    }
    
    .product-title {
        font-size: 1.6em;
    }
    
    .product-description {
        font-size: 0.9em;
        line-height: 1.6;
    }
}

/* ===== VIDEO SECTION TITLE RESPONSIVE ===== */
.video-section-title {
    color: #60bd9a;
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .video-section-title {
        font-size: 2em;
    }
}

@media (max-width: 767px) {
    .video-section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .video-section-title {
        font-size: 1.5em;
    }
}

@media (max-width: 375px) {
    .video-section-title {
        font-size: 1.3em;
    }
}

/* ===== TALENT IMAGES STYLING ===== */

/* Section Wrapper - Breathing Space */
.talent-section-wrapper {
    padding-top: 80px;
    padding-bottom: 180px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .talent-section-wrapper {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .talent-section-wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .talent-section-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Desktop: 3 gambar horizontal (col-lg-4) */
@media (min-width: 992px) {
    .talent-images-wrapper {
        margin-bottom: 3rem;
        padding: 0 60px;
    }
    
    .talent-col {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 0;
    }
    
    .talent-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .talent-image:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(96, 189, 154, 0.3);
    }
}

/* Tablet: 2 gambar per baris (col-md-6) */
@media (min-width: 768px) and (max-width: 991px) {
    .talent-images-wrapper {
        margin-bottom: 2.5rem;
        padding: 0 40px;
    }
    
    .talent-col {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 25px;
    }
    
    .talent-col:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
    }
    
    .talent-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .talent-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(96, 189, 154, 0.25);
    }
}

/* Mobile: 1 gambar per baris (col-12) */
@media (max-width: 767px) {
    .talent-images-wrapper {
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .talent-col {
        margin-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    
    .talent-col:last-child {
        margin-bottom: 0;
    }
    
    .talent-image {
        width: 100%;
        height: auto;
        max-width: 350px;
        display: block;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .talent-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(96, 189, 154, 0.25);
    }
}

@media (max-width: 480px) {
    .talent-images-wrapper {
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
    
    .talent-col {
        margin-bottom: 18px;
    }
    
    .talent-image {
        max-width: 300px;
        border-radius: 14px;
    }
}

@media (max-width: 375px) {
    .talent-images-wrapper {
        padding: 0 10px;
    }
    
    .talent-col {
        margin-bottom: 15px;
    }
    
    .talent-image {
        max-width: 280px;
        border-radius: 12px;
    }
}

/*  TABS
----------------------*/


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #7a767a;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.products.owl-theme .owl-nav [class*=owl-] {
    background: transparent;
    font-size: 22px;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #60bd9a;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #60bd9a;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

 /* INSTAGRAM SECTION  */

.wrapper__instagram {
    padding: 0 80px;
}

@media (max-width:480px) {
    .wrapper__instagram {
        padding: 0;
    }
}

/* INPUT DISTRIBUTOR  */
input {
    outline: none;
    color: #2a8d62;
    border: 0;
}
.custom__input {
    text-align: center;
    height: 40px;
    font-size: 18px;
}

.custom__btn {
    border: 3px solid #fff;
    background-color: transparent;
    color: #fff;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 4px;
}

/* TABLE DISTRIBUTOR  */
.table__distributor {
    border: 1px solid #767676;
    width: 100%;
}

.table__distributor thead th {
    background-color: #3fae7a;
    padding: 10px 20px;
}

.table__distributor td {
    padding: 10px 20px;
    background-color: #bfbfbf;
}

.table__distributor 
td:nth-child(2),
td:nth-child(4),
td:nth-child(5),
td:nth-child(6),
td:nth-child(7)
{
    background-color: #b3b2b2;
}

/*  FOOTER
----------------------*/
footer {
    position: relative;
    background-color: #60bd9a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .content__footer {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    width: 100%;
}

footer .content__footer h3 {
    color: #fff;
    font-size: 28px;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
}

footer .content__footer p {
    color: #fff;
    font-size: 20px;
    font-family: 'Quicksand', sans-serif;
}

footer .content__footer .social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
} 

footer .content__footer .social__icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 18px;
    width: 50px;
    height: 60px;
    transition: all 0.3s ease;
}

footer .content__footer .social__icon a:hover {
    transform: scale(1.1);
    background-color: #2a8d62;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

footer .content__footer .social__icon a .icon i {
    font-size: 24px;
    color: #60bd9a;
    transition: color 0.3s ease;
}

footer .content__footer .social__icon a:hover .icon i {
    color: #fff;
}

footer .image__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

footer .image__bg img {
    width: 100%;
    display: block;
}

/* Responsive untuk semua device */
@media (max-width: 575px) {
    footer .content__footer h3 {
        font-size: 24px;
    }
    
    footer .content__footer p {
        font-size: 18px;
    }
    
    footer .content__footer .social__icon a {
        width: 42px;
        height: 42px;
    }
    
    footer .content__footer .social__icon a .icon i {
        font-size: 20px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    footer .content__footer h3 {
        font-size: 26px;
    }
    
    footer .content__footer p {
        font-size: 19px;
    }
    
    footer .content__footer .social__icon a {
        width: 46px;
        height: 46px;
    }
    
    footer .content__footer .social__icon a .icon i {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    footer .content__footer h3 {
        font-size: 32px;
    }
    
    footer .content__footer p {
        font-size: 22px;
    }
    
    footer .content__footer .social__icon a {
        width: 50px;
        height: 50px;
    }
    
    footer .content__footer .social__icon a .icon i {
        font-size: 24px;
    }
}

/* FAQ SECTION
----------------------*/
.faq-controls {
    margin-bottom: 30px;
}

.faq-search-wrapper {
    position: relative;
    width: 100%;
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-search-input:focus {
    outline: none;
    border-color: #60bd9a;
    box-shadow: 0 0 0 3px rgba(96, 189, 154, 0.1);
}

.faq-search-input::placeholder {
    color: #999;
}

.faq-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.faq-filter-btn {
    padding: 10px 24px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-filter-btn:hover {
    border-color: #60bd9a;
    color: #60bd9a;
    background-color: #f0faf7;
}

.faq-filter-btn.active {
    background-color: #60bd9a;
    border-color: #60bd9a;
    color: #ffffff;
}

.faq-wrapper {
    position: relative;
}

.faq-category {
    margin-bottom: 20px;
}

.faq-category-title {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #60bd9a;
}

.faq-category:first-child .faq-category-title {
    margin-top: 0;
}

.faq-category-title h4 {
    color: #60bd9a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
}

.faq-item {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #60bd9a;
    box-shadow: 0px 4px 15px rgba(96, 189, 154, 0.1);
}

.faq-item.active {
    border-color: #60bd9a;
    background-color: #f8fdfb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f0faf7;
}

.faq-item.active .faq-question {
    background-color: #f0faf7;
}

.faq-question span {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-item.active .faq-question span {
    color: #60bd9a;
    font-weight: 600;
}

.faq-icon {
    font-size: 18px;
    color: #60bd9a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    background-color: #f8fdfb;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0;
    padding: 0 25px 20px 50px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer ul {
    list-style-type: disc;
}

.faq-answer ol {
    list-style-type: lower-alpha;
}

.faq-answer li {
    margin-bottom: 10px;
    padding-left: 5px;
    color: #666;
}

.faq-answer a {
    color: #60bd9a;
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    color: #2a8d62;
}

.faq-answer a.wa-link {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.faq-answer a.wa-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

.faq-answer a.wa-link strong {
    color: inherit;
}

.faq-answer strong {
    color: #2a8d62;
    font-weight: 600;
}

.faq-answer em {
    font-style: italic;
    color: #60bd9a;
}

#noResultsMessage {
    display: none;
}

@media (max-width: 991px) {
    .faq-search-input {
        padding: 14px 18px 14px 48px;
        font-size: 14px;
    }
    
    .faq-search-icon {
        left: 18px;
        font-size: 17px;
    }
    
    .faq-filter-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
    
    .faq-category-title h4 {
        font-size: 22px;
    }
    
    .faq-question {
        padding: 18px 22px;
    }
    
    .faq-question span {
        font-size: 15px;
        padding-right: 18px;
    }
    
    .faq-icon {
        font-size: 17px;
    }
    
    .faq-answer p {
        padding: 0 22px 18px 22px;
        font-size: 14px;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 22px 18px 45px;
        font-size: 14px;
    }
    
    .faq-answer li {
        padding-left: 3px;
    }
}

@media (max-width: 767px) {
    .faq-controls {
        margin-bottom: 25px;
    }
    
    .faq-search-input {
        padding: 12px 15px 12px 45px;
        font-size: 13px;
    }
    
    .faq-search-icon {
        left: 15px;
        font-size: 16px;
    }
    
    .faq-filter-buttons {
        gap: 8px;
    }
    
    .faq-filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .faq-category-title {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .faq-category-title h4 {
        font-size: 20px;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question span {
        font-size: 14px;
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 18px 15px 18px;
        font-size: 13px;
        line-height: 1.7;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 18px 15px 38px;
        font-size: 13px;
        line-height: 1.7;
    }
    
    .faq-answer li {
        margin-bottom: 8px;
        padding-left: 2px;
    }
}

@media (max-width: 480px) {
    .faq-controls {
        margin-bottom: 20px;
    }
    
    .faq-search-input {
        padding: 11px 12px 11px 42px;
        font-size: 12px;
        border-radius: 40px;
    }
    
    .faq-search-icon {
        left: 12px;
        font-size: 15px;
    }
    
    .faq-filter-buttons {
        gap: 6px;
    }
    
    .faq-filter-btn {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .faq-category-title {
        margin-top: 25px;
    }
    
    .faq-category-title h4 {
        font-size: 18px;
    }
    
    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question span {
        font-size: 13px;
        padding-right: 12px;
    }
    
    .faq-icon {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 15px 12px 15px;
        font-size: 12px;
        line-height: 1.6;
    }
    
    .faq-answer ul,
    .faq-answer ol {
        padding: 0 15px 12px 35px;
        font-size: 12px;
        line-height: 1.6;
    }
    
    .faq-answer li {
        margin-bottom: 6px;
        padding-left: 0;
    }
}

/* Layouting Privacy Policy */
/* Desktop (≥992px) */
@media (min-width: 992px) {
    #features.section {
        padding: 80px 0;
    }
    
    #features .product__content h2 {
        color: #ffffff;
        font-weight: 700;
        font-size: 3em;
        margin-bottom: 1.5rem;
    }
    
    #features .product__content h3 {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.8em;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    #features .product__content p {
        color: #ffffff;
        font-weight: 300;
        font-size: 1.1em;
        line-height: 1.8;
    }
    
    #features .product__content ul {
        color: #ffffff;
        margin-left: 20px;
        margin-bottom: 1rem;
    }
    
    #features .product__content ul li {
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
}

/* Tablet & Mobile (≤991px) */
@media (max-width: 991px) {
    #features.section {
        padding: 60px 0;
    }
    
    #features .product__content h2 {
        color: #ffffff;
        font-weight: 700;
        font-size: 2em;
        margin-bottom: 1.2rem;
    }
    
    #features .product__content h3 {
        color: #ffffff;
        font-weight: 600;
        font-size: 1.5em;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    #features .product__content p {
        color: #ffffff;
        font-weight: 300;
        font-size: 1em;
        line-height: 1.7;
    }
    
    #features .product__content ul {
        color: #ffffff;
        margin-left: 18px;
        margin-bottom: 0.8rem;
    }
    
    #features .product__content ul li {
        color: #ffffff;
        margin-bottom: 0.4rem;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    #features.section {
        padding: 50px 0;
    }
    
    #features .product__content h2 {
        font-size: 1.8em;
    }
    
    #features .product__content h3 {
        font-size: 1.3em;
        margin-top: 1.2rem;
    }
    
    #features .product__content p {
        font-size: 0.95em;
        line-height: 1.6;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    #features.section {
        padding: 40px 0;
    }
    
    #features .product__content h2 {
        font-size: 1.6em;
        margin-bottom: 1rem;
    }
    
    #features .product__content h3 {
        font-size: 1.2em;
        margin-top: 1rem;
    }
    
    #features .product__content p {
        font-size: 0.9em;
    }
    
    #features .product__content ul {
        margin-left: 15px;
    }
}

