/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1a1a1a; /* Dark background to contrast with neon colors */
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-support__hero {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-support__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.2) 0%, rgba(0, 255, 238, 0.2) 50%, transparent 70%);
    animation: page-support__neon-glow 10s infinite alternate;
    z-index: 0;
}

@keyframes page-support__neon-glow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0.6; }
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.8), 0 0 20px rgba(0, 255, 238, 0.8);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-support__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
}

.page-support__btn--primary {
    background-color: #FF0055;
    color: #fff;
    border: 2px solid #FF0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
}

.page-support__btn--primary:hover {
    background-color: #e6004d;
    border-color: #e6004d;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.8);
    transform: translateY(-3px);
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #00FFEE;
    border: 2px solid #00FFEE;
    box-shadow: 0 0 15px rgba(0, 255, 238, 0.6);
}

.page-support__btn--secondary:hover {
    background-color: rgba(0, 255, 238, 0.1);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 255, 238, 0.8);
    transform: translateY(-3px);
}

.page-support__section {
    padding: 80px 0;
    text-align: center;
}

.page-support__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FF0055;
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.4);
}

.page-support__section-subtitle {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #ccc;
    line-height: 1.6;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 85, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
    border-color: #00FFEE;
}

.page-support__faq-question {
    font-size: 1.4em;
    color: #00FFEE;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(45deg);
}

.page-support__faq-answer {
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-support__faq-answer.active {
    display: block;
    max-height: 500px; /* Arbitrary large value */
    opacity: 1;
}

.page-support__image-full {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 238, 0.2);
}

.page-support__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__guide-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 238, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    border-color: #FF0055;
}

.page-support__guide-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-support__guide-title {
    font-size: 1.6em;
    color: #FF0055;
    margin-bottom: 15px;
}

.page-support__guide-text {
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-support__btn--text {
    color: #00FFEE;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.page-support__btn--text:hover {
    color: #fff;
}

.page-support__arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-support__btn--text:hover .page-support__arrow {
    transform: translateX(5px);
}

.page-support__contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 40px;
    flex: 1;
    max-width: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 85, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-support__contact-item:hover {
    transform: translateY(-5px);
    border-color: #00FFEE;
}

.page-support__contact-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
}

.page-support__contact-title {
    font-size: 1.8em;
    color: #00FFEE;
    margin-bottom: 15px;
}

.page-support__contact-text {
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.8em;
    }
    .page-support__section-title {
        font-size: 2.2em;
    }
    .page-support__faq-grid, .page-support__guide-grid, .page-support__contact-options {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-support__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 80px 0 60px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section {
        padding: 60px 0;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__faq-item, .page-support__guide-card, .page-support__contact-item {
        padding: 25px;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__guide-title {
        font-size: 1.4em;
    }
    .page-support__contact-title {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__btn {
        width: 100%;
    }
    .page-support__contact-options {
        flex-direction: column;
    }
}