/* style/support.css */

/* --- General Styles for page-support content --- */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css var(--neon-dark-bg-1) */
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-support__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #ffffff; /* Light text for dark sections */
}

/* Links within text blocks */
.page-support__text-block a {
    color: #26A9E0; /* Brand primary color for links */
    text-decoration: underline;
}

.page-support__text-block a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* --- Hero Section --- */
.page-support__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: var(--neon-dark-bg-1); /* Ensure dark background for hero */
    color: #ffffff;
}

.page-support__dark-bg {
    background-color: var(--neon-dark-bg-1); /* Inherit from shared */
    color: #ffffff;
}

.page-support__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-support__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 30px;
    border-radius: 10px;
}

.page-support__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Darken image for text contrast, not changing color */
}

/* --- Buttons --- */
.page-support__btn-primary {
    display: inline-block;
    background-color: #26A9E0;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-support__btn-primary:hover {
    background-color: #1a7eb3; /* Slightly darker shade of primary */
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    font-size: 1.1em;
}

.page-support__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Intro Section --- */
.page-support__intro-section {
    padding: 60px 0;
    color: #333333; /* Dark text for light background */
}

.page-support__intro-section .page-support__section-title {
    color: #26A9E0; /* Titles on light background use brand color */
}

.page-support__intro-section .page-support__text-block {
    color: #333333;
}

/* --- Channels Section --- */
.page-support__channels-section {
    padding: 60px 0;
}

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

.page-support__channel-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__channel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support__channel-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__channel-description {
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Issues Section --- */
.page-support__issues-section {
    padding: 60px 0;
    color: #333333; /* Dark text for light background */
}

.page-support__issues-section .page-support__section-title {
    color: #26A9E0;
}

.page-support__issues-section .page-support__text-block {
    color: #333333;
}

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

.page-support__issue-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-support__issue-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-support__issue-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 1em;
}

.page-support__issue-list li {
    margin-bottom: 10px;
}

.page-support__issue-list li a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-support__issue-list li a:hover {
    color: #1a7eb3;
}

/* --- Guide Section --- */
.page-support__guide-section {
    padding: 60px 0;
}

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

.page-support__step-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__step-image {
    width: 100%;
    max-width: 400px;
    height: 250px; /* Adjusted height for better aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support__step-title {
    font-size: 1.8em;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-support__step-description {
    font-size: 1em;
}

/* --- Security Section --- */
.page-support__security-section {
    padding: 60px 0;
    color: #333333;
}

.page-support__security-section .page-support__section-title {
    color: #26A9E0;
}

.page-support__security-section .page-support__text-block {
    color: #333333;
}

.page-support__security-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- FAQ Section --- */
.page-support__faq-section {
    padding: 60px 0;
}

.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-support__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    list-style: none; /* Hide default marker */
}

.page-support__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-support__faq-qtext {
    flex-grow: 1;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

.page-support__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
}

.page-support__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-support__cta-faq {
    text-align: center;
    margin-top: 50px;
}

.page-support__cta-text {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #ffffff;
}

/* --- Conclusion Section --- */
.page-support__conclusion-section {
    padding: 60px 0;
    text-align: center;
    color: #333333;
}

.page-support__conclusion-section .page-support__section-title {
    color: #26A9E0;
}

.page-support__conclusion-section .page-support__text-block {
    color: #333333;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-support__final-cta {
    margin-top: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__hero-description {
        font-size: 1.2em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__channel-card,
    .page-support__issue-card,
    .page-support__step-item {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    /* General mobile padding */
    .page-support__container {
        padding: 0 15px !important;
    }

    /* Hero section adjustments */
    .page-support__hero-section {
        min-height: 450px;
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-support__hero-content {
        padding: 20px;
    }
    .page-support__hero-title {
        font-size: 2.2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }

    /* Section titles */
    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    /* Text blocks */
    .page-support__text-block {
        font-size: 0.95em;
        text-align: left;
    }

    /* Card grids */
    .page-support__channels-grid,
    .page-support__issues-grid,
    .page-support__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Images responsiveness */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-support__hero-image-wrapper,
    .page-support__channel-card,
    .page-support__issue-card,
    .page-support__step-item,
    .page-support__security-section,
    .page-support__faq-section,
    .page-support__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Buttons responsiveness */
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px !important; /* Adjust padding for smaller screens */
        font-size: 1em !important;
    }
    .page-support__cta-faq .page-support__btn-primary {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-support__final-cta .page-support__btn-primary {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* FAQ section */
    .page-support__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer {
        font-size: 1em;
        padding: 10px 20px 15px;
    }
    .page-support__cta-text {
        font-size: 1.1em;
    }

    /* Adjust padding for sections in mobile */
    .page-support__intro-section,
    .page-support__channels-section,
    .page-support__issues-section,
    .page-support__guide-section,
    .page-support__security-section,
    .page-support__faq-section,
    .page-support__conclusion-section {
        padding: 40px 0 !important;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
}