/* Security Help Page Styles */
.help-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(155, 89, 182, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.help-title {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 52px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #9b59b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.help-subtitle {
    font-family: 'Benzin', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.help-content {
    padding: 80px 0;
}

.help-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-intro h2 {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 25px;
    color: white;
}

.help-intro p {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.contact-options {
    margin-bottom: 80px;
}

.contact-options h2 {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: white;
    position: relative;
}

.contact-options h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #9b59b6 100%);
    border-radius: 2px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-option {
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-option:hover::before {
    opacity: 1;
}

.contact-option:hover {
    transform: translateY(-10px);
    border-color: rgba(231, 76, 60, 0.3);
}

.option-icon {
    margin-bottom: 20px;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.contact-option:hover .option-icon {
    transform: scale(1.1);
}

.contact-option h3 {
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-option p {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.option-link {
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #9b59b6;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.option-link:hover {
    color: #e74c3c;
}

.help-form-section {
    margin-bottom: 80px;
}

.help-form-section h2 {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.help-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(231, 76, 60, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-group label {
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    cursor: pointer;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #9b59b6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.emergency-section {
    margin-bottom: 80px;
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.emergency-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.emergency-icon {
    flex-shrink: 0;
    color: #e74c3c;
    position: relative;
    z-index: 2;
}

.emergency-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.emergency-content h3 {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.emergency-content p {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.emergency-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e74c3c;
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    font-family: 'Benzin', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin: 0;
}

.faq-toggle {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #9b59b6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-title {
        font-size: 38px;
    }

    .help-subtitle {
        font-size: 18px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .contact-option {
        padding: 30px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .help-title {
        font-size: 32px;
    }

    .help-intro h2,
    .contact-options h2,
    .help-form-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .emergency-content h3 {
        font-size: 24px;
    }
}