.notif-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    width: 350px;
    font-family: 'Segoe UI', sans-serif;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    gap: 16px;
    border: 1px solid #f0f0f0;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.notif-card.show {
    transform: scale(1);
    opacity: 1;
}

.notif-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.notif-content {
    flex: 1;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 10px !important;
    margin-bottom: 6px;
}

.notif-header .notif-icon {
    color: #FA5252;
}

.notif-footer {
    margin-top: 8px;
    font-size: 10px !important;
    color: #777;
}

.verified {
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified .check {
    color: #0D99FF;
}

.notif-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.notif-time {
    font-size: 10px !important;
    color: #888;
}

.notif-img {
    background: #b2ebff;
    padding: 8px;
    border-radius: 10px !important;
}

.notif-img img {
    width: 40px;
    height: 40px;
}

#notifName{
    font-size: 14px !important;
}

.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-float img {
    width: 32px;
    height: 32px;
}
.wa-float:hover {
    background-color: #1ebea5;
}

.trusted-by {
    text-align: center;
    padding: 60px 20px;
    background: #f9fbfc;
}

.trusted-by h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 10px;
}

.trusted-by .subtitle {
    color: #475569;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #0f172a;
}

.trust-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}
    
.countdown-section {
    background: linear-gradient(135deg, #2A8BEA, #48CAED);
    color: white;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}
.countdown-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.countdown-section .price-box {
    margin: 20px 0;
}
.old-price {
    text-decoration: line-through;
    color: #ddd;
    font-size: 2rem;
    margin-right: 10px;
}
.new-price {
    color: #48CAED;
    font-size: 3rem;
    font-weight: bold;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}
.countdown-timer div {
    background: rgba(255, 255, 255, 1);
    padding: 15px;
    border-radius: 8px;
    min-width: 70px;
}
.countdown-timer span {
    font-size: 2rem;
    display: block;
    color: #48CAED;
}
.countdown-timer small {
    color: #333;
}
.btn-cta {
    background: #ebebeb;
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
}
.btn-cta:hover {
    background: #fde047;
}




.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ef4444;
    color: white;
    border: none;
    font-size: 12px;
    padding: 3px 8px;
    /*  border-radius: 50%;*/
    cursor: pointer;
    /*  box-shadow: 0 2px 10px rgba(0,0,0,0.3);*/
    z-index: 99999999999999;
}




.floating-play-button {
    background-color: rgba(239, 68, 68, 0.9); /* warna merah semi-transparan */
    color: white;
    border: none;
    font-size: 40px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    position: absolute;
    /*  top: 220px;
    left: 265px;*/
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 10px 4px #888888;
}

.floating-play-button:hover {
    transform: scale(1.1);
    background-color: rgba(239, 68, 68, 1);
}

.inventara-footer {
    background-color: #F6F9FE; /* Warna gelap netral */
    color: white;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.inventara-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    width: 160px;
    margin-bottom: 10px;
}

.inventara-footer-brand p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.inventara-footer-contact p {
    margin: 6px 0;
    font-size: 14px;
    color: #fff;
}

.inventara-footer-contact a {
    text-decoration: none;
    color: #FFF !important; /* Biru muda dari logo */
    font-weight: 500;
}

.inventara-footer-contact a:hover {
    color: #f59e0b; /* Orange dari logo */
}

.inventara-footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 45px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}

@media (min-width: 768px) {
  .inventara-footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .inventara-footer-brand,
  .inventara-footer-contact {
    flex: 1;
  }

  .inventara-footer-brand {
    text-align: left;
  }

  .inventara-footer-contact {
    text-align: right;
  }
}

/* Fullscreen overlay */
#loadingPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Hidden state */
#loadingPopup.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Spinner */
.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    text-align: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}