/* CSS Kustom untuk Tampilan Futuristik */
body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #4A235A, #3B82F6);
    color: white;
}
.bg-gradient-purple-green {
    background: linear-gradient(135deg, #4A235A, #16A34A);
}
.hero-section {
    background: linear-gradient(135deg, #6C22A6, #22C55E);
}
.footer-section2 {
    background: linear-gradient(135deg, #a6226f, #4921d9);
}
.footer-section{
    background: linear-gradient(135deg, #9921c8, #0c46a3);
}
.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}
.w3-table-all {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}
.w3-table-all tr, .w3-table-all th, .w3-table-all td {
    border-color: rgba(255, 255, 255, 0.2);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}
.section-separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    margin: 4rem 0;
}
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.star-rating {
    color: gold;
}
/*.w3-top {
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.w3-bar {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}*/
.faq-item {
    cursor: pointer;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}
.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.faq-question {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding-top: 10px;
    display: none;
    line-height: 1.6;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* CSS untuk membuat video responsif dan styling placeholder */
.video-container{position:relative;padding-top:50%;height:0;overflow:hidden}
.video-container iframe{position:absolute;top:0;left:0;width:100%;height:100%}
.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*.play-button{background:rgba(0,0,0,0.6);color:#fff;border-radius:50%;padding:20px;cursor:pointer;transition:background 0.3s ease}*/