/* style/support.css */

/* Base styles for the support page 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 (#000) */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-support__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0; /* Light grey for intros */
}

/* Color schemes for sections based on background */
.page-support__dark-bg {
    background-color: #1A2B4C; /* Main brand dark blue */
    color: #ffffff;
    padding: 80px 0;
}

.page-support__light-bg {
    background-color: #f8f9fa; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
    padding: 80px 0;
}

.page-support__light-bg .page-support__section-title {
    color: #1A2B4C; /* Dark blue title on light background */
}

.page-support__light-bg .page-support__section-intro {
    color: #555555; /* Darker grey intro on light background */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Slightly transparent to let background color show */
}

.page-support__hero-section .page-support__container {
    position: relative;
    z-index: 1;
}

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

.page-support__hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #ffffff;
}

.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: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-support__btn-primary {
    background-color: #FFD700; /* Gold primary button */
    color: #1A2B4C;
    border: 2px solid #FFD700;
}

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

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

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

/* Service Grid */
.page-support__service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-support__service-card.page-support__card {
    background-color: #ffffff; /* White background for cards on light background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333; /* Dark text for cards */
}

.page-support__service-card.page-support__card:hover {
    transform: translateY(-10px);
}

.page-support__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure it behaves as a block element */
    margin-left: auto;
    margin-right: auto;
}

.page-support__card-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-support__card-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
}

.page-support__card-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-support__card-link:hover {
    color: #1A2B4C;
}

/* Process Section */
.page-support__process-section {
    padding: 80px 0;
}

.page-support__process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-support__process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.page-support__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #1A2B4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto 20px auto;
    border: 3px solid #FFD700;
}

.page-support__step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.page-support__process-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.page-support__faq-list {
    max-width: 900px;
    margin: 50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-support__faq-item {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    color: #333333; /* Dark text for FAQ item */
}

.page-support__faq-item:last-child {
    border-bottom: none;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
}

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

.page-support__faq-heading {
    font-size: 1.3em;
    color: #1A2B4C;
    margin: 0;
    font-weight: 600;
}

.page-support__faq-toggle {
    font-size: 1.8em;
    color: #FFD700;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg); /* Plus to X (minus) */
    color: #1A2B4C;
}

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

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 1000px !important; /* Ensure it expands fully */
    padding: 20px 30px;
}

.page-support__faq-answer p {
    margin-bottom: 15px;
    color: #555555;
    font-size: 1em;
}

.page-support__text-link {
    color: #1A2B4C;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-support__text-link:hover {
    color: #FFD700;
}

.page-support__faq-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Commitment Section */
.page-support__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-support__commitment-item.page-support__card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    color: #ffffff; /* Light text for cards */
}

.page-support__commitment-item.page-support__card:hover {
    transform: translateY(-10px);
}

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

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

.page-support__commitment-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 60px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-support__contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-support__contact-item.page-support__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    color: #333333;
}