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%;
    }
}


/* FEATURES
----------------------*/
.products {
    margin-bottom: 100px
}
.product__content {
    padding: 18px;
    border-radius: 18px;
}
.product__content h2 {
    color: #fff;
    font-weight: 700;
    font-size: 3em;
}

.product__content p {
    color: #fff;
    font-weight: 300;
    font-size: 1.4em;
    line-height: 38px;
}

/* TESTIMONI
----------------------*/
.wrapping__video {
    position: relative;
    top: -100px;
    left: 0;
    right: 0;
}

.wrapping__video .content__video {
    border-radius: 24px;
    max-width: fit-content;
    overflow: hidden;
    position: relative;
}

.wrapping__video .content__video img{
    width: 100%;
    height: 100%;
}

.wrapping__video .content__video::after {
    content: "\f01d";
    background-color: #b3b2b258;
    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;
}

.wrapping__video .custom__embed {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #777b796e;
}

.wrapping__advantage {
    position: relative;
    top: -160px;
    left: 0;
    right: 0;
}

.wrapping__advantage .frame__image {
    border: 3px solid #60bd9a;
    border-radius: 24px;
    padding: 50px;
    background-color: #fff;
}

.wrapping__advantage .frame__image img {
    width: 100%;
    height: 100%;
}

@media (max-width:480px) {
    .wrapping__advantage {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }

    .wrapping__advantage .frame__image {
        border: 3px solid #60bd9a;
        border-radius: 24px;
        padding: 20px;
        background-color: #fff;
    }
}

/*  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;
}

/* ===== LOGIN PAGE STYLING ===== */

/* Login Card Container */
.login-card-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login Card Header */
.login-card-header {
    background: linear-gradient(135deg, #60bd9a 0%, #2a8d62 100%);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.login-title {
    color: #ffffff !important;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Login Card Body */
.login-card-body {
    padding: 40px 35px;
}

/* Form Labels */
.login-label {
    color: #2a8d62;
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-label i {
    font-size: 1.1em;
}

/* Input Wrapper with Icon */
.input-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-field-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #60bd9a;
    font-size: 1.1em;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Toggle Password Icon - bisa diklik */
.toggle-password {
    pointer-events: auto;
    cursor: pointer;
}

.toggle-password:hover {
    color: #2a8d62;
    transform: translateY(-50%) scale(1.15);
}

.toggle-password:active {
    transform: translateY(-50%) scale(0.95);
}

/* Login Input Fields */
.login-input {
    height: 52px;
    padding: 14px 50px 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: #333333 !important;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.login-input:focus {
    outline: none;
    border-color: #60bd9a;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(96, 189, 154, 0.1);
    color: #333333 !important;
}

.login-input:focus + .input-field-icon {
    color: #2a8d62;
    transform: translateY(-50%) scale(1.1);
}

.login-input::placeholder {
    color: #999999;
    font-weight: 400;
}

/* Select Dropdown Styling */
.login-select {
    height: 52px !important;
    padding: 14px 45px 14px 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #333333 !important;
    background-color: #f8f9fa !important;
    transition: all 0.3s ease !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    line-height: normal !important;
    text-indent: 0 !important;
}

/* Hapus semua background dan text transform yang mungkin ada */
select.login-select {
    background-image: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.login-select:focus {
    outline: none !important;
    border-color: #60bd9a !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(96, 189, 154, 0.1) !important;
    color: #333333 !important;
}

.login-select option {
    color: #333333 !important;
    background-color: #ffffff !important;
    padding: 10px !important;
    font-weight: 500 !important;
}

.select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #60bd9a;
    font-size: 0.9em;
    pointer-events: none;
    transition: all 0.3s ease;
}

.login-select:focus + .select-icon {
    color: #2a8d62;
    transform: translateY(-50%) rotate(180deg);
}

/* Submit Button */
.btn-login-submit {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #60bd9a 0%, #2a8d62 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(96, 189, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-login-submit:hover {
    background: linear-gradient(135deg, #2a8d62 0%, #60bd9a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 189, 154, 0.4);
}

.btn-login-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(96, 189, 154, 0.3);
}

.btn-login-submit i {
    font-size: 1.2em;
}

/* Forgot Password Link */
.login-footer-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.forgot-password-link {
    color: #2a8d62;
    font-weight: 600;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.forgot-password-link:hover {
    color: #60bd9a;
    text-decoration: none;
    transform: translateX(4px);
}

.forgot-password-link i {
    font-size: 1em;
}

/* ===== RESPONSIVE STYLING ===== */

/* Desktop Large (≥1200px) */
@media (min-width: 1200px) {
    .login-card-header {
        padding: 45px 35px;
    }
    
    .login-title {
        font-size: 2.2em;
    }
    
    .login-card-body {
        padding: 45px 40px;
    }
    
    .login-input {
        height: 54px;
        font-size: 16px;
    }
}

/* Desktop Medium (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .login-card-header {
        padding: 38px 32px;
    }
    
    .login-title {
        font-size: 2em;
    }
    
    .login-card-body {
        padding: 38px 35px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .login-card-header {
        padding: 35px 28px;
    }
    
    .login-title {
        font-size: 1.8em;
    }
    
    .login-subtitle {
        font-size: 0.95em;
    }
    
    .login-card-body {
        padding: 35px 30px;
    }
    
    .login-input {
        height: 50px;
        font-size: 14px;
    }
    
    .btn-login-submit {
        height: 52px;
        font-size: 15px;
    }
}

/* Mobile Large (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
    .login-card-wrapper {
        border-radius: 16px;
    }
    
    .login-card-header {
        padding: 32px 25px;
    }
    
    .login-title {
        font-size: 1.6em;
    }
    
    .login-subtitle {
        font-size: 0.9em;
    }
    
    .login-card-body {
        padding: 32px 28px;
    }
    
    .login-input {
        height: 48px;
        font-size: 14px;
        padding: 12px 45px 12px 18px;
    }
    
    .btn-login-submit {
        height: 50px;
        font-size: 15px;
    }
}

/* Mobile Medium (481px - 576px) */
@media (min-width: 481px) and (max-width: 576px) {
    .login-card-wrapper {
        border-radius: 14px;
    }
    
    .login-card-header {
        padding: 30px 22px;
    }
    
    .login-title {
        font-size: 1.5em;
    }
    
    .login-subtitle {
        font-size: 0.88em;
    }
    
    .login-card-body {
        padding: 30px 25px;
    }
    
    .login-label {
        font-size: 0.9em;
    }
    
    .login-input {
        height: 46px;
        font-size: 13px;
        padding: 12px 42px 12px 16px;
    }
    
    .btn-login-submit {
        height: 48px;
        font-size: 14px;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .login-card-wrapper {
        border-radius: 12px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }
    
    .login-card-header {
        padding: 28px 20px;
    }
    
    .login-title {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    
    .login-subtitle {
        font-size: 0.85em;
    }
    
    .login-card-body {
        padding: 28px 22px;
    }
    
    .login-label {
        font-size: 0.88em;
        margin-bottom: 8px;
    }
    
    .input-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .login-input {
        height: 44px;
        font-size: 13px;
        padding: 11px 40px 11px 15px;
        border-radius: 10px;
    }
    
    .input-field-icon {
        right: 15px;
        font-size: 1em;
    }
    
    .btn-login-submit {
        height: 46px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .login-footer-link {
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .forgot-password-link {
        font-size: 0.88em;
    }
}

/* Mobile Extra Small (≤380px) */
@media (max-width: 380px) {
    .login-card-wrapper {
        border-radius: 10px;
    }
    
    .login-card-header {
        padding: 25px 18px;
    }
    
    .login-title {
        font-size: 1.3em;
    }
    
    .login-subtitle {
        font-size: 0.82em;
    }
    
    .login-card-body {
        padding: 25px 20px;
    }
    
    .login-label {
        font-size: 0.85em;
    }
    
    .login-input {
        height: 42px;
        font-size: 12px;
        padding: 10px 38px 10px 14px;
    }
    
    .btn-login-submit {
        height: 44px;
        font-size: 13px;
        gap: 8px;
    }
    
    .forgot-password-link {
        font-size: 0.85em;
    }
}

/* Loading State untuk Button */
.btn-login-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-login-submit.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* DISTRIBUTOR SEARCH SECTION - RESPONSIVE STYLING */

/* Search Header Styling */
.distributor-search-header {
    background: linear-gradient(135deg, #60bd9a 0%, #2a8d62 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(96, 189, 154, 0.2);
}

.distributor-search-header h2 {
    color: #ffffff !important;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search Form Container */
.search-form-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-input-group {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

/* Search Input Styling */
.search-input-distributor {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    color: #333333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.search-input-distributor:focus {
    outline: none;
    border-color: #60bd9a;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(96, 189, 154, 0.1);
}

/* Search Input Placeholder - Responsive */
.search-input-distributor::placeholder {
    color: #999999;
    font-weight: 400;
    font-size: 16px; /* Default untuk desktop */
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .search-input-distributor::placeholder {
        font-size: 10px;
    }
}

/* Mobile Large (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
    .search-input-distributor::placeholder {
        font-size: 10px;
    }
}

/* Mobile Medium (481px - 576px) */
@media (min-width: 481px) and (max-width: 576px) {
    .search-input-distributor::placeholder {
        font-size: 10px;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .search-input-distributor::placeholder {
        font-size: 9px;
    }
}

/* Mobile Extra Small (≤380px) */
@media (max-width: 380px) {
    .search-input-distributor::placeholder {
        font-size: 9px;
    }
}

/* Search Button Styling */
.btn-search-distributor {
    padding: 14px 35px;
    background: linear-gradient(135deg, #60bd9a 0%, #2a8d62 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(96, 189, 154, 0.3);
    white-space: nowrap;
}

.btn-search-distributor:hover {
    background: linear-gradient(135deg, #2a8d62 0%, #60bd9a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 189, 154, 0.4);
}

.btn-search-distributor:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(96, 189, 154, 0.3);
}

.btn-search-distributor i {
    margin-right: 6px;
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .distributor-search-header {
        padding: 40px;
        border-radius: 18px;
    }
    
    .distributor-search-header h2 {
        font-size: 2.5em;
        margin-bottom: 25px;
    }
    
    .search-form-wrapper {
        padding: 10px;
    }
    
    .search-input-distributor {
        padding: 16px 24px;
        font-size: 17px;
    }
    
    .btn-search-distributor {
        padding: 16px 40px;
        font-size: 17px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .distributor-search-header {
        padding: 35px;
        border-radius: 16px;
    }
    
    .distributor-search-header h2 {
        font-size: 2.2em;
        margin-bottom: 22px;
    }
    
    .search-input-distributor {
        padding: 15px 22px;
        font-size: 16px;
    }
    
    .btn-search-distributor {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Mobile (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
    .distributor-search-header {
        padding: 30px 25px;
        border-radius: 14px;
        margin-bottom: 25px;
    }
    
    .distributor-search-header h2 {
        font-size: 1.9em;
        margin-bottom: 20px;
    }
    
    .search-input-distributor {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-search-distributor {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* Mobile Small (≤576px) */
@media (max-width: 576px) {
    .distributor-search-header {
        padding: 25px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .distributor-search-header h2 {
        font-size: 1.6em;
        margin-bottom: 18px;
    }
    
    .search-form-wrapper {
        padding: 6px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input-distributor {
        padding: 13px 18px;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-search-distributor {
        padding: 13px 25px;
        font-size: 14px;
        width: 100%;
    }
}

/* Mobile Extra Small (≤480px) */
@media (max-width: 480px) {
    .distributor-search-header {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .distributor-search-header h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    
    .search-input-distributor {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .btn-search-distributor {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Loading Animation untuk Button */
.btn-search-distributor.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-search-distributor.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* TABLE DISTRIBUTOR - RESPONSIVE STYLING */
.table-responsive-distributor {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin-top: 30px;
}

.table__distributor {
    border: 2px solid #60bd9a;
    width: 100%;
    min-width: 800px;
    margin-bottom: 0;
    border-collapse: collapse;
}

.table__distributor thead {
    background: linear-gradient(135deg, #60bd9a 0%, #2a8d62 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table__distributor thead th {
    padding: 16px 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.table__distributor thead th:last-child {
    border-right: none;
}

.table__distributor tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.table__distributor tbody tr:hover {
    background-color: #f0faf7;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(96, 189, 154, 0.15);
}

.table__distributor tbody tr:last-child {
    border-bottom: none;
}

.table__distributor td {
    padding: 14px 20px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    border-right: 1px solid #f0f0f0;
}

.table__distributor td:last-child {
    border-right: none;
}

.table__distributor td:nth-child(even) {
    background-color: #f8f9fa;
}

.table__distributor tbody tr:hover td {
    background-color: #f0faf7;
}

.table__distributor td a {
    color: #2a8d62;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.table__distributor td a:hover {
    color: #60bd9a;
    text-decoration: underline;
}

/* Scrollbar Styling */
.table-responsive-distributor::-webkit-scrollbar {
    height: 8px;
}

.table-responsive-distributor::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-responsive-distributor::-webkit-scrollbar-thumb {
    background: #60bd9a;
    border-radius: 10px;
}

.table-responsive-distributor::-webkit-scrollbar-thumb:hover {
    background: #2a8d62;
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .table__distributor thead th {
        font-size: 16px;
        padding: 18px 24px;
    }
    
    .table__distributor td {
        font-size: 15px;
        padding: 16px 24px;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .table-responsive-distributor {
        margin-top: 25px;
    }
    
    .table__distributor {
        min-width: 750px;
    }
    
    .table__distributor thead th {
        font-size: 14px;
        padding: 14px 18px;
    }
    
    .table__distributor td {
        font-size: 13px;
        padding: 12px 18px;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .table-responsive-distributor {
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .table__distributor {
        min-width: 700px;
    }
    
    .table__distributor thead th {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .table__distributor td {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
    .table-responsive-distributor {
        border-radius: 8px;
    }
    
    .table__distributor thead th {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .table__distributor td {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .table-responsive-distributor::-webkit-scrollbar {
        height: 6px;
    }
}

/* Info Box untuk Scroll Hint - RESPONSIVE VERSION */
.scroll-hint {
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.scroll-hint p {
    margin: 0;
    font-weight: 500;
}

.scroll-hint p i {
    margin-right: 6px;
}

/* Hide all hints by default */
.scroll-hint-desktop,
.scroll-hint-mobile {
    display: none;
}

/* Desktop (≥992px) - Hint dengan scroll mouse & keyboard */
@media (min-width: 992px) {
    .scroll-hint-desktop {
        display: block;
        background: linear-gradient(135deg, #e8f5f1 0%, #d4ede5 100%);
        border: 2px solid #60bd9a;
        border-radius: 10px;
        padding: 12px 20px;
        margin-bottom: 15px;
    }
    
    .scroll-hint-desktop p {
        margin: 0;
        color: #2a8d62;
        font-size: 14px;
        font-weight: 600;
    }
    
    .scroll-hint-desktop p i {
        color: #60bd9a;
        margin-right: 8px;
        font-size: 16px;
    }
    
    .scroll-hint-desktop p strong {
        color: #1a6d4a;
        font-weight: 700;
    }
}

/* Tablet & Mobile (<992px) - Hint swipe biasa */
@media (max-width: 991px) {
    .scroll-hint-mobile {
        display: block;
        background-color: #fff3cd;
        border: 1px solid #ffc107;
        border-radius: 8px;
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .scroll-hint-mobile p {
        margin: 0;
        color: #856404;
        font-size: 13px;
        font-weight: 500;
    }
    
    .scroll-hint-mobile p i {
        margin-right: 6px;
    }
}

/* Active state ketika header diklik */
.table-responsive-distributor.scroll-active {
    box-shadow: 0 0 0 3px rgba(96, 189, 154, 0.3);
    transition: box-shadow 0.3s ease;
}

.table__distributor thead.header-clicked {
    background: linear-gradient(135deg, #2a8d62 0%, #60bd9a 100%);
    transition: background 0.3s ease;
}

/* Cursor indication for clickable header */
.table__distributor thead {
    cursor: pointer;
    transition: all 0.3s ease;
}

.table__distributor thead:hover {
    opacity: 0.95;
}


/*  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;
    }
}