/* ==========================================================================
   Support Pages Stylesheet (Privacy Policy, Terms of Use, Terms & Conditions)
   ========================================================================== */

/* Page Header Section */
.support-header-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.support-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 15% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.support-header-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.support-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #9ca3af;
}

.support-breadcrumb a {
    color: #e5e7eb;
    text-decoration: none;
    transition: var(--transition);
}

.support-breadcrumb a:hover {
    color: var(--primary-color);
}

.support-breadcrumb .active {
    color: var(--primary-color);
}

.support-breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-right: 8px;
    color: #4b5563;
}

/* Page Layout Container */
.support-container-padding {
    padding: 60px 0;
    background-color: #f9fafb;
}

.support-layout-wrapper {
    display: flex;
    gap: 30px;
}

/* Sidebar Navigation */
.support-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.support-sidebar-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
    transition: var(--transition);
}

.support-sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.support-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.support-menu-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.support-menu-link:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

.support-menu-link.active {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* Content Card */
.support-content-card {
    flex-grow: 1;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.support-content-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.support-content-card h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.support-content-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-content-card h3 i {
    color: var(--primary-color);
    font-size: 1.15rem;
}

.support-content-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.support-content-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-content-card li {
    position: relative;
    padding-right: 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.support-content-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 13px;
    background-color: rgba(249, 115, 22, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Callout Notice Box */
.admin-notice-box {
    background-color: rgba(249, 115, 22, 0.03);
    border-right: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-left: 1px solid #fce8db;
    border-top: 1px solid #fce8db;
    border-bottom: 1px solid #fce8db;
}

.admin-notice-box i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2px;
}

.admin-notice-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.admin-notice-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .support-layout-wrapper {
        flex-direction: column;
    }
    
    .support-sidebar {
        width: 100%;
    }
    
    .support-sidebar-card {
        position: static;
        padding: 16px;
    }
    
    .support-sidebar-title {
        display: none;
    }
    
    .support-menu-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .support-menu-link {
        flex-grow: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .support-content-card {
        padding: 24px;
    }
    
    .support-header-section {
        padding: 40px 0;
        text-align: center;
    }
    
    .support-breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .support-menu-link {
        width: 100%;
        text-align: center;
    }
    
    .support-menu-list {
        flex-direction: column;
    }
    
    .support-header-title {
        font-size: 1.75rem;
    }
}
