/********** Template CSS **********/
:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    transition: opacity 0.5s ease;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
    border-radius: 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;


}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}


.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropbtn {
    background-color: #ffdd00;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100px;
    border-radius: 30px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-left: 50px;
    margin-top: -10px;
    border-radius: 5px;
  }
  
  .dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 12px;
  }
  
  .dropdown-content a:hover {
    background-color: #ffdd00;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .xx{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  /* Mengubah tinggi banner desktop */
#header-carousel .carousel-item{
    height:550px;
    min-height:550px;
}

#header-carousel .carousel-item img{
    height:550px;
    object-fit:cover;
}

/* ==========================================================================
   KMD ELEKTRIK - E-COMMERCE DESIGN SYSTEM
   ========================================================================== */

:root {
    --primary-color: #0B3D91;
    --primary-hover: #082c6c;
    --secondary-color: #f4a261;
    --dark-color: #1a1e24;
    --light-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 15px 35px rgba(11, 61, 145, 0.15);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #495057;
    background-color: #fbfbfd;
}

/* Typography Helpers */
.fw-extrabold { font-weight: 800; }
.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }
.line-height-1 { line-height: 1; }
.tracking-wider { letter-spacing: 1px; }

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Header & Topbar */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0B3D91 0%, #051e49 100%);
}

.topbar {
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-square {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-ecom {
    position: relative;
    padding: 60px 0 80px 0;
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.border-white-20 {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card Gradient Headers (Vektor Visual Pengganti Foto) */
.bg-gradient-blue {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.bg-gradient-teal {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #ff8008 0%, #ffc837 100%);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

/* Product Card Styling */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    background: #ffffff;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow) !important;
}

.product-card .card-header {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-badge {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-specs {
    border-left: 3px solid var(--primary-color);
}

.bg-primary-soft {
    background-color: rgba(11, 61, 145, 0.1);
}

/* Categories List */
.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.category-list a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer Links */
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: #fff;
}
  

/* Penyesuaian Ukuran Ringkas (Compact Mode) */
.fs-8 { 
    font-size: 0.8rem !important; 
}
.fs-9 { 
    font-size: 0.7rem !important; 
}

/* Mengurangi Tinggi Header Kartu */
.product-card .card-header {
    min-height: 85px !important;
    padding: 8px !important;
}

/* Menghilangkan Deskripsi Panjang Agar Kartu Pendek */
.product-card .card-text {
    display: none;
}

/* Menyesuaikan Padding Kartu */
.product-card .card-body {
    padding: 10px !important;
}

/* ==========================================================================
   CUSTOM CAROUSEL & CARD STYLE
   ========================================================================== */

/* Utility Classes */
.cursor-pointer { 
    cursor: pointer; 
}
.fs-8 { 
    font-size: 0.8rem !important; 
}
.fs-9 { 
    font-size: 0.7rem !important; 
}

/* Hover & Header Card */
.product-card:hover { 
    border-color: #0B3D91 !important; 
}

.product-card .card-header {
    background-color: #f8f9fa !important;
    padding: 8px !important;
}

/* Tombol Navigasi Slider Panah Mini (< >) di Card */
.product-card .carousel-control-prev, 
.product-card .carousel-control-next {
    width: 22px !important;
    height: 22px !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: none !important;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.product-card .carousel-control-prev:hover, 
.product-card .carousel-control-next:hover {
    opacity: 1;
}

.product-card .carousel-control-prev { 
    left: 4px !important; 
}

.product-card .carousel-control-next { 
    right: 4px !important; 
}

/* Tombol Navigasi Slider di Modal Pop-Up Detail */
#modalCarousel .carousel-control-prev, 
#modalCarousel .carousel-control-next {
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    border: none !important;
}

/* Fix Panah Navigasi Pop-Up Detail */
#modalCarousel .carousel-control-prev, 
#modalCarousel .carousel-control-next {
    width: 32px !important;
    height: 32px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: none !important;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

#modalCarousel .carousel-control-prev:hover, 
#modalCarousel .carousel-control-next:hover {
    opacity: 1;
}

#modalCarousel .carousel-control-prev { left: 8px !important; }
#modalCarousel .carousel-control-next { right: 8px !important; }

/* ==========================================================================
   WARNA BADGE SESUAI BRAND / MEREK
   ========================================================================== */
.brand-badge {
    font-weight: 700;
    color: #ffffff !important;
    z-index: 5;
    padding: 2px 6px !important;
    border-radius: 4px;
}

/* Schneider (Hijau Khas Schneider) */
.brand-schneider {
    background-color: #009639 !important;
}

/* Chint (Biru Tua CHINT) */
.brand-chint {
    background-color: #004B87 !important;
}

/* Kitz Valve (Kuning/Orange Kitz) */
.brand-MEAN_WELL {
    background-color: #E65100 !important;
}

/* Phoenix Contact (Hijau Toska Phoenix) */
.brand-phoenix {
    background-color: #007A78 !important;
}

/* Mitsubishi / Siemens (Merah) */
.brand-mitsubishi, .brand-siemens {
    background-color: #E60012 !important;
}

/* Omron / Meanwell (Biru Cerah) */
.brand-omron, .brand-meanwell {
    background-color: #005CAF !important;
}

/* Brand Lainnya (Default Biru KMD) */
.brand-default {
    background-color: #0B3D91 !important;
}
  
/* ==========================================================================
   PERBAIKAN HERO BANNER & BRAND BADGES (HOSTING FIX)
   ========================================================================== */

/* Latar Belakang Hero Banner Biru Dongker Gelap */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0F2C59 0%, #051E49 100%) !important;
}

/* Transparansi Trust Box */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Styling Badge Brand pada Kartu Produk */
.brand-badge {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    z-index: 10 !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Warna Default Badge Jika Brand Belum Terdaftar */
.brand-default { background-color: #0F2C59 !important; }
.brand-schneider { background-color: #009639 !important; }
.brand-chint { background-color: #004B87 !important; }
.brand-kitz { background-color: #E65100 !important; }
.brand-phoenix { background-color: #007A78 !important; }
.brand-mitsubishi, .brand-siemens { background-color: #E60012 !important; }
.brand-omron, .brand-meanwell { background-color: #005CAF !important; }

/* Menghindari Gambar Terpotong */
.product-card .card-header {
    overflow: hidden;
    min-height: 130px;
}

/* Kelas Warna Manual Produk */
.text-navy-blue {
    color: #0F2C59;
}

.btn-navy-blue {
    color: #0F2C59;
    border: 1px solid #0F2C59;
    background-color: transparent;
}

.btn-navy-blue:hover {
    background-color: #0F2C59;
    color: #ffffff;
}


/* Styling Running Marquee Logo */
.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
}

/* Efek Fade Out di Sisi Kiri & Kanan */
.logo-marquee-wrapper::before,
.logo-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}
.logo-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), rgba(248, 249, 250, 0));
}

.logo-marquee-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 35s linear infinite;
}

/* Pause animasi saat kursor berada di atas logo */
.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 70px;
    margin: 0 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    padding: 10px;
    flex-shrink: 0;
}

.logo-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Keyframe Animasi Pergeseran */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Styling Warna & Soft Effects */
.hero-smooth-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.text-dark-blue {
    color: #0f172a;
}

.text-subtle {
    color: #475569;
}

/* Badge Smooth */
.badge-smooth {
    background-color: #e0e7ff;
    color: #3730a3;
    font-size: 0.85rem;
}

.badge-pill-subtle {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 12px;
}

/* Tombol Gradient & Soft */
.btn-gradient-primary {
    background: linear-gradient(135deg, #0b3d91 0%, #1e40af 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.25);
    transform: translateY(-2px);
}

.btn-soft-outline {
    background-color: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-soft-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

/* Glassmorphism & Shadow */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.shadow-smooth {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Icon Box & Card Smooth */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blue-soft {
    background-color: #eff6ff;
    color: #2563eb;
}

.bg-amber-soft {
    background-color: #fffbeb;
}

.text-amber {
    color: #d97706;
}

.card-smooth {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card-smooth:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.08);
}

.link-smooth {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-smooth:hover {
    color: #1d4ed8;
}


/* Styling Warna & Soft Effects */
.hero-smooth-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.text-dark-blue {
    color: #0f172a;
}

.text-subtle {
    color: #475569;
}

/* Badge Smooth */
.badge-smooth {
    background-color: #e0e7ff;
    color: #3730a3;
    font-size: 0.85rem;
}

.badge-pill-subtle {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 6px 12px;
}

/* Tombol Gradient & Soft */
.btn-gradient-primary {
    background: linear-gradient(135deg, #0b3d91 0%, #1e40af 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.25);
    transform: translateY(-2px);
}

.btn-soft-outline {
    background-color: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-soft-outline:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #0f172a;
}

/* Glassmorphism & Shadow */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.shadow-smooth {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Icon Box & Card Smooth */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blue-soft {
    background-color: #eff6ff;
    color: #2563eb;
}

.bg-amber-soft {
    background-color: #fffbeb;
}

.text-amber {
    color: #d97706;
}

.card-smooth {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card-smooth:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.08);
}

.link-smooth {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-smooth:hover {
    color: #1d4ed8;
}

/* Penyesuaian Indikator Slide Gambar */
.custom-indicators {
    bottom: -35px;
}
.custom-indicators [data-bs-target] {
    width: 25px;
    height: 4px;
    border-radius: 2px;
    background-color: #0b3d91;
    opacity: 0.3;
}
.custom-indicators .active {
    opacity: 1;
    width: 35px;
}

/* Sembunyikan anak panah secara bawaan (transparan) */
#heroImageCarousel .carousel-control-prev,
#heroImageCarousel .carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Tampilkan anak panah saat gambar di-hover */
#heroImageCarousel:hover .carousel-control-prev,
#heroImageCarousel:hover .carousel-control-next {
    opacity: 1;
}

/* 1. Kurangi padding Hero Banner agar konten atas lebih padat */
.hero-smooth-wrapper {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
}

/* 2. Batasi tinggi maksimum gambar agar tidak terlalu panjang ke bawah */
#heroImageCarousel img,
.hero-img-frame img {
    max-height: 320px !important;
    object-fit: cover;
}

/* 3. Hapus margin negatif agar kotak TIDAK MENUMPUK gambar */
.category-section-clean {
    margin-top: 0 !important;
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
    position: relative;
    z-index: 1;
}

/* 4. Padatkan isi dalam 3 kotak agar lebih ringkas */
.card-compact {
    padding: 1.25rem !important;
}

/* Header Background Warna Deep Navy & Industrial Blue */
.shopee-header {
    background: linear-gradient(180deg, #0f172a 0%, #0b3d91 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.shopee-header a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shopee-header a:hover {
    color: #ffffff;
}

/* Topbar Mini Styling */
.shopee-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.15);
}

.shopee-topbar .divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Main Header & Logo */
.shopee-logo {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    background: #ffffff;
    padding: 2px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Search Box Styling */
.shopee-search-box .form-control {
    font-size: 0.88rem;
    background-color: #ffffff;
}

.shopee-search-box .form-control::placeholder {
    color: #94a3b8;
}

/* Tombol Cari & Aksesori Warna Amber Gold */
.btn-shopee-search {
    background-color: #f59e0b;
    border: none;
    transition: background 0.2s ease;
}

.btn-shopee-search:hover {
    background-color: #d97706;
}

/* Popular Keywords */
.popular-keywords a {
    font-size: 0.75rem;
    color: #94a3b8;
}

.popular-keywords a:hover {
    color: #f59e0b;
    text-decoration: none;
}

/* Nav Menu List (Bawah Search) */
.shopee-nav-bg {
    background-color: rgba(0, 0, 0, 0.2);
}

.shopee-nav-list a {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e2e8f0;
    padding: 6px 14px;
    display: inline-block;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.shopee-nav-list a:hover,
.shopee-nav-list a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Optimasi Tampilan Mobile (HP) */
@media (max-width: 991.98px) {
    .shopee-main-header {
        padding: 8px 0;
    }
    
    .shopee-logo {
        height: 36px;
        width: 36px;
    }
    
    .shopee-nav-list {
        background-color: #ffffff;
        padding: 15px !important;
        border-radius: 12px;
        margin-top: 8px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .shopee-nav-list a {
        color: #1e293b !important;
        width: 100%;
        border-radius: 8px;
    }
    
    .shopee-nav-list a:hover,
    .shopee-nav-list a.active {
        background-color: #eff6ff;
        color: #0b3d91 !important;
    }
}

/* Card Container */
.custom-product-card {
    background-color: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Container Media Image & Overlay Hover */
.product-img-box {
    position: relative;
    width: 100%;
    height: 260px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-box img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Dark Overlay + Button Group (Persis Gambar Ke-3) */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.product-img-box:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.overlay-btn:hover {
    background-color: #f59e0b;
    color: #ffffff;
}

/* Yellow Specification Banner */
.product-type-banner {
    background-color: #f5a623;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 6px 10px;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title Label Text */
.product-title-text {
    font-size: 1rem;
    font-weight: 800;
    color: #0b3d91;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}


/* Card Container Modern */
.custom-product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.custom-product-card:hover {
    transform: translateY(-5px);
    border-color: #0b3d91;
    box-shadow: 0 12px 24px rgba(11, 61, 145, 0.12);
}

/* Area Gambar */
.product-img-box {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
}

.product-img-box img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.custom-product-card:hover .product-img-box img {
    transform: scale(1.05);
}

/* Badge Tipe/Spesifikasi Modern */
.product-type-badge {
    display: inline-block;
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Judul Produk */
.product-title-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

/* Tombol WA / Detail */
.btn-product-action {
    background-color: #0b3d91;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-product-action:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.product-img-box {
    height: 150px !important;
}

.product-img-box img {
    max-height: 130px !important;
}

.product-title-text {
    font-size: 0.78rem !important;
}

.btn-product-action {
    font-size: 0.75rem !important;
    padding: 6px 8px !important;
}

/* =========================================================
   ULTRA MODERN FLOATING GLASS NAVBAR STYLES
   ========================================================= */

/* Main Floating Card dengan Efek Glassmorphism */
.modern-glass-card {
    background: rgba(11, 23, 44, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.fs-8 {
    font-size: 0.725rem;
}

/* Brand Logo & Glow Effect */
.logo-glow-box {
    position: relative;
}

.brand-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.brand-title-modern {
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.accent-cyan {
    color: #38bdf8;
}

/* Live Status Pulse Indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #34d399;
    font-size: 0.725rem;
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Modern Pill Search Bar */
.modern-search-pill {
    width: 320px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 3px;
    align-items: center;
    transition: all 0.3s ease;
}

.modern-search-pill:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.modern-search-pill input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 4px 10px;
    width: 100%;
}

.modern-search-pill input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-search-glow {
    background: #38bdf8;
    color: #0b172c;
    border: none;
    font-weight: 700;
    font-size: 0.775rem;
    padding: 6px 16px;
    border-radius: 40px;
    transition: all 0.25s ease;
}

.btn-search-glow:hover {
    background: #ffffff;
    color: #0b172c;
}

/* Modern Nav Items */
.modern-nav-item {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.modern-nav-item:hover,
.modern-nav-item.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
}

/* Dropdown Menu Glass */
.modern-dropdown-menu {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    margin-top: 12px !important;
}

.modern-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 12px;
}

.modern-dropdown-menu .dropdown-item:hover {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

/* High Conversion CTA Button */
.btn-modern-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0b172c;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-modern-cta:hover {
    color: #0b172c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* =========================================================
   CREATIVE CURVED & ASYMMETRIC NAVBAR STYLES
   ========================================================= */

.creative-header-wrapper {
    background-color: transparent;
    z-index: 1020;
}

/* Topbar Asimetris dengan Background Navy Deep */
.creative-topbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.live-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-emerald {
    width: 6px;
    height: 6px;
    background-color: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: emeraldPulse 1.8s infinite;
}

@keyframes emeraldPulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hotline-creative-btn {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.825rem;
    transition: color 0.2s ease;
}

.hotline-creative-btn:hover {
    color: #fbbf24;
}

/* Main Nav Card Floating */
.main-nav-container {
    margin-top: -8px;
}

.creative-nav-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Brand Logo Box */
.logo-creative-box {
    position: relative;
}

.brand-logo-img {
    height: 42px;
    width: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.creative-brand-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.text-navy {
    color: #0f172a;
}

.creative-brand-sub {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

/* Creative Nav Items dengan Indikator Aktif */
.creative-nav-link {
    color: #475569 !important;
    font-weight: 700;
    font-size: 0.825rem;
    letter-spacing: 0.3px;
    padding: 8px 14px !important;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.creative-nav-link:hover {
    color: #0f172a !important;
    background-color: #f1f5f9;
}

.creative-nav-link.active {
    color: #0f172a !important;
    background-color: #fef3c7;
    border-bottom: 2px solid #f59e0b;
}

/* Dropdown Menu */
.creative-dropdown-menu {
    border-radius: 14px !important;
    padding: 8px;
    margin-top: 10px !important;
}

.creative-dropdown-menu .dropdown-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    border-radius: 8px;
}

.creative-dropdown-menu .dropdown-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* CTA Button Kreatif dengan Lingkaran Icon */
.btn-creative-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.825rem;
    padding: 6px 6px 6px 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-icon-circle {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-creative-cta:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.btn-creative-cta:hover .cta-icon-circle {
    transform: rotate(15deg) scale(1.1);
}

/* =========================================================
   STRIPE STYLE MEGA MENU NAVBAR
   ========================================================= */

/* Brand & Logo */
.stripe-logo {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    object-fit: cover;
}

.stripe-brand-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.text-primary-navy {
    color: #0f172a;
}

.stripe-brand-sub {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

/* Nav Links */
.stripe-nav-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stripe-nav-link:hover {
    color: #0f172a !important;
    background-color: #f1f5f9;
}

.stripe-nav-link.active {
    color: #0f172a !important;
    font-weight: 700;
}

/* Stripe Mega Menu Dropdown (Desktop Hover) */
@media (min-width: 992px) {
    .stripe-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .stripe-dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        margin-top: 12px !important;
    }

    /* Mega Menu Container Width */
    .stripe-megamenu {
        width: 780px;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px);
        border-radius: 16px !important;
        background: #ffffff;
    }

    .stripe-dropdown:hover .stripe-megamenu {
        transform: translateX(-50%) translateY(0);
    }

    .stripe-dropdown-compact {
        width: 260px;
        border-radius: 14px !important;
    }
}

/* Mega Menu Item Card Styling */
.megamenu-item-box {
    transition: all 0.2s ease;
}

.megamenu-item-box:hover {
    background-color: #f8fafc;
}

.megamenu-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-blue-subtle { background-color: #eff6ff; }
.bg-cyan-subtle { background-color: #e0f2fe; }
.bg-warning-subtle { background-color: #fef3c7; }

.fs-8 { font-size: 0.8rem !important; }
.fs-9 { font-size: 0.725rem !important; }

/* Stripe CTA Button */
.btn-stripe-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
}

.btn-stripe-cta:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
}

/* =========================================================
   CLEAN SIMPLE NAVBAR STYLES (NO MEGA MENU)
   ========================================================= */

/* Brand & Logo */
.stripe-logo {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    object-fit: cover;
}

.stripe-brand-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.text-primary-navy {
    color: #0f172a;
}

.stripe-brand-sub {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

/* Nav Links */
.stripe-nav-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stripe-nav-link:hover {
    color: #0f172a !important;
    background-color: #f1f5f9;
}

.stripe-nav-link.active {
    color: #0f172a !important;
    font-weight: 700;
    background-color: #e2e8f0;
}

/* Dropdown Menu Halaman */
.stripe-dropdown .dropdown-menu {
    min-width: 200px;
    margin-top: 8px !important;
}

.stripe-dropdown .dropdown-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.stripe-dropdown .dropdown-item:hover {
    background-color: #f1f5f9;
    color: #0f172a;
}

/* CTA Button */
.btn-stripe-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
}

.btn-stripe-cta:hover {
    color: #ffffff;
    background: #1e293b;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
}

/* =========================================================
   MINI ICON CATEGORY BAR (GMP ELECTRIC STYLE)
   ========================================================= */

/* Class Grid 8 Kolom untuk Laptop/Desktop */
@media (min-width: 992px) {
    .row-cols-lg-8 > * {
        flex: 0 0 auto;
        width: 12.5%;
    }
}

/* Card Wrapper Minimalis */
.mini-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    padding: 10px 5px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-category-card:hover {
    transform: translateY(-4px);
}

/* Kotak Ikon Membulat */
.mini-icon-box {
    width: 68px;
    height: 68px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 1.35rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.mini-category-card:hover .mini-icon-box {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

/* Teks Judul Kategori */
.mini-category-title {
    font-size: 0.725rem;
    font-weight: 800;
    color: #334155;
    letter-spacing: 0.3px;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.2s ease;
}

.mini-category-card:hover .mini-category-title {
    color: #0f172a;
}

/* =========================================================
   FEATURED PRODUCTS - CERAH & SOFT COLOR PALETTE
   ========================================================= */

.text-dark-blue {
    color: #0b3d91;
}

.badge-light-blue {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

/* Animasi Slide-Up dari Bawah */
.animate-from-bottom {
    animation: fadeInUpSmooth 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(25px);
}

@keyframes fadeInUpSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kartu Produk Cerah & Modern */
.featured-product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.04);
}

.featured-product-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

/* Kotak Gambar Produk */
.featured-img-box {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

.featured-img-box img {
    max-height: 125px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-img-box img {
    transform: scale(1.06);
}

/* Tag Brand Warna Cerah */
.featured-brand-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

/* Kode / Tipe Produk */
.featured-code-text {
    font-size: 0.725rem;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Judul Teks Produk */
.featured-title-text {
    font-size: 0.825rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    margin-bottom: 0;
}

/* Tombol WA Tanya Produk Warna Biru Terang (Tidak Gelap) */
.btn-featured-wa {
    background-color: #0b3d91;
    color: #ffffff;
    font-size: 0.775rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 8px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border: none;
}

.btn-featured-wa:hover {
    background-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Tombol Selengkapnya Cerah */
.btn-soft-blue {
    background-color: #ffffff;
    color: #0b3d91;
    border: 1px solid #bfdbfe;
    transition: all 0.25s ease;
}

.btn-soft-blue:hover {
    background-color: #0b3d91;
    color: #ffffff;
    border-color: #0b3d91;
}

/* =========================================================
   HEADER SECTION BOX STYLE (FRAME MODUL)
   ========================================================= */

.section-header-box {
    border-left: 5px solid #0b3d91 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.bg-primary-soft {
    background-color: #eff6ff;
}

.uppercase-track {
    letter-spacing: 0.5px;
}

.header-stat-card {
    min-width: 100px;
    box-shadow: 0 2px 6px rgba(11, 61, 145, 0.04);
}

.fs-9 {
    font-size: 0.725rem !important;
}

/* =========================================================
   MODERN WHY CHOOSE US SECTION STYLES
   ========================================================= */

.why-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-color: #e2e8f0 !important;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #0b3d91 !important;
    box-shadow: 0 12px 24px rgba(11, 61, 145, 0.08) !important;
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon-box {
    transform: scale(1.08);
}

/* Background Warna Icon Soft */
.bg-blue-soft {
    background-color: #eff6ff;
}

.bg-emerald-soft {
    background-color: #ecfdf5;
}

.bg-amber-soft {
    background-color: #fffbeb;
}

.bg-purple-soft {
    background-color: #f5f3ff;
}

.text-purple {
    color: #7c3aed;
}

/* =========================================================
   WHY CHOOSE US HEADER FRAME STYLE
   ========================================================= */

/* Box Frame Modul Header */
.why-header-box {
    border-left: 5px solid #0b3d91 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-color: #e2e8f0 !important;
}

/* Helper Class & Badge Background */
.bg-primary-soft {
    background-color: #eff6ff;
}

.text-dark-blue {
    color: #0b3d91;
}

.uppercase-track {
    letter-spacing: 0.5px;
}

/* Cards Keunggulan */
.why-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-color: #e2e8f0 !important;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: #0b3d91 !important;
    box-shadow: 0 12px 24px rgba(11, 61, 145, 0.08) !important;
}

.why-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon-box {
    transform: scale(1.08);
}

/* Background Warna Icon Soft */
.bg-blue-soft {
    background-color: #eff6ff;
}

.bg-emerald-soft {
    background-color: #ecfdf5;
}

.bg-amber-soft {
    background-color: #fffbeb;
}

.bg-purple-soft {
    background-color: #f5f3ff;
}

.text-purple {
    color: #7c3aed;
}

.fs-8 {
    font-size: 0.8rem !important;
}

.fs-9 {
    font-size: 0.725rem !important;
}

/* =========================================================
   PARTNER BRAND LOGO MARQUEE (DESAIN LOGO DIPERBESAR)
   ========================================================= */

.partner-header-box {
    border-left: 5px solid #0b3d91 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* Wrapper Marquee Container */
.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

/* Track Animasi Marquee */
.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused; /* Pause animasi saat kursor diarahkan ke logo */
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Kartu Logo Ukuran Lebih Besar & Jelas */
.logo-item-large {
    width: 170px;            /* Diperbesar dari ukuran standar */
    height: 85px;            /* Tinggi ditambah agar logo bernapas */
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-item-large:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

/* Gambar Logo Dalam Kartu */
.logo-item-large img {
    max-width: 100%;
    max-height: 52px;        /* Batas tinggi maksimum gambar diperbesar */
    object-fit: contain;
    filter: grayscale(20%);  /* Mengurangi warna tajam agar terlihat bersih */
    transition: filter 0.3s ease;
}

.logo-item-large:hover img {
    filter: grayscale(0%);
}

/* =========================================================
   SUPER JUMBO LOGO MARQUEE
   ========================================================= */

.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* KOTAK LOGO JUMBO */
.logo-item-large {
    width: 240px !important;       /* Lebar diperbesar signifikan dari 170px */
    height: 120px !important;      /* Tinggi diperbesar signifikan dari 85px */
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px !important;  /* Padding diperkecil agar gambar logo bisa maksimal */
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-item-large:hover {
    transform: translateY(-6px);
    border-color: #2563eb;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
}

/* GAMBAR LOGO MAKSIMAL */
.logo-item-large img {
    width: 100% !important;
    height: 100% !important;
    max-width: 190px !important;   /* Maksimal lebar gambar diperbesar */
    max-height: 80px !important;   /* Maksimal tinggi gambar diperbesar dari 52px */
    object-fit: contain !important;
    filter: none !important;       /* Menampilkan warna asli logo secara tajam */
}

/* =========================================================
   CLEAN RFQ FORM STYLE
   ========================================================= */

.rfq-clean-card {
    border-left: 5px solid #0b3d91 !important;
    border-color: #e2e8f0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.rfq-input {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    font-size: 0.875rem !important;
}

.rfq-input:focus {
    border-color: #0b3d91 !important;
    box-shadow: 0 0 0 0.25rem rgba(11, 61, 145, 0.1) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    border: none !important;
    color: #0b3d91 !important;
    transition: all 0.25s ease !important;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35) !important;
}

/* =========================================================
   MODERN CLEAN FOOTER STYLES
   ========================================================= */

.modern-clean-footer {
    background-color: #ffffff;
}

.text-dark-blue {
    color: #0b3d91;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #0b3d91 !important;
    font-weight: 600;
}

.footer-contact-box {
    border-color: #e2e8f0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.fs-9 {
    font-size: 0.725rem !important;
}

/* =========================================================
   FLOATING DUAL-ACTION DOCK (MODERN B2B STYLE)
   ========================================================= */

.floating-action-dock {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1090;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-dock.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tombol Lingkaran Modern */
.dock-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    outline: none;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
    cursor: pointer;
}

/* Tombol WhatsApp */
.dock-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
}

.dock-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* Tombol Ke Atas */
.dock-top {
    background: #0b3d91;
    color: #ffffff;
}

.dock-top:hover {
    background: #2563eb;
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

/* Tooltip Teks Melayang Saat Hover */
.dock-tooltip {
    position: absolute;
    right: 58px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.dock-btn:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================================================
   PERBAIKAN CSS ABOUT PAGE & GLOBAL SYSTEM (SENADA BERANDA)
   ========================================================= */

/* 1. Global Color Variables & Body */
:root {
    --primary-navy: #0f172a;
    --primary-blue: #0b3d91;
    --accent-blue: #2563eb;
    --accent-gold: #f59e0b;
    --bg-main: #f8fafc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: #334155;
}

/* 2. Color Helper Classes */
.text-dark-blue {
    color: var(--primary-blue) !important;
}

.text-primary-navy {
    color: var(--primary-navy) !important;
}

.bg-primary-soft {
    background-color: #eff6ff !important;
}

.badge-light-blue {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.uppercase-track {
    letter-spacing: 0.5px;
}

.fs-7 { font-size: 0.875rem !important; }
.fs-8 { font-size: 0.8rem !important; }
.fs-9 { font-size: 0.725rem !important; }

/* 3. Header & Navbar Styles */
.stripe-logo {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    object-fit: cover;
}

.stripe-brand-title {
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.stripe-brand-sub {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

.stripe-nav-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.stripe-nav-link:hover {
    color: #0f172a !important;
    background-color: #f1f5f9;
}

.stripe-nav-link.active {
    color: #0f172a !important;
    font-weight: 700;
    background-color: #e2e8f0;
}

.btn-stripe-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f59e0b !important;
    color: #0f172a !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.25s ease;
}

.btn-stripe-cta:hover {
    background: #d97706 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* 4. Visi & Misi Header Frame Styles */
.why-header-box {
    border-left: 5px solid var(--primary-blue) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-color: #e2e8f0 !important;
}

.why-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-blue-soft { background-color: #eff6ff; }
.bg-amber-soft { background-color: #fffbeb; }

/* 5. Modern Clean Footer */
.modern-clean-footer {
    background-color: #ffffff;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.footer-contact-box {
    border-color: #e2e8f0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

/* 6. Floating Action Dock (WhatsApp & Scroll Top) */
.floating-action-dock {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1090;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-action-dock.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dock-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: none;
    outline: none;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
    cursor: pointer;
}

.dock-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
}

.dock-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.dock-top {
    background: var(--primary-blue);
    color: #ffffff;
}

.dock-top:hover {
    background: var(--accent-blue);
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.dock-tooltip {
    position: absolute;
    right: 58px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.dock-btn:hover .dock-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================================================
   STYLE TAMBAHAN HERO ABOUT PAGE (MODERN HERO SPLIT)
   ========================================================= */

/* Latar Belakang Navy Gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #0b3d91 100%) !important;
}

/* Pattern Grid Halus */
.about-hero-section {
    position: relative;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Transparansi dan Efek Kaca (Glassmorphism) */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-light-blue {
    background-color: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
}

.bg-primary-soft {
    background-color: rgba(11, 61, 145, 0.08);
}

.shadow-xs {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Font Adjustments */
.fw-extrabold {
    font-weight: 800 !important;
}

.fs-7 {
    font-size: 0.95rem !important;
}

.fs-8 {
    font-size: 0.85rem !important;
}

.fs-9 {
    font-size: 0.75rem !important;
}

.text-dark-blue {
    color: #0b3d91 !important;
}

/* =========================================================
   STYLE HERO BANNER FEATURE PAGE (FEATURE.HTML)
   ========================================================= */

/* Latar Belakang Navy Gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #0b3d91 100%) !important;
}

/* Pattern Grid Pola Transparan */
.feature-hero-section {
    position: relative;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Glassmorphism & Transparansi Kartu */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-light-blue {
    background-color: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
}

.shadow-xs {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Penyesuaian Font & Ukuran Teks */
.fw-extrabold {
    font-weight: 800 !important;
}

.fs-7 {
    font-size: 0.95rem !important;
}

.fs-8 {
    font-size: 0.85rem !important;
}

.fs-9 {
    font-size: 0.75rem !important;
}

.text-dark-blue {
    color: #0b3d91 !important;
}

/* =========================================================
   STYLE HERO BANNER PARTNER PAGE (TESTIMONIAL.HTML)
   ========================================================= */

/* Latar Belakang Navy Gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #0b3d91 100%) !important;
}

/* Pattern Grid Pola Transparan */
.partner-hero-section {
    position: relative;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Glassmorphism & Transparansi Kartu */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-light-blue {
    background-color: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
}

.shadow-xs {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Typography Adjustments */
.fw-extrabold {
    font-weight: 800 !important;
}

.fs-7 {
    font-size: 0.95rem !important;
}

.fs-8 {
    font-size: 0.85rem !important;
}

.text-dark-blue {
    color: #0b3d91 !important;
}
/* Styling Khusus Ukuran Logo Jumbo Full-Width */
.partner-logo-card {
    height: 95px !important;       /* Wadah lebih tinggi */
    padding: 15px !important;
    transition: transform 0.2s ease;
}

.partner-logo-card:hover {
    transform: translateY(-3px);
}

.partner-logo-img {
    max-height: 65px !important;   /* Ukuran logo diperbesar maksimal */
    width: 90% !important;          /* Mengisi proporsi lebar kotak */
    object-fit: contain !important;
}

/* =========================================================
   STYLE PRODUK POPULER HOMEPAGE (INDEX.HTML)
   ========================================================= */

.bg-navy-blue {
    background-color: #0b3d91 !important;
    color: #ffffff !important;
}

.popular-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #e2e8f0 !important;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1) !important;
    border-color: #bfdbfe !important;
}

.popular-img-box {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc !important;
}

.popular-img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-img {
    transform: scale(1.05);
}

.w-fit {
    width: fit-content;
}

/* =========================================================
   STYLE HERO BANNER CONTACT PAGE (CONTACT.HTML)
   ========================================================= */

/* Latar Belakang Navy Gradient */
.bg-gradient-navy {
    background: linear-gradient(135deg, #0f172a 0%, #0b3d91 100%) !important;
}

/* Pattern Grid Pola Transparan */
.contact-hero-section {
    position: relative;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Glassmorphism & Transparansi Kartu */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-light-blue {
    background-color: rgba(255, 255, 255, 0.15);
    color: #38bdf8;
}

.shadow-xs {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Typography Adjustments */
.fw-extrabold {
    font-weight: 800 !important;
}

.fs-7 {
    font-size: 0.95rem !important;
}

.fs-8 {
    font-size: 0.85rem !important;
}

.fs-9 {
    font-size: 0.75rem !important;
}

.text-dark-blue {
    color: #0b3d91 !important;
}
/* =========================================================
   PALET WARNA RESMI BRAND KMD ELEKTRIK (DARI LOGO)
   ========================================================= */

:root {
    /* Warna Utama dari Logo */
    --kmd-blue: #1d4ed8;       /* Biru Logo Utama */
    --kmd-blue-dark: #1e3a8a;  /* Biru Navy Logo */
    --kmd-red: #dc2626;        /* Merah Logo */
    --kmd-red-dark: #b91c1c;   /* Merah Pelekat/Hover */
    --kmd-gold: #f59e0b;       /* Kuning Emas Logo */
    
    /* Background & Netral */
    --bg-main: #f8fafc;
    --text-dark: #0f172a;
}

/* Base Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-main);
    color: #334155;
}

/* =========================================================
   OVERRIDE NAVBAR & HEADER
   ========================================================= */

.stripe-brand-title {
    color: var(--kmd-blue-dark) !important;
}

.stripe-brand-title .text-primary-navy {
    color: var(--kmd-red) !important; /* Kata ELEKTRIK memakai warna merah logo */
}

.stripe-nav-link.active {
    color: var(--kmd-blue-dark) !important;
    background-color: #eff6ff !important;
    border-bottom: 2px solid var(--kmd-red);
}

/* Tombol Hubungi Sales Pakai Merah Logo */
.btn-stripe-cta {
    background: linear-gradient(135deg, var(--kmd-red) 0%, var(--kmd-red-dark) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3) !important;
}

.btn-stripe-cta:hover {
    background: var(--kmd-red-dark) !important;
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4) !important;
}

/* =========================================================
   HERO BANNER (PERPADUAN BIRU & MERAH LOGO)
   ========================================================= */

.bg-gradient-navy,
.hero-ecom,
.about-hero-section,
.feature-hero-section,
.partner-hero-section,
.contact-hero-section {
    background: linear-gradient(135deg, var(--kmd-blue-dark) 0%, var(--kmd-blue) 100%) !important;
}

/* Badge Top di Hero */
.badge-light-blue {
    background-color: rgba(220, 38, 38, 0.2) !important;
    color: #fca5a5 !important;
    border: 1px solid var(--kmd-red);
}

/* =========================================================
   TOMBOL KUNING/GOLD & MERAH
   ========================================================= */

/* Tombol Utama (Aksen Merah Logo) */
.btn-primary {
    background-color: var(--kmd-red) !important;
    border-color: var(--kmd-red) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--kmd-red-dark) !important;
    border-color: var(--kmd-red-dark) !important;
}

/* Tombol Sekunder / WA (Kuning Emas Logo) */
.btn-warning {
    background-color: var(--kmd-gold) !important;
    border-color: var(--kmd-gold) !important;
    color: var(--kmd-blue-dark) !important;
}

.btn-warning:hover {
    background-color: #d97706 !important;
    color: #ffffff !important;
}

/* =========================================================
   HOVER CARDS & AKSEORIS
   ========================================================= */

/* Border Kiri Box / Accent Line */
.why-header-box {
    border-left: 5px solid var(--kmd-red) !important;
}

.text-dark-blue,
.text-primary {
    color: var(--kmd-blue-dark) !important;
}

.text-danger,
.text-red-kmd {
    color: var(--kmd-red) !important;
}

/* Hover Icon Box */
.mini-category-card:hover .mini-icon-box {
    background-color: var(--kmd-red) !important;
    color: #ffffff !important;
    border-color: var(--kmd-red) !important;
}

.mini-category-card:hover .mini-category-title {
    color: var(--kmd-red) !important;
}

/* Floating Dock Top Button */
.dock-top {
    background: var(--kmd-blue-dark) !important;
}

.dock-top:hover {
    background: var(--kmd-red) !important;
}

/* =========================================================
   DARK MODE SYSTEM (KMD ELEKTRIK BRANDED)
   ========================================================= */

/* Transisi Halus Saat Berganti Warna */
body, .stripe-header, .card, .why-header-box, .popular-card, 
.rfq-clean-card, .footer-contact-box, .modern-clean-footer {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* KONDISI DARK MODE ACTIVE */
[data-theme="dark"] {
    --bg-main: #0b1120;
    --text-dark: #f8fafc;
}

[data-theme="dark"] body {
    background-color: #0b1120 !important;
    color: #cbd5e1 !important;
}

/* Header & Card Mode Gelap */
[data-theme="dark"] .stripe-header,
[data-theme="dark"] .card,
[data-theme="dark"] .why-header-box,
[data-theme="dark"] .popular-card,
[data-theme="dark"] .rfq-clean-card,
[data-theme="dark"] .footer-contact-box,
[data-theme="dark"] .modern-clean-footer,
[data-theme="dark"] .bg-white,
[data-theme="dark"] .bg-light,
[data-theme="dark"] .bg-light-subtle {
    background-color: #1e293b !important;
    border-color: #334155 !important;
    color: #f8fafc !important;
}

/* Penyesuaian Teks Mode Gelap */
[data-theme="dark"] .text-dark,
[data-theme="dark"] .text-dark-blue,
[data-theme="dark"] h1, [data-theme="dark"] h2, 
[data-theme="dark"] h3, [data-theme="dark"] h4, 
[data-theme="dark"] h5, [data-theme="dark"] h6 {
    color: #f8fafc !important;
}

[data-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}

[data-theme="dark"] .stripe-nav-link {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .stripe-nav-link:hover,
[data-theme="dark"] .stripe-nav-link.active {
    background-color: #334155 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .rfq-input,
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #0f172a !important;
    color: #f8fafc !important;
    border-color: #334155 !important;
}

/* Tombol Mode Switch (Saklar Floating) */
.theme-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
}

[data-theme="dark"] .theme-toggle-btn {
    background-color: #334155;
    color: #f59e0b;
    border-color: #475569;
}

/* =========================================================
   ANIMASI KATEGORI MINI (TANPA MENGUBAH BENTUK KOTAK ASLI)
   ========================================================= */

/* 1. Menambahkan transisi ke semua elemen dalam kategori mini */
[class*="col-"] > div,
.category-item,
.mini-category-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease, 
                border-color 0.3s ease !important;
}

/* 2. Kartu terangkat sedikit & memberikan bayangan lembut saat dihover */
[class*="col-"] > div:hover,
.category-item:hover,
.mini-category-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1) !important;
    border-color: #dc2626 !important; /* Border menyala merah khas KMD */
}

/* 3. Efek membesar pada Ikon di dalamnya saat dihover */
[class*="col-"] > div:hover i,
[class*="col-"] > div:hover img,
[class*="col-"] > div:hover svg,
.category-item:hover i,
.mini-category-card:hover i {
    transform: scale(1.15) !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* 4. Efek perubahan warna teks judul kategori saat dihover */
[class*="col-"] > div:hover span,
[class*="col-"] > div:hover p,
.category-item:hover span,
.mini-category-card:hover .mini-category-title {
    color: #1d4ed8 !important; /* Teks berubah ke biru KMD */
    transition: color 0.3s ease !important;
}

/* =========================================================
   CAROUSEL NAVIGATION ON HOVER ONLY
   ========================================================= */

/* Sembunyikan tombol panah secara default */
.product-card .carousel-control-prev,
.product-card .carousel-control-next {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Munculkan tombol panah saat kartu produk di-hover */
.product-card:hover .carousel-control-prev,
.product-card:hover .carousel-control-next {
    opacity: 0.85 !important;
    visibility: visible;
}

/* Efek sedikit lebih terang saat tombol panahnya disentuh langsung */
.product-card .carousel-control-prev:hover,
.product-card .carousel-control-next:hover {
    opacity: 1 !important;
}

/* =========================================================
   PERBAIKAN WARNA TOMBOL DETAIL PRODUK (MENGGANTI KUNING)
   ========================================================= */

/* Mengubah tombol detail menjadi warna Biru KMD yang elegan */
.product-card .btn-navy-blue,
.product-card .btn-outline-primary,
.product-card button.btn {
    background-color: #1d4ed8 !important; /* Biru KMD */
    border-color: #1d4ed8 !important;
    color: #ffffff !important;            /* Teks Putih Tajam */
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

/* Efek Hover saat tombol disentuh kursor */
.product-card .btn-navy-blue:hover,
.product-card .btn-outline-primary:hover,
.product-card button.btn:hover {
    background-color: #dc2626 !important; /* Berubah jadi Merah KMD saat dihover */
    border-color: #dc2626 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25) !important;
}

/* 1. Atur class judul produk agar siap di-hover */
.course-title, 
.product-title, 
.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Mengunci teks maks 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 2. Saat kursor menempel (hover), tampilkan seluruh nama produk */
.course-title:hover, 
.product-title:hover, 
.card-title:hover {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  background-color: #ffffff; /* Memastikan background tetap bersih */
  position: relative;
  z-index: 10;
}

/* Buat wadah gambar jadi putih */
.card-img-wrapper,
.course-item .overflow-hidden {
  background-color: #ffffff !important;
}

/* Biarkan foto di tengah dengan rapi */
.card-img-top, 
.product-img, 
.course-img img {
  width: 100% !important;
  height: 200px !important; /* Sesuaikan tinggi yang Anda inginkan */
  object-fit: contain !important;
  object-position: center !important;
  background-color: #ffffff !important;
}