/* .cb-cursor:before{
	background: #0055FF;
} */
.app-feature-card {
  padding-top: 24px;
  padding-bottom: 0px;
}
.app-feature-img {
  height: 300px;
  overflow: hidden;
}
.svg-custom {
  margin-top: -3px;
}

/* CSS untuk gambar klien - grayscale, transparansi background, dan efek */
.list-inline img {
  filter: grayscale(100%) opacity(0.7) contrast(1.2) brightness(1.1);
  transition: all 0.3s ease;
  background: transparent;
  mix-blend-mode: multiply; /* Menghilangkan background putih */
}

/* Efek hover untuk gambar klien */
.list-inline img:hover {
  filter: grayscale(0%) opacity(1) contrast(1) brightness(1);
  transform: scale(1.05);
  mix-blend-mode: normal;
}

/* Alternative: Jika ingin lebih spesifik untuk gambar klien saja */
.list-inline-item img {
  filter: grayscale(100%) opacity(0.6) contrast(1.3) brightness(1.2);
  transition: all 0.3s ease;
  background: transparent;
  mix-blend-mode: multiply; /* Efek untuk menghilangkan background putih */
}

.list-inline-item img:hover {
  filter: grayscale(0%) opacity(1) contrast(1) brightness(1);
  transform: scale(1.1);
  mix-blend-mode: normal;
}

/* Marquee Container */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  background: transparent;
}

.marquee-track {
  display: flex !important;
  width: max-content;
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-track li {
  flex-shrink: 0;
}

.marquee-container:active {
  cursor: grabbing;
}

.marquee-container.grabbing {
  cursor: grabbing;
}

.marquee-paused {
  animation-play-state: paused !important;
}

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

/* CSS Advanced untuk menghilangkan background putih pada gambar */
.marquee-track img {
  filter: grayscale(100%) contrast(1.2);
  -webkit-mask: radial-gradient(circle, black 60%, transparent 100%);
  mask: radial-gradient(circle, black 60%, transparent 100%);
}

.marquee-track img:hover {
  filter: grayscale(0%) opacity(1) contrast(1) brightness(1);
  mix-blend-mode: normal;
  transform: scale(1.05);
}

.navbar.navbar-sticky {
  background: rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.5px);
  -webkit-backdrop-filter: blur(9.5px);
}

/* START WhatsApp Chat Widget */
.wa-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 30px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.wa-chat-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
    background-color: rgba(64, 195, 81, 1);
    background-blend-mode: overlay;
}

.wa-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, rgba(64, 195, 81, 1) 0%, rgba(37, 211, 102, 1) 100%);
}

/* Overlay terpisah seperti Bootstrap modal */
.wa-chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.wa-chat-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.wa-chat-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.27);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.wa-chat-modal {
    position: absolute;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: calc(100vw - 60px);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-chat-overlay.show .wa-chat-modal {
    transform: translateY(0) scale(1);
}

.wa-chat-content {
    background: rgba(255, 255, 255, 0.27);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.wa-chat-header {
    background: #26C281;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wa-chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-chat-avatar svg {
    width: 30px;
    height: 30px;
}

.wa-chat-info {
    flex: 1;
    color: white;
}

.wa-chat-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-status-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    animation: pulse-white 2s infinite;
}

.wa-status-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    animation: pulse-ring-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-ring-white {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.wa-chat-status {
    display: flex;
    align-items: center;
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-chat-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wa-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.wa-chat-close svg {
    width: 18px;
    height: 18px;
}

.wa-chat-body {
    padding: 20px;
    background-image: url('../images/background-whatsapp.jpg');
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-size: cover;
}

.wa-chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wa-chat-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wa-chat-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-chat-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.wa-chat-footer {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wa-chat-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(64, 195, 81, 1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.wa-chat-send-btn:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(64, 195, 81, 1) 0%, rgba(37, 211, 102, 1) 100%);
}

.wa-icon-small {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wa-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-chat-modal {
        bottom: 90px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
    }
    
    .wa-chat-btn {
        width: 56px;
        height: 56px;
    }
}
/* END WhatsApp Chat Widget */