:root {
    --ot-blue: rgba(54, 85, 255, 1); /* Biru Template */
    --ot-blue-soft: rgba(54, 85, 255, 0.08); /* Tambahan */
    --ot-gold: rgba(212, 175, 55, 1);
    --ot-gold-soft: rgba(255, 235, 175, 1);
    --ot-black: #110F0F; /* Hitam Teks */
    --text-gray: #555555; /* Tambahan */
    --bg-soft: #F4F7FF; /* Tambahan */
    --font-primary: 'Bricolage Grotesque', sans-serif; /* Variabel Font Kamu */
    --font-body: 'Plus Jakarta Sans', sans-serif; /* Tambahan */
}

/* ======================================== */
/* 🎨 CORE STYLES & TAMBAHAN DARI CSS 1 */
/* ======================================== */

body {
    color: var(--text-gray) !important;
    background-color: #ffffff;
    font-family: var(--font-body) !important;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ot-black) !important;
    font-family: var(--font-primary) !important;
}

.bg-soft-blue {
    background-color: var(--bg-soft);
    border-top: 1px solid rgba(54, 85, 255, 0.05);
    border-bottom: 1px solid rgba(54, 85, 255, 0.05);
}

.header-area {
    background-color: #110F0F !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.header-area.sticky {
    background: rgba(17, 15, 15, 0.85) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 5px 0 !important;
}

.menu-list > li > a {
    color: #ffffff !important;
}

.premium-card {
    background: #ffffff;
    border: 1px solid rgba(54, 85, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: var(--ot-blue); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease; z-index: 2;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(54, 85, 255, 0.08);
    border-color: rgba(54, 85, 255, 0.2);
}

.premium-card:hover::before { transform: scaleX(1); }

.card-dark {
    background: var(--ot-black) !important;
    color: rgba(255,255,255,0.8) !important;
}

.card-dark h2, .card-dark h3 { color: #ffffff !important; }
.card-dark::before { background: #ffffff; }

.card-blue {
    background: var(--ot-blue) !important;
    color: rgba(255,255,255,0.9) !important;
}

.card-blue h2, .card-blue h3 { color: #ffffff !important; }
.card-blue::before { background: var(--ot-black); }

.icon-box-circle {
    width: 70px; height: 70px;
    background: var(--ot-blue-soft);
    color: var(--ot-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 25px;
    transition: all 0.4s ease;
}

.premium-card:hover .icon-box-circle {
    background: var(--ot-blue); color: #ffffff;
    transform: rotateY(360deg);
}

.spice-item {
    background: #fff; border-radius: 15px; padding: 20px; text-align: center;
    border: 1px solid #eee; transition: 0.3s ease;
}

.spice-item:hover {
    transform: translateY(-5px); border-color: var(--ot-blue);
    box-shadow: 0 10px 20px rgba(54, 85, 255, 0.1);
}

.spice-item i { font-size: 30px; color: var(--ot-blue); margin-bottom: 15px; }

.text-accent { color: var(--ot-blue) !important; }

.tm-stat-item {
    text-align: center; padding: 30px 20px; background: #fff;
    border-radius: 20px; border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.tm-stat-item h3 { font-size: 48px; font-weight: 800; color: var(--ot-blue) !important; margin-bottom: 5px;}
.tm-stat-item p { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.tm-market-tag {
    display: inline-block; padding: 10px 20px; background: #fff;
    border: 1px solid #eee; border-radius: 50px; margin: 5px;
    font-weight: 600; font-size: 14px; transition: 0.3s ease;
}

.tm-market-tag:hover {
    background: var(--ot-blue); color: #fff !important; border-color: var(--ot-blue);
    transform: translateY(-3px);
}

.form-control, .form-select {
    padding: 15px 20px; border-radius: 12px; border: 1px solid #eee;
    background: #f9f9f9; font-size: 15px; transition: 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ot-blue); background: #fff; box-shadow: 0 0 0 4px rgba(54,85,255,0.1);
}

/* ======================================== */
/* 🎨 TAMBAHAN ANIMASI & HOVER ELEGAN */
/* ======================================== */

/* 1. TRANSISI HALUS UNTUK SEMUA ELEMEN INTERAKTIF */
a, button, .btn, .button, input[type="submit"], 
.card, .service-item, .portfolio-item, .team-member,
img, .icon-box, nav ul li a, .social-links a,
.single-kye-features, .feature-card, .home-page-card,
.product-support-card, .contact-wrapper li, .news-insight-list li,
.footer-logo img, .primary-btn2, .menu-list li a {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* 2. HOVER UNTUK NAVIGASI MENU */
.menu-list > li > a:hover {
    color: rgba(54, 85, 255) !important;
    letter-spacing: 0.5px;
}

.sub-menu li a:hover {
    color: rgba(54, 85, 255) !important;
    padding-left: 8px !important;
    background: rgba(23, 129, 254, 0.05);
}

/* 3. HOVER BUTTON YANG LEBIH HIDUP */
.primary-btn2:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 30px -10px rgba(23, 129, 254, 0.3) !important;
}

.primary-btn2.two:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 30px -10px rgba(255, 255, 255, 0.2) !important;
}

.btn-hover span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-hover:hover span {
    transform: scale(1);
}

/* 4. HOVER UNTUK CARD FEATURES */
.single-kye-features:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.4) !important;
}

.single-kye-features:hover .kye-features-img img {
    transform: scale(1.1) rotate(3deg);
}

.kye-features-img {
    overflow: hidden;
    border-radius: 20px;
}

.kye-features-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 5. HOVER UNTUK FEATURE CARD KECIL */
.feature-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 129, 254, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 15px 30px -10px rgba(23, 129, 254, 0.4) !important;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover .icon img {
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 6. HOVER UNTUK HOME PAGE CARD */
.home-page-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.home-page-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.5) !important;
}

.home-page-card:hover .home-img img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.home-img {
    overflow: hidden;
    border-radius: 15px;
}

.home-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

.home-page-card h4 a {
    position: relative;
    display: inline-block;
}

.home-page-card h4 a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(54, 85, 255, 1);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-page-card:hover h4 a::after {
    width: 100%;
}

/* 7. HOVER UNTUK INNER PAGE IMAGES */
.inner-page-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.inner-page-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.inner-page-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 129, 254, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.inner-page-img:hover::before {
    opacity: 1;
}

.inner-page-img:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.inner-page-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

/* 8. HOVER UNTUK CONTACT SECTION */
.contact-wrapper li {
    padding: 20px;
    border-radius: 15px;
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid rgba(54, 85, 255, 0.1);
    margin-bottom: 15px;
}

.contact-wrapper li:hover {
    transform: translateX(10px) scale(1.02) !important;
    background: rgba(23, 129, 254, 0.1);
    border-color: rgba(23, 129, 254, 0.3);
    box-shadow: 0 10px 25px -10px rgba(54, 85, 255, 1);
}

.contact-wrapper li:hover .icon i {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 9. HOVER UNTUK NEWS INSIGHT LIST */
.news-insight-list li {
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
    border-left: 3px solid transparent;
}

.news-insight-list li:hover {
    border-left-color: rgba(54, 85, 255, 1);
    background: rgba(23, 129, 254, 0.08);
    transform: translateX(10px) !important;
    box-shadow: 0 5px 15px -5px rgba(23, 129, 254, 0.3);
}

.news-insight-list li:hover svg {
    fill: rgba(54, 85, 255, 1);
    transform: rotate(360deg);
}

.news-insight-list li svg {
    transition: transform 0.6s ease, fill 0.3s ease;
}

/* 10. HOVER UNTUK RESPONSIVE SECTION ITEMS */
.single-responsive {
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.single-responsive:hover {
    transform: translateY(-15px) scale(1.03) !important;
    background: linear-gradient(145deg, rgba(23,129,254,0.15), rgba(255,255,255,0.05));
    border-color: rgba(23, 129, 254, 0.4);
    box-shadow: 0 25px 35px -15px rgba(54, 85, 255, 1);
}

.single-responsive:hover .icon svg {
    fill: rgba(54, 85, 255, 1);
    transform: scale(1.1) rotate(5deg);
}

.single-responsive .icon svg {
    transition: transform 0.5s ease, fill 0.3s ease;
}

/* 11. HOVER UNTUK PRODUCT SUPPORT CARDS */
.product-support-card {
    padding: 30px;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.product-support-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    border-color: rgba(54, 85, 255, 1);
    box-shadow: 0 30px 40px -15px rgba(23, 129, 254, 0.5);
    background: linear-gradient(145deg, rgba(23,129,254,0.2), rgba(0,0,0,0.3));
}

.product-support-card:hover .icon img {
    animation: float 3s ease infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* 12. HOVER UNTUK FOOTER */
.footer-logo img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 15px rgba(54, 85, 255, 1));
}

footer ul li {
    transition: transform 0.3s ease;
}

footer ul li:hover {
    transform: translateY(-5px);
}

footer ul li:hover .icon img {
    animation: bounce 0.6s ease;
}

/* 13. HOVER UNTUK CURSOR CUSTOM (jika ada) */
#magic-cursor {
    transition: all 0.2s ease;
}

/* 14. ANIMASI UNTUK GAMBAR BANNER */
.banner-img-area img {
    animation: zoomInOut 20s ease infinite alternate;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* 15. HOVER UNTUK VIDEO SECTION */
.service {
    position: relative;
    overflow: hidden;
}

.service video {
    transition: transform 0.6s ease;
}

.service:hover video {
    transform: scale(1.02);
}

.service-list-item {
    transition: all 0.4s ease;
}

.service:hover .service-list-item {
    transform: translateY(-5px);
}

.single-service {
    transition: all 0.3s ease;
}

.single-service:hover {
    transform: translateX(10px);
    background: rgba(23, 129, 254, 0.1);
    padding-left: 15px;
    border-radius: 10px;
}

/* 16. ANIMASI UNTUK SVG GARIS */
svg path {
    transition: stroke-dashoffset 0.5s ease, fill 0.3s ease;
}

a:hover svg path, button:hover svg path {
    stroke: rgba(54, 85, 255, 1);
    fill: rgba(54, 85, 255, 1);
}

/* 17. HOVER UNTUK MAGNETIC ITEMS (jika aktif) */
.magnetic-item {
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* 18. HOVER UNTUK PROGRESS WRAP (scroll to top) */
.progress-wrap {
    transition: all 0.3s ease;
}

.progress-wrap:hover {
    transform: scale(1.2) translateY(-5px);
}

.progress-wrap:hover svg {
    fill: rgba(54, 85, 255, 1);
}

/* 19. ANIMASI UNTUK SECTION TITLE */
.section-title h2 span {
    position: relative;
    display: inline-block;
}

.section-title h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: rgba(54, 85, 255, 1);
    transition: width 0.4s ease;
}

.section-title:hover h2 span::after {
    width: 100%;
}

/* 20. HOVER UNTUK LOAD MORE BUTTON */
.load-more-btn {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(45deg, rgba(54, 85, 255, 1), rgba(54, 85, 255, 1));
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease !important;
}

.load-more-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 30px -10px rgba(54, 85, 255, 1);
    letter-spacing: 1px;
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: rotate(90deg) scale(1.2);
}

/* Efek tambahan untuk semua card */
.single-kye-features, .feature-card, .home-page-card, 
.product-support-card, .contact-wrapper li, .single-responsive {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.single-kye-features::after, .feature-card::after, 
.home-page-card::after, .product-support-card::after,
.contact-wrapper li::after, .single-responsive::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(23, 129, 254, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.single-kye-features:hover::after, .feature-card:hover::after,
.home-page-card:hover::after, .product-support-card:hover::after,
.contact-wrapper li:hover::after, .single-responsive:hover::after {
    opacity: 1;
}

/* From Gemini ---------------------------------------------------------------- */

/* --- BASE STYLE (Berlaku untuk kedua button) --- */
.custom-ot-btn {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 35px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    cursor: pointer !important;
    min-width: 190px !important;
    border: none !important; /* Tanpa Border Sesuai Request */
    z-index: 1 !important;
    
    /* Transisi warna teks saat LEPAS HOVER (0.6s agar smooth) */
    transition: color 0.6s ease-out !important; 

    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important; /* Pakai Bold agar tegas */
    font-size: 15px !important;
    letter-spacing: -0.02em !important; /* Sedikit dirapatkan agar modern */
    text-transform: capitalize !important;
}

.ot-content {
    position: relative !important;
    z-index: 999 !important; /* Paksa di atas blob */
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: inherit !important;
    pointer-events: none !important;
}

.ot-blob {
    position: absolute !important;
    width: 0;
    height: 0;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    /* Kecepatan dipercepat (0.4s) */
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out !important; 
    z-index: 1 !important;
}

/* Ukuran blob saat di-hover */
.custom-ot-btn:hover .ot-blob {
    width: 500px !important;
    height: 500px !important;
}

/* --- TOMBOL KIRI (OT-LEFT): Dasar Hitam -> Hover Biru --- */
.ot-left {
    background-color: rgba(54, 85, 255) !important; /* Warna Dasar Biru */
    color: #ffffff !important; /* Teks Putih */
}

.ot-left .ot-blob {
    background-color: black !important; /* Bengkak jadi Hitam */
}

/* --- TOMBOL KANAN (OT-RIGHT): Dasar Putih -> Hover Biru --- */
.ot-right {
    background-color: #ffffff !important; /* Warna Dasar Putih */
    color: #000000 !important; /* Teks Hitam */
}

.ot-right .ot-blob {
    background-color: rgba(54, 85, 255) !important; /* Bengkak jadi Biru */
}

/* Transisi Warna Teks saat MASUK HOVER (Cepat: 0.1s) */
.custom-ot-btn:hover {
    color: #ffffff !important; /* Keduanya jadi putih saat hover */
    transition: color 0.1s ease !important;
}

/* --- LOGO & SVG SINKRONISASI --- */
.ot-svg, .ot-svg-logo {
    transition: all 0.4s ease !important;
}

/* Paksa semua path di dalam button mengikuti warna teks (currentColor) */
.custom-ot-btn svg path, 
.custom-ot-btn svg g {
    fill: currentColor !important;
    stroke: none;
}

/* Khusus untuk icon panah di tombol kiri yang pakai Stroke, bukan Fill */
.ot-left svg path {
    fill: none !important;
    stroke: currentColor !important;
}

/* Container Utama ----------------------------------- background animation */
.banner-section {
    overflow: hidden !important;
    position: relative;
    /* Paksa GPU agar gerakan halus */
    will-change: transform;
    transform: translateZ(0);
}

/* Div Swiper yang berisi gambar */
.banner-img-slider {
    width: 100%;
    height: 100%;
    /* Jalankan animasi denyut secara terus-menerus */
    animation: globalPulse 16s ease-in-out infinite !important;
}

/* Pastikan gambar mengisi penuh container tanpa distorsi */
.banner-img-area img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.1); /* Sedikit zoom dasar agar tidak ada bocor putih di pinggir saat gerak */
}

/* KEYFRAMES: Denyut Global */
@keyframes globalPulse {
    0% {
        transform: scale(1); /* Mulai di ukuran normal */
    }
    50% {
        transform: scale(1.12); /* Di detik ke-8 (tepat saat ganti slide), dia di puncak zoom */
    }
    100% {
        transform: scale(1); /* Di detik ke-16 (kembali ke slide 1), dia balik mengecil */
    }
}

/* Untuk perbaikan title ------------------------- */
.custom-title h1 {
    font-family: var(--font-bricolageGrotesque);
    color: #110F0F !important; /* Hitam pekat agar BOLD terlihat jelas */
    font-size: 48px !important; /* Ukuran besar sesuai gambar */
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
}

/* Bagian Biru OneTrack */
.custom-title h1 span {
    color: rgba(54, 85, 255) !important;
    display: block; /* Membuat OneTrack berada di baris baru seperti di gambar */
}

/* Tablet & Mobile Adjustment */
@media (max-width: 768px) {
    .custom-title h1 {
        font-size: 32px !important;
    }
}

.ot-agency-title h2 {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    font-weight: 800 !important;
    color: #110F0F !important; /* Hitam pekat */
    font-size: 46px !important;
    line-height: 1.1 !important; /* Rapat agar terlihat modern */
    letter-spacing: -0.04em !important; /* Ciri khas Bricolage */
    text-transform: capitalize;
}

.ot-agency-title h2 span {
    color: rgba(54, 85, 255, 1) !important; /* Biru template asli */
    font-family: inherit !important;
    font-weight: 800 !important;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .ot-agency-title h2 {
        font-size: 30px !important;
    }
}

/* Update iklan -------------------------------------------------- */
.custom-promo-banner {
    position: relative;
    width: 100% !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    /* Overlay Gelap 70% di kiri agar teks putih terbaca jelas */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 100%), 
                url('../../assets/img/banner-bg-img.jpg') no-repeat center center;
    background-size: cover;
    padding: 60px 50px !important;
}

.promo-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px;
}

.promo-content h4 {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    color: #ffffff !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
}

.promo-content p {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 18px !important;
    margin-bottom: 0 !important;
}

/* Responsif untuk Tablet/HP */
@media (max-width: 991px) {
    .promo-wrapper {
        flex-direction: column !important;
        text-align: center !important;
    }
    .custom-promo-banner {
        padding: 40px 30px !important;
    }
}

/* Container utama di tengah */
.ot-header-center {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container untuk SVG dan Judul berjejer di tengah */
.ot-shape-and-text {
    display: inline-flex !important;
    align-items: center !important; /* SVG sejajar tengah dengan teks */
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.ot-shape {
    flex-shrink: 0;
}

.ot-title-text h2 {
    font-family: var(--font-primary) !important;
    
    /* HAPUS WEIGHT TAMBAHAN (Gunakan Normal) */
    font-weight: normal !important; 
    
    color: var(--ot-black) !important;
    font-size: 50px !important; /* Ukuran besar */
    line-height: 1 !important; /* Rapat khas Bricolage */
    letter-spacing: -0.04em !important;
    margin: 0 !important;
    text-align: left; /* Teksnya sendiri rata kiri di dalam flex */
}

/* Deskripsi di bawah judul, rata tengah */
.ot-feature-header p {
    font-family: var(--font-primary) !important;
    color: #666666 !important;
    font-size: 19px !important;
    max-width: 550px;
    margin: 0 auto !important; /* Tengah */
    text-align: left;
    line-height: 1.4 !important;
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
    .ot-shape-and-text {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .ot-title-text h2 {
        font-size: 36px !important;
        text-align: center;
    }
}

.ot-normal-title h2 {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    font-weight: 500 !important; /* Tanpa weight tambahan */
    color: #110F0F !important;
    font-size: 46px !important; /* Sedikit lebih kecil agar pas di col-5 */
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 15px !important;
}

.ot-normal-title p {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    color: #666666 !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
    .ot-normal-title h2 {
        font-size: 30px !important;
    }
}

/* Progress bar perbaikan ----------------------------------- */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.05); /* Lingkaran dasar halus */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Jalur Progress Biru */
.progress-wrap svg.progress-circle path {
    stroke: rgba(54, 85, 255, 1); /* Biru Tema */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* Icon Panah di Tengah */
.progress-wrap .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    fill: rgba(54, 85, 255, 1); /* Panah Hitam */
    transition: all 200ms linear;
}

.progress-wrap:hover {
    background-color: #110F0F;
}

/* --- Custom Scrollbar Styling --- */

/* 1. Untuk Chrome, Safari, dan Opera */
::-webkit-scrollbar {
    width: 10px; /* Lebar scrollbar vertikal */
    height: 10px; /* Tinggi scrollbar horizontal */
}

/* Bagian "Lintasan" Scrollbar */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Abu-abu sangat muda agar bersih */
    border-radius: 10px;
}

/* Bagian "Pegangan" Scrollbar (Thumb) */
::-webkit-scrollbar-thumb {
    background: rgba(54, 85, 255, 0.4); /* Biru transparan saat diam */
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* Memberikan efek 'floating' */
    transition: all 0.3s ease;
}

/* Efek Hover: Biru jadi pekat saat disentuh kursor */
::-webkit-scrollbar-thumb:hover {
    background: rgba(54, 85, 255, 1) !important;
}

/* 2. Untuk Firefox */
* {
    scrollbar-width: thin; /* Membuatnya ramping */
    scrollbar-color: rgba(54, 85, 255, 0.6) #f1f1f1; /* [Warna Thumb] [Warna Track] */
}

/* Menu dropbox ----------------------------------------- */
/* --- Dropdown Logic --- */

.menu-list li {
    position: relative; /* Kunci untuk posisi dropdown */
}

/* Styling Link Utama */
.menu-list li a {
    font-family: var(--font-bricolageGrotesque), sans-serif !important;
    font-weight: 500;
    color: #110F0F;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 0;
    transition: color 0.3s ease;
}

.menu-list li:hover > a {
    color: rgba(54, 85, 255, 1);
}

/* Ikon Panah */
.chevron {
    transition: transform 0.3s ease;
}
.has-dropdown:hover .chevron {
    transform: rotate(180deg);
}

/* Box Putih Dropdown */
.dropdown-box {
    position: absolute;
    top: 100%; /* Muncul tepat di bawah menu */
    left: -20px;
    width: 220px;
    background: #ffffff !important;
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.1);
    
    /* Animasi Tersembunyi */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

/* Hover: Munculkan Box */
.has-dropdown:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Item di Dalam Dropdown */
.dropdown-box li {
    width: 100%;
    list-style: none;
}

.dropdown-box li a {
    padding: 10px 25px !important;
    font-size: 15px !important;
    display: block !important;
    width: 100%;
    color: #444 !important;
    transition: all 0.3s ease !important;
}

/* Hover Item Dropdown */
.dropdown-box li a:hover {
    background-color: rgba(54, 85, 255, 0.05); /* Biru sangat muda */
    color: rgba(54, 85, 255, 1) !important;
    padding-left: 30px !important; /* Efek geser sedikit */
}

/* --- FIX PLACEHOLDER COLOR --- */
/* Menargetkan semua input dan textarea di dalam form inquiry */
.tm-contact-form-wrap input::placeholder, 
.tm-contact-form-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important; /* Putih transparan agar elegan */
    opacity: 1; /* Diperlukan untuk Firefox */
}

/* Warna teks saat user mengetik (jika belum putih) */
.tm-contact-form-wrap .form-control {
    color: #ffffff !important;
}

/* Memperbaiki warna teks pilihan default pada Select */
.tm-contact-form-wrap .form-select {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Saat opsi dipilih di dalam Select, teksnya jadi putih terang */
.tm-contact-form-wrap .form-select option {
    background: #110F0F; /* Warna background dropdown agar tidak putih silau */
    color: #fff;
}

/* --- SOCIAL MEDIA FOOTER HOVER --- */
.social-footer-wrap .social-icon-link {
    color: #999;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
}

/* Efek Hover Umum: Terangkat ke atas */
.social-footer-wrap .social-icon-link:hover {
    transform: translateY(-8px) scale(1.2);
}

/* Warna Spesifik & Glow saat Hover */

/* LinkedIn - Blue */
.social-footer-wrap .social-icon-link.linkedin:hover {
    color: #0077b5 !important;
    filter: drop-shadow(0 0 8px rgba(0, 119, 181, 0.6));
}

/* Instagram - Pink/Gradient */
.social-footer-wrap .social-icon-link.instagram:hover {
    color: #e4405f !important;
    filter: drop-shadow(0 0 8px rgba(228, 64, 95, 0.6));
}

/* WhatsApp - Green */
.social-footer-wrap .social-icon-link.whatsapp:hover {
    color: #25d366 !important;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
}

/* Efek pantulan kecil di bawah (opsional) */
.social-footer-wrap .social-icon-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.social-footer-wrap .social-icon-link:hover::after {
    transform: scaleX(1);
}

/* --- ENHANCED STAT ITEM STYLE --- */
.tm-stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(54, 85, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tm-stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--ot-blue);
    box-shadow: 0 20px 40px rgba(54, 85, 255, 0.1);
}

.tm-stat-item .stat-icon {
    font-size: 32px;
    color: var(--ot-blue);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.tm-stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
}

.tm-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--ot-black) !important;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.tm-stat-item p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin: 0;
}

/* Garis dekoratif halus di bawah stat item */
.tm-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--ot-blue);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.tm-stat-item:hover::after {
    width: 60px;
}

/* --- VISION & MISSION ENHANCEMENT --- */

.tm-vm-card {
    position: relative;
    padding: 60px 45px !important;
    border-radius: 32px !important;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.08) !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* 1. Efek Tekstur Noise (Agar tidak polos) */
.card-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Tingkat kejelasan tekstur */
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* 2. Decorative Watermark (Ikon besar di background) */
.card-watermark {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.03); /* Sangat samar */
    transform: rotate(-15deg);
    z-index: 0;
    transition: all 0.8s ease;
    pointer-events: none;
}

/* 3. Perbaikan Background (Gradient agar lebih mewah) */
.card-dark {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%) !important;
}

.card-blue {
    background: linear-gradient(145deg, rgba(54, 85, 255, 1) 0%, rgba(30, 50, 160, 1) 100%) !important;
}

/* --- HOVER ANIMATION --- */

.tm-vm-card:hover {
    transform: translateY(-15px) !important;
}

/* Watermark bergerak saat hover */
.tm-vm-card:hover .card-watermark {
    transform: rotate(0deg) scale(1.1);
    color: rgba(255, 255, 255, 0.07);
    right: 10px;
    bottom: 10px;
}

/* Glow Effect pada hover */
.card-dark:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 30px rgba(54, 85, 255, 0.15) !important;
}

.card-blue:hover {
    box-shadow: 0 40px 80px rgba(54, 85, 255, 0.25) !important;
}

/* Shine Animation */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-30deg);
    z-index: 1;
}

.tm-vm-card:hover .card-shine {
    animation: shine-sweep 1s forwards;
}

@keyframes shine-sweep {
    0% { left: -100%; }
    100% { left: 150%; }
}




/* --- PREMIUM GOLD PRODUCT CATALOG DARK THEME --- */

/* Import font Poppins untuk Judul */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

#products {
    background-color: #110F0F !important;
    position: relative;
    z-index: 1; 
}

/* Terapkan Poppins ke Judul-Judul Catalog */
.tm-eyebrow.custom-gold,
.tm-product-card-section .tm-heading,
.spice-title {
    font-family: 'Poppins', sans-serif !important;
}

/* 1. Tekstur Noise */
.catalog-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 2. Senter (Spotlight) - WARNA EMAS */
.catalog-flashlight {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; 
    z-index: 10; 
    opacity: 0;
    transition: opacity 0.5s ease;
    
    background: radial-gradient(
        circle 550px at var(--cx, 0px) var(--cy, 0px), 
        rgba(212, 175, 55, 0.15) 0%,  
        rgba(212, 175, 55, 0.03) 50%, 
        transparent 100%             
    );
}

#products:hover .catalog-flashlight {
    opacity: 1;
}

/* --- Golden Shimmer Animation --- */
@keyframes golden-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gold-glow-pulse {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1), 0 25px 50px rgba(0, 0, 0, 0.6); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.4), 0 25px 50px rgba(0, 0, 0, 0.6); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1), 0 25px 50px rgba(0, 0, 0, 0.6); }
}

/* 3. PREMIUM SPICE CARD DESIGN */
.premium-spice-card {
    max-width: 320px; /* MENGECILKAN KESELURUHAN LEBAR KARTU */
    margin: 0 auto; /* Menjaga kartu tetap di tengah kolom */
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px;
    position: relative;
    z-index: 11; 
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-spice-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
    pointer-events: none;
    z-index: 12;
}

.premium-spice-card:hover::after {
    left: 150%;
}

.premium-spice-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.9) !important; 
    animation: gold-glow-pulse 3s infinite ease-in-out;
    background: rgba(212, 175, 55, 0.03) !important;
}

/* Golden Border Shine (Kilau Emas) */
.premium-spice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 1.5px; /* Border thickness */
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        transparent 40%, 
        rgba(212, 175, 55, 0.8) 50%, 
        transparent 60%, 
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 15;
    animation: golden-shimmer 4s infinite linear;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-spice-card:hover::before {
    opacity: 1;
}

/* 4. Penanganan Gambar 2:2.2 */
.spice-img-wrap {
    width: 100%;
    aspect-ratio: 2 / 2.2; /* Rasio terbaru sesuai permintaan */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spice-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.7s ease;
}

.premium-spice-card:hover .spice-img-wrap img {
    transform: scale(1.08); 
}

.premium-spice-card:hover .spice-card-icon {
    opacity: 1;
    color: var(--ot-gold-soft);
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* 5. Konten di Bawah Gambar */
.spice-content {
    position: relative;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.spice-category {
    color: var(--ot-gold-soft); 
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.spice-title {
    color: #ffffff !important; 
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.spice-local-name {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
}

.spice-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 6. Premium Anchor Link (Detail) */
.spice-detail-btn {
    margin-top: auto; 
    display: inline-flex;
    align-items: center;
    color: var(--ot-gold) !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
    position: relative;
    width: fit-content;
}

.spice-detail-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.spice-detail-btn::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background-color: var(--ot-gold);
    transition: width 0.3s ease;
}

.spice-detail-btn:hover {
    color: var(--ot-gold-soft) !important;
}

.spice-detail-btn:hover i {
    transform: translateX(8px); 
}

.spice-detail-btn:hover::after {
    width: 100%; 
}

.spice-card-icon {
    position: absolute;
    top: 30px;
    right: 25px;
    font-size: 26px; /* Ukuran ikon proporsional */
    color: var(--ot-gold);
    opacity: 0.6; /* Sedikit transparan agar tidak mengalahkan judul utama */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

/* Eyebrow Custom Gold */
.tm-eyebrow.custom-gold {
    color: var(--ot-gold) !important;
    font-size: 18px !important; 
    margin-top: 20px !important; 
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Tombol Hover Emas untuk Bottom Button */
.btn-gold-hover .ot-blob {
    background-color: var(--ot-gold) !important;
}
.btn-gold-hover:hover .ot-content,
.btn-gold-hover:hover .ot-content i {
    color: #110F0F !important; /* Agar teks hitam/jelas saat disorot cahaya emas */
}
/* --- PREMIUM GOLD PRODUCT CATALOG DARK THEME ENDS --- */



/* --- FOOTER FLASHLIGHT V2.0 --- */

/* Background Dasar yang sangat redup */
.footer-bg-base {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../../assets/img/footer-img.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

/* Background Senter yang menyala */
.footer-flashlight {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../../assets/img/footer-img.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    
    /* Efek Senter menggunakan Masking */
    /* --x dan --y akan diupdate via JS */
    -webkit-mask-image: radial-gradient(
        circle 300px at var(--x, 0px) var(--y, 0px), 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0) 100%
    );
    mask-image: radial-gradient(
        circle 300px at var(--x, 0px) var(--y, 0px), 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0) 100%
    );
}

/* Munculkan senter saat mouse masuk ke footer */
footer#contact:hover .footer-flashlight {
    opacity: 0.4; /* Seberapa terang senternya */
}

/* --- TAMPILAN MOBILE (JALUR DAMAI) --- */
@media (max-width: 991px) {
    /* 1. MENTOK KIRI KANAN UNTUK LOGO & HAMBURGER */
    .header-area .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Mencegah menu di tengah mendesak logo & hamburger */
    .menu-wrap {
        position: static; /* Biarkan template yang atur saat active */
    }

    /* 2. STYLING HAMBURGER */
    .mobile-menu-btn i {
        color: #ffffff !important;
        transition: 0.3s ease;
    }
    
    .mobile-menu-btn:hover i {
        color: #FFBF00 !important; /* Efek Emas */
    }

    /* 3. SUNTIK TEMA GELAP KE MENU POPUP/SIDEBAR BAWAAN */
    /* Kita tembak area background-nya agar berwarna hitam pekat */
    .main-menu, 
    .menu-wrap.active, 
    .mobile-menu-sidebar /* (Nama class umum di template) */ {
        background-color: #110F0F !important;
    }

    /* Bagian header di dalam menu HP */
    .mobile-logo-area {
        background-color: #110F0F !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* 4. WARNA TEKS MENU */
    .menu-list li a {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important; /* Garis pemisah tipis */
    }

    .menu-list li a:hover {
        color: #FFBF00 !important;
        background-color: rgba(255, 255, 255, 0.03) !important;
    }

    /* Warna ikon chevron/dropdown */
    .menu-list li a svg {
        color: rgba(255, 255, 255, 0.5) !important;
    }

    /* Sub-menu Dropdown */
    .dropdown-box {
        background-color: #1a1a1a !important; /* Sedikit lebih terang dari hitam pekat */
    }
    
    .dropdown-box li a {
        color: rgba(255, 255, 255, 0.8) !important;
        border-bottom: none !important;
    }
}

/* --- RESPONSIVE BANNER FIX --- */
@media (max-width: 767px) {
    /* 1. Memanjangkan Parent Container */
    .banner-section {
        min-height: 850px !important; /* Memaksa container lebih tinggi di HP */
        display: flex;
        align-items: center;
        margin-bottom: 60px !important; /* Menyesuaikan margin bawah agar tidak terlalu jauh */
    }

    /* 2. Memperkecil Ukuran Title (H1) */
    .banner-content h1 {
        font-size: 40px !important; /* Dari 64px diperkecil agar tidak 'memakan' layar */
        line-height: 1 !important;
        margin-bottom: 15px !important;
    }

    /* 3. Menyesuaikan Padding Wrapper Content */
    .banner-content-wrap {
        padding-top: 80px !important;
        padding-bottom: 50px !important;
    }

    /* 4. Menyesuaikan Ukuran Paragraf (Optional but Recommended) */
    .tm-hero-sub {
        font-size: 15px !important;
        padding: 12px 18px !important;
        margin-bottom: 30px !important;
    }

    /* 5. Mengatur Slider Image agar tetap mengcover area yang memanjang */
    .banner-img-area, 
    .banner-img-area img {
        height: 100% !important;
        object-fit: cover;
    }
}

/* --- RESPONSIVE OPERATIONAL EXCELLENCE FIX --- */
@media (max-width: 767px) {
    /* 1. Kecilkan Judul agar tidak terlalu memakan tempat */
    .contact-section .section-title h2 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    /* 2. Reset Wrapper agar elemen di dalamnya bisa berurutan vertikal */
    .feature-img-wrapper {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        padding: 0 !important;
    }

    /* 3. Matikan posisi melayang pada teks */
    .feature-img-wrapper .top-text,
    .feature-img-wrapper .bottom-text {
        position: static !important; /* Mematikan absolute */
        width: 100% !important;
        margin: 15px 0 !important; /* Memberi jarak antar elemen */
        padding: 15px !important;
        border-radius: 10px !important;
        background: rgba(54, 85, 255, 0.03) !important;
        border: 1px solid rgba(54, 85, 255, 0.1) !important;
        text-align: left !important;
    }

    /* 4. Atur area gambar agar tidak menumpuk liar */
    .feature-img-area {
        position: relative !important;
        height: 300px !important; /* Beri tinggi tetap agar gambar terlihat rapi */
        margin: 20px 0 !important;
    }

    /* 5. Atur posisi gambar 1 dan 2 agar tetap estetik tapi tidak tumpang tindih teks */
    .feature-img-area .feature-img1 {
        position: relative !important;
        width: 85% !important;
        z-index: 1 !important;
    }

    /* 6. Tambahkan spasi antar kolom agar tidak menempel dengan list di bawahnya */
    .contact-section .row.gy-5 {
        gap: 40px !important;
    }
}

.company-logo a span{
    margin-left: 10px;
    color:white;
    font-family: var(--font-primary);
}

/* ======================================== */
/* 🎨 PRODUCT DETAIL PAGE STYLES */
/* ======================================== */

.product-detail-section {
    padding-top: 150px;
    padding-bottom: 120px;
    background-color: #110F0F !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-gallery {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
    border: 2px solid var(--ot-gold); /* Modern Gold Border */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-gallery:hover {
    border-color: var(--ot-gold-soft);
    box-shadow: 0 40px 90px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Gold Shine Effect */
.product-gallery::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(212, 175, 55, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    pointer-events: none;
}

.product-gallery:hover::after {
    left: 150%;
}

.product-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-gallery:hover img {
    transform: scale(1.05);
}

.product-info-wrap {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .product-info-wrap {
        padding-left: 0;
        margin-top: 50px;
    }
}

.product-detail-title {
    font-size: 52px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.badge-tag {
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--ot-blue);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(54, 85, 255, 0.2);
    transition: all 0.3s ease;
}

.badge-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(54, 85, 255, 0.3);
}

.product-short-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.product-short-desc strong {
    color: var(--ot-gold-soft);
}

.btn-order-whatsapp {
    background: linear-gradient(135deg, #FF4B2B 0%, #FF416C 100%);
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(255, 75, 43, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.btn-order-whatsapp:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 75, 43, 0.35);
}

.share-section {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
}

.share-icons {
    display: flex;
    gap: 15px;
}

.share-icons .share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    background: var(--ot-blue);
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
}

/* TABS SYSTEM */
.product-tabs-wrapper {
    margin-top: 100px;
}

.tabs-nav {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.tab-link {
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #94a3b8;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-link:hover {
    color: #ffffff;
}

.tab-link.active {
    color: #FF4B2B;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF4B2B;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-panel p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.info-list {
    margin-bottom: 30px;
}

.info-list h5 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.info-list ul li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-list ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF4B2B;
}

/* RELATED PRODUCTS */
.related-section {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    margin-bottom: 50px !important;
    color: #ffffff !important;
}

/* REFINED RELATED CARD */
.related-product-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--ot-blue) !important;
}

.related-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.related-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-product-card:hover .related-img-wrap img {
    transform: scale(1.1);
}

.related-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.related-product-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    font-family: var(--font-primary) !important;
}

.btn-detail-small {
    padding: 10px 25px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--ot-blue);
    color: var(--ot-blue) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: center;
    text-decoration: none;
}

.related-product-card:hover .btn-detail-small {
    background: var(--ot-blue);
    color: #ffffff !important;
    box-shadow: 0 8px 15px rgba(54, 85, 255, 0.25);
}