/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a2e; /* Inherited from body, but good to keep in mind */
}

.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: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-support__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #f0f0f0;
}

.page-support__text-block--light {
    color: #f0f0f0;
}

/* Hero Section */
.page-support__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #017439, #005a2e);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

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

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

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

.page-support__hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    /* filter: grayscale(100%); */ /* Removed filter to comply with no filter rule */
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
    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, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn-primary {
    background-color: #C30808; /* Red for primary action */
    color: #ffffff; /* White text for contrast */
    border: 2px solid #C30808;
}

.page-support__btn-primary:hover {
    background-color: #e02a2a;
    border-color: #e02a2a;
    transform: translateY(-2px);
}

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

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

.page-support__btn-link {
    background-color: #017439;
    color: #ffffff;
    border: 1px solid #017439;
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__btn-link:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

/* Intro Section */
.page-support__intro-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

/* Channels Section */
.page-support__channels-section {
    padding: 60px 0;
    background-color: #2a2a3e;
}

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

.page-support__channel-card {
    background-color: #1a1a2e;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support__channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

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

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

.page-support__email-link {
    color: #017439;
    text-decoration: underline;
}

.page-support__email-link:hover {
    color: #005a2e;
}

/* Process Section */
.page-support__process-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-support__process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-support__process-item {
    background-color: #2a2a3e;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-support__process-step-title {
    font-size: 2em;
    color: #017439;
    margin-bottom: 15px;
}

.page-support__process-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: justify;
}

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

.page-support__dark-section {
    background-color: #017439; /* Brand green as background */
    color: #ffffff; /* White text for contrast */
}

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

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

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

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

.page-support__faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #ffffff;
}

.page-support__faq-toggle {
    font-size: 1.8em;
    line-height: 1;
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    color: #017439;
}

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

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #2a2a3e;
    color: #f0f0f0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1em;
    text-align: justify;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Use !important to ensure it overrides */
    padding: 20px 25px;
}

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

/* Tips Section */
.page-support__tips-section {
    padding: 60px 0;
    background-color: #1a1a2e;
}

.page-support__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-support__tips-item {
    background-color: #2a2a3e;
    border-left: 5px solid #017439;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    font-size: 1.1em;
}

.page-support__tips-item strong {
    color: #ffffff;
}

/* Commitment Section */
.page-support__commitment-section {
    padding: 60px 0;
}

.page-support__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-support__commitment-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    font-size: 1.1em;
    text-align: center;
}

.page-support__commitment-item strong {
    display: block;
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Download Section */
.page-support__download-section {
    padding: 60px 0;
    background-color: #1a1a2e;
    text-align: center;
}

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