/* Help Center Premium Styling */

.page-header {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, rgba(133, 65, 212, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(133, 65, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #8541d4 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.about-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, #8541d4 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-card p {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Premium FAQ Accordion Styling */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(133, 65, 212, 0.1);
}

.accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(133, 65, 212, 0.15);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(133, 65, 212, 0.3);
    box-shadow: 0 8px 25px rgba(133, 65, 212, 0.15);
}

.accordion-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%) !important;
    color: #212529 !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
}

.accordion-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%) !important;
    color: #212529 !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(133, 65, 212, 0.12) 0%, rgba(25, 118, 210, 0.1) 100%) !important;
    color: #212529 !important;
}

.accordion-button:focus {
    color: #212529 !important;
    box-shadow: none !important;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-header .accordion-button {
    text-decoration: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238541d4'%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");
    filter: drop-shadow(0 0 2px rgba(133, 65, 212, 0.5));
}

.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='%231976d2'%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");
}

.accordion-button i {
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(133, 65, 212, 0.5));
    flex-shrink: 0;
    color: #8541d4 !important;
}

.accordion-body {
    background: rgba(22, 21, 29, 0.3);
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(133, 65, 212, 0.1);
}

.accordion-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.accordion-body ul,
.accordion-body ol {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.accordion-body strong {
    color: #fff;
    font-weight: 600;
}

.accordion-body a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-body a:hover {
    color: #8541d4;
    text-shadow: 0 0 8px rgba(133, 65, 212, 0.5);
}

/* Support Card */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.card i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.btn-light {
    background: white;
    color: #8541d4;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    color: #8541d4;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Section Title */
h2.h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

h2.h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8541d4, #1976d2);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
}
