/* Backdrop dengan efek blur agar fokus ke modal */
.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-premium .modal-content {
    border: none;
    border-radius: 16px;
    /* Gradient halus gelap untuk kesan mewah */
    background: linear-gradient(145deg, var(--title-color) 0%, #1e293b 100%);
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Dekorasi aksen emas di bagian atas */
.modal-premium .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c5a059 0%, #eaddb6 50%, #c5a059 100%);
}

/* Tombol Close yang lebih estetik */
.modal-premium .btn-close-white-custom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    font-size: 1.2rem;
    z-index: 10;
}

.modal-premium .btn-close-white-custom:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-premium-body {
    padding: 3rem 2rem;
    text-align: center;
}

.welcome-logo {
    width: 160px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    /* Jika ada font serif, lebih bagus */
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff 0%, #eaddb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-text {
    color: #94a3b8;
    /* Slate gray text agar tidak terlalu kontras menyakitkan mata */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Tombol CTA Premium */
.btn-premium {
    background: linear-gradient(90deg, #c5a059 0%, var(--theme-color) 100%);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
    color: #fff;
}

/* Efek hover bayangan halus */
.hover-shadow-lg {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-shadow-lg:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: transparent !important;
}

.widget_categories .active a {
    background-color: var(--theme-color);
    color: white;
}

.widget_categories .active .fa-light {
    color: white;
}

.faq-text p {
    color: white;
}

.tagcloud .active {
    background-color: var(--theme-color);
    color: white;
}