/* style/support.css */

/* Base Styles & Typography */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: var(--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: #E44D26;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-support__main-title {
    font-size: 3.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #E44D26, #333333);
    overflow: hidden;
    min-height: 600px;
}

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

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

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(50%);
}

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

.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: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-support__btn-primary {
    background-color: #E44D26;
    color: #ffffff;
    border: 2px solid #E44D26;
}

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

.page-support__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-support__btn-secondary:hover {
    background-color: #ffffff;
    color: #E44D26;
}

/* Video Section */
.page-support__video-section {
    padding: 80px 20px;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
}

.page-support__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.page-support__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    max-width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

/* Channels Section */
.page-support__channels-section {
    padding: 80px 20px;
    background-color: #222222;
    color: #ffffff;
}

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

.page-support__channel-card {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__channel-card:hover {
    transform: translateY(-5px);
    background-color: #3f3f3f;
}

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

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

.page-support__channel-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-support__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Guide Section */
.page-support__guide-section {
    padding: 80px 20px;
    background-color: #E44D26;
    color: #ffffff;
}

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

.page-support__step-card {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__step-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-support__step-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Issues Section */
.page-support__issues-section {
    padding: 80px 20px;
    background-color: #222222;
    color: #ffffff;
}

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

.page-support__issue-card {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-support__issue-card:hover {
    transform: translateY(-5px);
}

.page-support__issue-icon {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-support__issue-title {
    font-size: 1.6em;
    color: #E44D26;
    margin-bottom: 10px;
}

.page-support__issue-text {
    font-size: 0.95em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-support__btn-link {
    color: #E44D26;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support__btn-link:hover {
    color: #ffffff;
}

/* Commitment Section */
.page-support__commitment-section {
    padding: 80px 20px;
    background-color: #E44D26;
    color: #ffffff;
}

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

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

.page-support__commitment-icon {
    width: 100%;
    height: auto;
    max-width: 180px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-support__commitment-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 20px;
    background-color: #222222;
    color: #ffffff;
}

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

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

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

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

.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); /* Plus sign becomes a cross */
    content: '−';
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

.page-support__faq-answer p {
    margin-bottom: 0;
    color: #f0f0f0;
}

/* Contact CTA Section */
.page-support__contact-cta {
    padding: 80px 20px;
    background-color: #E44D26;
    color: #ffffff;
    text-align: center;
}

.page-support__btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: 3em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__hero-description,
    .page-support__section-description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-support__hero-section {
        padding: 60px 20px;
        padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
    }
    .page-support__main-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1.1em;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .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-left: 15px;
        padding-right: 15px;
    }
    .page-support__channels-grid,
    .page-support__guide-steps,
    .page-support__issues-grid,
    .page-support__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-support__channel-card,
    .page-support__step-card,
    .page-support__issue-card,
    .page-support__commitment-item {
        padding: 25px;
    }
    .page-support__channel-title,
    .page-support__issue-title,
    .page-support__commitment-title {
        font-size: 1.5em;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    
    /* Image, Video, Container Responsive Rules */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support video,
    .page-support__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__video-section,
    .page-support__video-container,
    .page-support__video-wrapper,
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-support__video-wrapper {
        padding-bottom: 75% !important; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
    }
    .page-support__cta-buttons {
        flex-direction: column;
        flex-wrap: wrap !important;
        gap: 15px;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-support__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-support__main-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__btn-primary,
    .page-support__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
}