/* Help Center Specific Styles */
.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.help-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.help-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #c9a050;
}

.help-category-card i {
    font-size: 2.5rem;
    color: #c9a050;
    margin-bottom: 20px;
}

.help-category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.help-category-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c9a050;
    display: inline-block;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f4f0;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #c9a050;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.8;
}

.faq-answer-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.contact-support {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    color: #fff;
}

.contact-support h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-support p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: #c9a050;
    color: #fff;
}

.contact-option i {
    font-size: 1.5rem;
}

.contact-option span {
    font-weight: 500;
}

.search-help {
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    display: flex;
    max-width: 600px;
    margin: 0 auto 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-help input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    outline: none;
    border-radius: 50px;
}

.search-help button {
    background: #c9a050;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-help button:hover {
    background: #a67c30;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.quick-link {
    color: #c9a050;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    background: rgba(201, 160, 80, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: #c9a050;
    color: #fff;
}