/* style/support.css */
/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Text Main color */
    background-color: #0A0A0A; /* Background color */
}

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

.page-support__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F2C14E; /* Main brand color for titles */
    line-height: 1.2;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* For fixed header */
    background: linear-gradient(135deg, #0A0A0A 0%, rgba(17, 17, 17, 0.8) 100%);
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-support__hero-image-container {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-support__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Ensure image doesn't stretch too tall */
}

.page-support__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    width: 100%; /* Ensure content takes full width in container */
    z-index: 1; /* Ensure text is above any background effects */
    background-color: rgba(10, 10, 10, 0.7); /* Semi-transparent background for readability */
    margin-top: -5px; /* Slight overlap to make it visually cohesive */
}

.page-support__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: #F2C14E; /* Main brand color */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.2em;
    color: #FFF6D6; /* Text Main color */
    margin-bottom: 30px;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%;
    text-align: center;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    box-shadow: 0 0 15px #FFD36B; /* Glow effect */
}

.page-support__btn-secondary {
    background: #111111; /* Card BG color */
    color: #F2C14E; /* Main brand color */
    border: 2px solid #3A2A12; /* Border color */
}

.page-support__btn-secondary:hover {
    background: #3A2A12; /* Border color for hover */
    color: #ffffff;
    border-color: #FFD36B;
}

.page-support__btn-link {
    background: transparent;
    color: #FFD36B; /* Glow color for links */
    border: none;
    padding: 5px 10px;
    font-size: 0.9em;
    text-decoration: underline;
}

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

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background color */
}

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

.page-support__faq-item {
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    margin-bottom: 15px;
    border-radius: 8px;
    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: 15px 20px;
    cursor: pointer;
    background-color: #1A1A1A; /* Slightly lighter than card BG */
    color: #F2C14E; /* Main brand color for questions */
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

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

.page-support__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD36B; /* Glow color for toggle */
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg); /* Rotate for minus sign */
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px; /* Initial padding */
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main color */
}

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

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

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background color */
}

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

.page-support__contact-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-support__contact-card-title {
    font-size: 1.5em;
    color: #F2C14E; /* Main brand color */
    margin-bottom: 10px;
}

.page-support__contact-card-text {
    color: #FFF6D6; /* Text Main color */
    margin-bottom: 20px;
    flex-grow: 1; /* Push button to bottom */
}

/* Guides Section */
.page-support__guides-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG color for this section to contrast */
}

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

.page-support__guide-card {
    background-color: #0A0A0A; /* Background color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-support__guide-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-support__guide-card h3 {
    padding: 15px 20px 0;
    font-size: 1.25em;
    color: #F2C14E;
    margin-bottom: 10px;
    flex-grow: 1;
}

.page-support__guide-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-card h3 a:hover {
    color: #FFD36B;
}

.page-support__guide-text {
    padding: 0 20px 15px;
    color: #FFF6D6;
    font-size: 0.95em;
}

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

.page-support__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-support__feature-item {
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__feature-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-support__feature-title {
    font-size: 1.3em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-support__feature-text {
    color: #FFF6D6;
    font-size: 0.95em;
}

.page-support__feature-text a {
    color: #FFD36B;
    text-decoration: underline;
}

.page-support__feature-text a:hover {
    color: #F2C14E;
}

/* Community Section */
.page-support__community-section {
    padding: 60px 0;
    background-color: #111111; /* Card BG color for this section */
}

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

.page-support__community-card {
    background-color: #0A0A0A; /* Background color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-support__community-title {
    font-size: 1.4em;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-support__community-text {
    color: #FFF6D6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Join Section */
.page-support__join-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background color */
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__hero-title {
        font-size: clamp(2em, 4vw, 3em);
    }
}