/* help_center.php - Help Center Page */
:root {
    --primary-blue: #f57c00;
    --border-color: #e9ecef;
    --text-dark: #333;
    --text-muted: #6c757d;
}

.help-center-page {
    padding: 40px 0 60px;
}

.page-header-section {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--primary-blue);
}

.breadcrumb-nav .separator {
    color: var(--text-muted);
}

/* Main Heading Section */
.main-heading-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
}

.main-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Contact Methods Section */
.contact-methods-section {
    margin-bottom: 80px;
}

.contact-method-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.contact-method-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 124, 0, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

/* Help Topics Section */
.help-topics-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.help-topic-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s;
}

.help-topic-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.topic-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 124, 0, 0.1);
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.topic-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.topic-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    margin-bottom: 12px;
}

.topic-list li:last-child {
    margin-bottom: 0;
}

.topic-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.topic-list a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.topic-list a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s;
}

.topic-list a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

/* Responsive */
@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
    }

    .contact-methods-section .col-md-4 {
        margin-bottom: 30px;
    }

    .help-topics-section .col-md-6 {
        margin-bottom: 30px;
    }
}
