/* Help Page Styles - Enhanced UI/UX */

/* Hero Section */
.help-hero {
    background: linear-gradient(135deg, rgba(102, 0, 59, 0.9) 0%, rgba(155, 4, 101, 0.9) 100%);
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.help-hero[data-hero-image]::before {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 0, 59, 0.7) 100%), var(--hero-image);
}

.help-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.help-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.help-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -1px;
}

.help-hero-content h1 span {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.help-hero-content p {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.help-faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.help-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.help-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -0.5px;
}

.help-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff5e98 50%, var(--primary-color) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 0, 128, 0.3);
}

.help-faq-container {
    background: white;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 0, 128, 0.05);
    transition: all 0.3s ease;
}

.help-faq-container:hover {
    box-shadow: 0 15px 50px rgba(255, 0, 128, 0.15);
    transform: translateY(-2px);
}

/* Enhanced Tabs */
.help-nav-tabs {
    border-bottom: 3px solid #f0f0f0;
    margin-bottom: 35px;
    display: flex;
    gap: 10px;
}

.help-nav-tabs .nav-item {
    flex: 1;
}

.help-nav-tabs .nav-link {
    color: #666;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 18px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.help-nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.help-nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 0, 128, 0.05);
    border-bottom-color: rgba(255, 0, 128, 0.3);
}

.help-nav-tabs .nav-link:hover i {
    transform: scale(1.1);
}

.help-nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08) 0%, rgba(255, 0, 128, 0.03) 100%);
    border-bottom-color: var(--primary-color);
    font-weight: 800;
}

.help-nav-tabs .nav-link.active i {
    color: var(--primary-color);
    transform: scale(1.15);
}

/* Enhanced FAQ Items */
.help-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    margin-bottom: 20px;
    padding: 28px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.help-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.help-faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.2);
    background: white;
    border-left-color: #ff5e98;
}

.help-faq-item:hover::before {
    transform: scaleY(1);
}

.help-faq-question {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.4;
}

.help-faq-question::before {
    content: 'Q';
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.help-faq-item:hover .help-faq-question::before {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.4);
}

.help-faq-answer {
    color: #555;
    line-height: 1.9;
    padding-left: 50px;
    font-size: 1.05rem;
    position: relative;
}

.help-faq-answer::before {
    content: 'A:';
    color: var(--primary-color);
    font-weight: 800;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Enhanced Project Card */
.help-project-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 0, 128, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.help-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.help-project-card:hover {
    box-shadow: 0 15px 50px rgba(255, 0, 128, 0.15);
    transform: translateY(-3px);
}

.help-project-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.help-project-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.help-project-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
    position: relative;
    z-index: 1;
}

.help-project-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
}

.help-project-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.help-project-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.15);
    border-color: rgba(255, 0, 128, 0.2);
}

.help-project-list li:hover::before {
    transform: scaleY(1);
}

.help-project-list li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.help-project-list li:hover i {
    transform: scale(1.2) rotate(5deg);
}

.help-project-list li span {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}

.help-contact-info {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.help-contact-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.help-contact-list li:hover {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, rgba(255, 0, 128, 0.02) 100%);
    transform: translateX(8px);
    border-color: rgba(255, 0, 128, 0.2);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.1);
}

.help-contact-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.help-contact-list li:hover i {
    transform: scale(1.2);
}

.help-contact-list li span {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Support Form */
.help-support-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.help-support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.help-support-form {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 128, 0.08);
    position: relative;
    overflow: hidden;
}

.help-support-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.help-support-form .form-control,
.help-support-form .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.help-support-form .form-control:focus,
.help-support-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.1);
    outline: none;
    background: white;
    transform: translateY(-2px);
}

.help-support-form .form-control:hover,
.help-support-form .form-select:hover {
    border-color: rgba(255, 0, 128, 0.3);
}

.help-support-form .form-label {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.help-support-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.help-support-form .form-check-label {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.help-support-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.help-support-form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.help-support-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.4);
}

.help-support-form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.help-support-form .btn-primary i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.help-support-form .btn-primary:hover i {
    transform: translateX(5px);
}

/* Enhanced App Section */
.help-app-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.help-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.help-app-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.help-app-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-app-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 400;
}

.help-app-screenshot-container {
    text-align: center;
    position: relative;
    padding: 20px;
}

.help-app-screenshot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05) 0%, transparent 100%);
    border-radius: 30px;
    z-index: 0;
}

.help-app-screenshot {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.help-app-screenshot:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.25);
}

.help-app-option {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.help-app-option .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.15);
}

.help-app-option .form-check-label {
    font-weight: 600;
    color: #333;
    margin-left: 10px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.help-app-option .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
}

.help-app-link-form {
    margin-bottom: 30px;
}

.help-app-link-form .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.help-app-link-form .form-control {
    border: 2px solid #e8e8e8;
    border-right: none;
    padding: 16px 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.help-app-link-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.help-app-link-form .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    border: 2px solid var(--primary-color);
    border-left: none;
    padding: 16px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
}

.help-app-link-form .btn:hover {
    transform: translateX(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
}

.help-download-options {
    margin-top: 35px;
}

.help-download-label {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: block;
    font-size: 1.1rem;
}

.help-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #333;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    padding: 16px 28px;
    margin-right: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
}

.help-store-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.25);
    color: var(--primary-color);
    background: rgba(255, 0, 128, 0.02);
}

.help-store-badge.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff5e98 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
}

.help-store-badge.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    color: white;
}

.help-store-badge i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.help-store-badge:hover i {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .help-hero-content h1 {
        font-size: 3rem;
    }

    .help-section-title {
        font-size: 2.5rem;
    }

    .help-faq-container,
    .help-project-card {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .help-hero {
        height: 350px;
    }

    .help-hero-content h1 {
        font-size: 2.5rem;
    }

    .help-hero-content p {
        font-size: 1.1rem;
    }

    .help-faq-section,
    .help-support-section,
    .help-app-section {
        padding: 60px 0;
    }

    .help-section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .help-faq-container,
    .help-project-card,
    .help-support-form {
        padding: 25px;
        border-radius: 20px;
    }

    .help-nav-tabs .nav-link {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .help-faq-item {
        padding: 20px;
    }

    .help-faq-question {
        font-size: 1.1rem;
    }

    .help-faq-answer {
        padding-left: 45px;
        font-size: 1rem;
    }

    .help-project-title {
        font-size: 1.8rem;
    }

    .help-app-title {
        font-size: 2.2rem;
    }

    .help-app-screenshot {
        max-height: 400px;
    }

    .help-store-badge {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .help-hero {
        height: 300px;
    }

    .help-hero-content h1 {
        font-size: 2rem;
    }

    .help-hero-content p {
        font-size: 1rem;
    }

    .help-section-title {
        font-size: 1.75rem;
    }

    .help-faq-container,
    .help-project-card,
    .help-support-form {
        padding: 20px;
    }

    .help-nav-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .help-nav-tabs .nav-link {
        border-radius: 10px;
        border-bottom: 3px solid transparent;
    }

    .help-nav-tabs .nav-link.active {
        border-bottom-color: var(--primary-color);
    }
}
