/* Custom CSS for WebSalesPro */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: #16a34a;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(248, 249, 250, 0.95) 100%);
}

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 50%, #eff6ff 100%);
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-shape {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50% 20% 50% 30%;
    transform: rotate(-15deg);
    z-index: 2;
}

.hero-shape-2 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 30%;
    height: 30%;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 30% 70% 70% 30%;
    transform: rotate(45deg);
    z-index: 2;
}

.hero-shape-3 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 20%;
    height: 20%;
    background: rgba(96, 165, 250, 0.06);
    border-radius: 60% 40% 30% 70%;
    transform: rotate(75deg);
    z-index: 2;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-card:hover {
    transform: rotate(0deg);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    border-radius: 1rem;
    transform: rotate(-2deg);
    z-index: -1;
}

.hero-card-content {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    animation: bounce 2s infinite;
}

.floating-card-1 {
    top: -1rem;
    left: -1rem;
}

.floating-card-2 {
    bottom: -1rem;
    right: -1rem;
    animation: pulse 2s infinite;
}

/* Custom Badge Colors */
.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 24px;
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 92px;
    }
}

/* Navigation */
.navbar-brand {
    font-size: 1.8rem !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #495057 !important;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 50px !important;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.box-shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}

.whatsapp-btn:hover {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
}

/* Pricing Cards */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

.pricing-header {
    position: relative;
    z-index: 2;
}

.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    /*border: 1px solid var(--primary-color) !important;*/
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular::before {
    content: "PILIHAN TERBAIK";
    position: absolute;
    top: 0;
    right: 0;
    background: #0d6efd;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-bottom-left-radius: 8px;
    z-index: 1;
}

.card-header-custom {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.pricing-card.popular .card-header-custom {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.pricing-card.popular .plan-icon {
    background: rgba(13, 110, 253, 0.2);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.price-display {
    margin: 1.5rem 0;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 500;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
    margin: 0.5rem 0;
    position: relative;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
}

.pricing-period {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.savings-text {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-section {
    padding: 2rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    /*padding: 0.5rem 0;*/
}

.feature-icon {
    color: #28a745;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.feature-text {
    color: #495057;
    font-size: 0.9rem;
}

.card-footer-custom {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.btn-pricing {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .pricing-card.popular {
        transform: scale(1);
        margin-bottom: 1rem;
    }

    .pricing-card.popular:hover {
        transform: translateY(-12px);
    }

    .pricing-card.popular::before {
        right: -35px;
        font-size: 0.7rem;
        padding: 5px 25px;
    }
}

/* end Pricing Cards */

/* Testimonial Styling */
.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
}

/* Footer Styling */
footer {
    background: #111827;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #374151;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(13, 110, 253, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Footer Hover Links */
.hover-link {
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: var(--primary-color) !important;
}

/* Additional Responsive Adjustments */
@media (max-width: 576px) {
    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular::before {
        font-size: 0.65rem;
        padding: 3px 30px;
        /*top: 15px;*/
        right: -30px;
    }
}

/* Smooth transitions for all interactive elements */
a,
button,
.btn,
.card {
    transition: all 0.3s ease;
}

/* Portofolio Page */

/* Portofolio Modal */
.portofolio-modal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    scroll-behavior: smooth;
}

.portofolio-modal .modal-header {
    /*background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);*/
    color: white;
    border-bottom: none;
    /*padding: 2rem;*/
}

.portofolio-modal .modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.portofolio-modal .modal-footer {
    border-top: none;
}

.portofolio-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portofolio-hero img {
    height: 100%;
    object-fit: cover;
}

.portofolio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.portofolio-content {
    scroll-behavior: smooth;
    padding: 2rem;
}

.portofolio-content p {
    margin-bottom: .3rem;
}

.portofolio-modal .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    /*margin: 1.5rem 0;*/
}

.portofolio-modal .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--bs-modal-color);
    text-decoration: unset;
}

.portofolio-modal .feature-item:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.portofolio-modal .feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: white;
    flex-shrink: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    /*background: rgba(255, 255, 255, 0.2);*/
    border: none;
    /*color: white;*/
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.portofolio-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: sticky;
    bottom: 0;
    padding: 20px 0;
    background: #fff;
}

@media (max-width: 768px) {
    .portofolio-actions {
        flex-direction: column;
    }

    .portofolio-actions .btn {
        width: 100%;
    }
}

/* end Portofolio Modal */

/* Section article */
.articles-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.articles-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

.article-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: none;
    position: relative;
}

.article-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.article-date {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.article-date i {
    margin-right: 0.4rem;
    color: var(--primary-color);
}

.article-category {
    display: flex;
    align-items: center;
}

.article-category i {
    margin-right: 0.4rem;
    color: var(--accent-color);
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.article-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

.articles-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-view-all {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-view-all:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

/* Animasi untuk artikel */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Perbaikan margin untuk mobile */
@media (max-width: 768px) {
    .article-card {
        margin-bottom: 2rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .row>.col-lg-4,
    .row>.col-md-6 {
        margin-bottom: 2rem;
    }

    .row>.col-lg-4:last-child,
    .row>.col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* CSS Only untuk animasi hover dan read more */
.article-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.read-more {
    transition: color 0.3s ease, transform 0.3s ease;
}

.btn-view-all {
    transition: all 0.3s ease;
}

/* end section article */

/* Section FAQ */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.3), transparent);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-left: 4px solid var(--primary-color);
}

.faq-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 15px;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(13, 110, 253, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-answer ul {
    color: var(--secondary-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-category {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover,
.faq-category.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-support {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.faq-support::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.support-text {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-support {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-support {
        padding: 2rem;
    }

    .support-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-support {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Animasi untuk FAQ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeIn 0.5s ease forwards;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.7s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.8s;
}

.faq-item:nth-child(9) {
    animation-delay: 0.9s;
}

.faq-item:nth-child(10) {
    animation-delay: 1s;
}

/* end Section FAQ */

/* limited-promo */
.limited-promo::before {
    content: "PROMO TERBATAS";
    position: absolute;
    top: 0;
    right: 0;
    background: #0d6efd;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-bottom-left-radius: 8px;
    z-index: 1;
}