:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-color: #2d3436;
    --light-color: #f9f9f9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f6fa;
    color: #333;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/kazudou.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
    color: white;
    padding: 250px 0;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
    -webkit-text-stroke: 1px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1.2s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.3);
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    animation: fadeInUp 1.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    margin: 0 5px 10px;
}

.hero-btn-payment {
    background: linear-gradient(135deg, #ff9f43, #ff7e5f);
}

.hero-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    color: white;
}

.hero-buttons {
    margin-top: 30px;
    animation: fadeInUp 1.4s ease;
}

.hero-image-container {
    max-width: 100%;
    margin: 30px auto 0;
    text-align: center;
    overflow: hidden;
}

.hero-image-container img {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1.6s ease;
    transition: transform 0.5s ease;
}

.hero-image-container img:hover {
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(162, 155, 254, 0.05));
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1.3rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.category-header i {
    font-size: 1.4rem;
    margin-right: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.category-card:hover .category-header i {
    transform: scale(1.2);
}

.category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.category-card:hover .category-header::after {
    opacity: 1;
}

.category-body {
    padding: 22px;
    position: relative;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: rgba(108, 92, 231, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.price-tag {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.price-item:hover .price-tag {
    transform: scale(1.05);
    color: #5a48ea;
}

/* Styling khusus untuk setiap jenis joki */
.joki-story .category-header {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.joki-rawat-akun .category-header {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.joki-explore .category-header {
    background: linear-gradient(135deg, #e84393, #fd79a8);
}

.joki-material .category-header {
    background: linear-gradient(135deg, #e17055, #fab1a0);
}

.joki-event .category-header {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.joki-culus .category-header {
    background: linear-gradient(135deg, #6c5ce7, #e84393);
}

/* Badge untuk spesial item */
.special-item {
    position: relative;
}

.special-item::after {
    content: 'Favorit';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #e84393, #fd79a8);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    transform: translate(0, -50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.best-value {
    position: relative;
}

.best-value::after {
    content: 'Best Value';
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    transform: translate(0, -50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Animasi tambahan untuk card */
@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    50% {
        box-shadow: 0 5px 20px rgba(108, 92, 231, 0.2);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
}

.category-card.featured {
    animation: pulse 2s infinite;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

/* Tooltip harga */
.price-info {
    position: relative;
    cursor: help;
}

.price-info::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: #2d3436;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.price-info::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%) rotate(45deg) scale(0.8);
    width: 8px;
    height: 8px;
    background-color: #2d3436;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
}

.price-info:hover::before,
.price-info:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.price-info:hover::after {
    transform: translateX(-50%) rotate(45deg) scale(1);
}

/* Icon untuk item di kategori */
.price-item i.item-icon {
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.price-item:hover i.item-icon {
    opacity: 1;
    transform: rotate(10deg);
}

/* Card header icon glowing effect */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.5);
    }
    100% {
        text-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
}

.category-card:hover .category-header i {
    animation: glow 2s infinite;
}

/* Efek clip path untuk card */
.category-card {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.4s ease;
}

.category-card:hover {
    clip-path: polygon(0 3%, 97% 0, 100% 97%, 3% 100%);
}

.payment-methods {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.payment-icon {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--dark-color);
}

.contact-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 15px 0;
}

.gallery-item {
    min-width: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    text-align: center;
}

.payment-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.1);
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    margin: 10px;
}

.payment-method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-number {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Tambahan untuk responsivitas yang lebih baik */
@media (max-width: 991px) {
    .hero-section {
        padding: 150px 0;
        background-size: cover; /* Ganti dari contain ke cover untuk tampilan yang lebih baik di tablet */
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 25px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .payment-method-item {
        min-width: 160px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0;
        background-size: cover;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        -webkit-text-stroke: 0.5px rgba(0,0,0,0.3);
    }
    
    .hero-content p {
        font-size: 1rem;
        -webkit-text-stroke: 0;
    }
    
    .hero-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        display: inline-block;
        margin: 5px 3px;
    }

    .category-header {
        font-size: 1.1rem;
        padding: 12px 15px;
    }

    .price-item {
        font-size: 0.9rem;
    }

    .image-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-item {
        min-width: 85px;
        max-width: 30%;
    }

    .gallery-item img {
        height: 85px;
    }

    .gallery-caption {
        font-size: 0.7rem;
        padding: 3px 5px;
    }

    .payment-logo {
        width: 70px;
        height: 70px;
    }

    .payment-method-item {
        min-width: 130px;
        padding: 10px;
    }

    .payment-number {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin: 3px 2px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 80%;
        margin-bottom: 8px;
        text-align: center;
    }

    .category-header {
        font-size: 1rem;
        padding: 10px;
    }

    .category-body {
        padding: 12px;
    }

    .price-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .payment-method-item {
        min-width: 110px;
    }

    .gallery-item {
        min-width: 75px;
    }

    .gallery-item img {
        height: 75px;
    }
}

/* Animasi tambahan */
.navbar-brand, .nav-link {
    transition: transform 0.3s ease;
}

.navbar-brand:hover, .nav-link:hover {
    transform: translateY(-2px);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image lazy loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-loaded {
    opacity: 1;
}

/* Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.95), rgba(162, 155, 254, 0.95));
    backdrop-filter: blur(5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.back-to-top.show {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Improve Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

/* Copy button style */
.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tooltip for copy button */
.copy-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: #2d3436;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.copy-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -5px;
    transform: translateX(-50%) rotate(45deg) scale(0.8);
    width: 8px;
    height: 8px;
    background-color: #2d3436;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9;
    pointer-events: none;
}

.copy-btn:hover::before,
.copy-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.copy-btn:hover::after {
    transform: translateX(-50%) rotate(45deg) scale(1);
}

/* Copy animation */
@keyframes copyAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.copy-animation {
    animation: copyAnimation 0.5s ease;
}

/* Success toast notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background-color: #2ecc71;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification i {
    margin-right: 8px;
}

/* Styling untuk input yang tersembunyi */
.hidden-copy-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* FAQ Section Styling - Enhanced */
.faq-section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(to bottom right, rgba(108, 92, 231, 0.03), rgba(162, 155, 254, 0.03));
}

.faq-section::before {
    content: '?';
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 250px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: rgba(108, 92, 231, 0.03);
    z-index: 0;
    line-height: 1;
}

.faq-section h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.6rem;
    z-index: 1;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.faq-section h3 i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.7rem;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(0);
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    background-color: #f8f9fa;
    border-radius: 12px;
}

.accordion-button {
    padding: 18px 25px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--dark-color);
    background-color: #f8f9fa;
    box-shadow: none;
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(162, 155, 254, 0.05));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-button:hover::before,
.accordion-button:not(.collapsed)::before {
    transform: scaleX(1);
    transform-origin: left;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 92, 231, 0.1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c5ce7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 20px 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    background-color: white;
    position: relative;
    border-top: 1px solid rgba(108, 92, 231, 0.05);
}

/* Animation for accordion */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    max-height: 500px;
}

/* FAQ icon styling */
.faq-icon {
    font-size: 1.3rem;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    display: inline-block;
}

.accordion-button:not(.collapsed) .faq-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Highlight text in FAQ answer */
.faq-highlight {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.faq-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 6px;
    background-color: rgba(108, 92, 231, 0.2);
    z-index: -1;
    border-radius: 3px;
}

.faq-section-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(162, 155, 254, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(253, 121, 168, 0.03) 0%, transparent 30%);
    z-index: 0;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-section::before {
        font-size: 150px;
        right: -10px;
        bottom: -20px;
    }
    
    .accordion-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .faq-icon {
        font-size: 1.1rem;
        margin-right: 10px;
    }
}

/* FAQ animation effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    animation: fadeInUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
}

.accordion-item:nth-child(1) {
    animation-delay: 0.1s;
}

.accordion-item:nth-child(2) {
    animation-delay: 0.2s;
}

.accordion-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 3px 15px rgba(37, 211, 102, 0.3);
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -45px;
    right: 0;
    background-color: #2d3436;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    transform: translateY(10px);
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 23px;
    width: 10px;
    height: 10px;
    background-color: #2d3436;
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover::before,
.floating-whatsapp:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Promo Tag */
.promo-tag {
    position: absolute;
    top: 20px;
    right: -8px;
    background: linear-gradient(135deg, #ff9f43, #ff7e5f);
    color: white;
    padding: 5px 12px;
    border-radius: 50px 0 0 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(255, 159, 67, 0.3);
}

.promo-tag::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 8px;
    height: 8px;
    background-color: #e67e22;
    border-radius: 0 0 8px 0;
}

/* Pulse animation for promo */
@keyframes promoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 67, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 159, 67, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 67, 0);
    }
}

.promo-tag {
    animation: promoPulse 2s infinite;
}

/* Testimonial Section */
.testimonial-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 150px;
    font-family: "Georgia", serif;
    color: rgba(108, 92, 231, 0.1);
    z-index: 0;
}

.testimonial-section h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    z-index: 1;
}

.testimonial-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.testimonial-quote {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
    margin: 0;
}

.testimonial-role {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

.testimonial-rating {
    color: #f39c12;
    font-size: 0.9rem;
    margin-top: 3px;
}

.testimonial-game {
    font-size: 0.8rem;
    color: var(--primary-color);
    background-color: rgba(108, 92, 231, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

/* Carousel untuk testimonial */
.testimonial-carousel {
    position: relative;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c5ce7'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c5ce7'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .testimonial-section::before {
        font-size: 100px;
        top: -5px;
        right: 20px;
    }
}

/* Animation for testimonial */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    animation: fadeInRight 0.5s ease forwards;
}

/* Special styling for Joki Rawat Akun */
.joki-rawat-akun {
    position: relative;
    overflow: hidden;
}

.joki-rawat-akun::before {
    content: none;
}

.joki-rawat-akun:hover::before {
    opacity: 0;
}

.joki-rawat-akun .category-header {
    position: relative;
    overflow: hidden;
}

.joki-rawat-akun .category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.joki-rawat-akun:hover .category-header::after {
    opacity: 1;
}

.included-features {
    background: linear-gradient(to right, rgba(108, 92, 231, 0.05), rgba(162, 155, 254, 0.05));
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border-left: 3px solid #6c5ce7;
}

.included-features-title {
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.included-features-title i {
    margin-right: 8px;
    color: #6c5ce7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: #555;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: #6c5ce7;
    font-size: 0.85rem;
}

/* Animated highlight for "best value" */
@keyframes bestValuePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 92, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

.joki-rawat-akun .best-value {
    animation: bestValuePulse 2s infinite;
    background-color: rgba(108, 92, 231, 0.05);
    border-radius: 8px;
}

.joki-rawat-akun .price-tag {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Fix untuk warna pada saat klik */
.joki-rawat-akun .price-item:active .price-tag,
.joki-rawat-akun .price-item:focus .price-tag {
    transform: scale(1.05);
    color: #5a48ea;
}

.joki-rawat-akun .price-item:active,
.joki-rawat-akun .price-item:focus {
    background-color: rgba(108, 92, 231, 0.05) !important;
}

/* Ubah hover efek pada price-item */
.joki-rawat-akun .price-item:hover {
    background-color: rgba(108, 92, 231, 0.05) !important;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.joki-rawat-akun .price-item:hover .price-tag {
    transform: scale(1.05);
    color: #5a48ea;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .included-features {
        padding: 10px 12px;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        padding: 5px 0 5px 22px;
    }
    
    .feature-list li::before {
        font-size: 0.8rem;
    }
}

/* Special styling for Joki Mancing */
.joki-mancing {
    position: relative;
    overflow: hidden;
}

.joki-mancing::before {
    content: none;
}

.joki-mancing:hover::before {
    opacity: 0;
}

.joki-mancing .category-header {
    background: linear-gradient(135deg, #0984e3, #74b9ff);
    position: relative;
    overflow: hidden;
}

.joki-mancing .category-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.joki-mancing:hover .category-header::after {
    opacity: 1;
}

.joki-mancing .price-tag {
    font-weight: 600;
    color: #0984e3;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Fix untuk warna pada saat klik */
.joki-mancing .price-item:active .price-tag,
.joki-mancing .price-item:focus .price-tag {
    transform: scale(1.05);
    color: #0069d9;
}

.joki-mancing .price-item:active,
.joki-mancing .price-item:focus {
    background-color: rgba(9, 132, 227, 0.05) !important;
}

/* Ubah hover efek pada price-item */
.joki-mancing .price-item:hover {
    background-color: rgba(9, 132, 227, 0.05) !important;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.joki-mancing .price-item:hover .price-tag {
    transform: scale(1.05);
    color: #0069d9;
}

.joki-mancing .included-features {
    background: linear-gradient(to right, rgba(9, 132, 227, 0.05), rgba(116, 185, 255, 0.05));
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    border-left: 3px solid #0984e3;
}

.joki-mancing .included-features-title {
    font-weight: 600;
    color: #2d3436;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.joki-mancing .included-features-title i {
    margin-right: 8px;
    color: #0984e3;
} 