/* style/support.css */

/* Base styles for the support page content */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Matching body background for consistency */
}

/* Container for content sections */
.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles and descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold color for main titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-support__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #121212; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-support__btn-secondary:hover {
    background-color: #FFD700;
    color: #121212;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 700px;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

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

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

.page-support__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-support__hero-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.4); /* Darken video to ensure text contrast */
    cursor: pointer; /* Indicate clickable video */
}

/* Channels Section */
.page-support__channels-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

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

.page-support__channel-card {
    background-color: #282828; /* Darker card background */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 350px;
}

.page-support__channel-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__card-text {
    color: #cccccc;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__card-button {
    width: 100%;
    max-width: 200px;
}

/* Guide Section */
.page-support__guide-section {
    padding: 80px 0;
    background-color: #8B0000; /* Dark red background */
    color: #ffffff; /* White text for dark red background */
}

.page-support__guide-section .page-support__section-title,
.page-support__guide-section .page-support__section-description {
    color: #ffffff;
}

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

.page-support__guide-item {
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent dark background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-support__guide-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
}

.page-support__guide-heading {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__guide-text {
    color: #f0f0f0;
    font-size: 1.1em;
}

/* Issues Section */
.page-support__issues-section {
    padding: 80px 0;
    background-color: #121212;
}

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

.page-support__issue-card {
    background-color: #282828; /* Darker card background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-height: 200px;
}

.page-support__issue-card .page-support__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: left;
}

.page-support__issue-card .page-support__card-text {
    color: #cccccc;
    text-align: left;
}

/* Commitment Section */
.page-support__commitment-section {
    padding: 80px 0;
    background-color: #8B0000; /* Dark red background */
    color: #ffffff;
}

.page-support__commitment-section .page-support__section-title,
.page-support__commitment-section .page-support__section-description {
    color: #ffffff;
}

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

.page-support__commitment-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__commitment-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support__commitment-heading {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__commitment-text {
    color: #f0f0f0;
}

/* CTA Section Bottom */
.page-support__cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.page-support__cta-buttons-bottom {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #121212;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

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

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #3a3a3a;
    color: #FFD700;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #4a4a4a;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    background-color: #282828;
    color: #cccccc;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Important for JS functionality */
    padding: 20px 30px;
}

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

/* General image styling to prevent small icons and ensure responsiveness */
.page-support img {
    max-width: 100%;
    height: auto;
    display: block; /* Important for image sizing */
    object-fit: cover; /* Ensure images fill their space */
}

/* Ensure content area images are not too small */
.page-support__guide-image,
.page-support__commitment-icon,
.page-support__channel-icon {
    min-width: 200px; /* Minimum size for content images */
    min-height: 200px; /* Minimum size for content images */
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__hero-description {
        font-size: 1.2em;
    }
    .page-support__guide-grid {
        grid-template-columns: 1fr;
    }
    .page-support__commitment-points {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn-primary,
    .page-support__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-support__channels-grid,
    .page-support__issues-grid {
        grid-template-columns: 1fr;
    }
    .page-support__channel-card,
    .page-support__issue-card {
        padding: 20px;
    }
    .page-support__guide-item {
        padding: 20px;
    }
    .page-support__commitment-item {
        padding: 20px;
    }

    .page-support__cta-buttons-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-support__faq-answer {
        padding: 0 20px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px 20px;
    }

    /* Mobile image, video, and container adaptations */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support video,
    .page-support__hero-video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__hero-video-wrapper,
    .page-support__video-wrapper,
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container,
    .page-support__channels-section,
    .page-support__guide-section,
    .page-support__issues-section,
    .page-support__commitment-section,
    .page-support__cta-section,
    .page-support__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Ensure no horizontal scroll */
    }
    .page-support__hero-section {
        padding-left: 0 !important; /* Hero video covers full width */
        padding-right: 0 !important;
    }
    .page-support__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}