/* style/support.css */

/* Base Styles for .page-support */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
    background-color: #1A1A2E; /* Fallback for image loading */
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.7; /* Slightly dim the background image */
}

.page-support__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.6)); /* Dark overlay */
    z-index: 2;
}

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

.page-support__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-support__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A2E;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-support__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styles */
.page-support__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-support__dark-bg {
    background-color: #1A1A2E;
    color: #ffffff;
}

.page-support__light-bg {
    background-color: #0d0d0d; /* Slightly lighter than body for cards */
    color: #ffffff;
}

.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-support__section-title--light {
    color: #FFD700; /* Gold for titles on dark background */
}

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

.page-support__section-description--light {
    color: #cccccc; /* Lighter text on dark background */
}

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

.page-support__channel-item,
.page-support__guide-item {
    background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-support__channel-item:hover,
.page-support__guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__channel-image,
.page-support__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 200px; /* Ensure minimum image size */
    object-fit: cover;
}

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

.page-support__channel-text,
.page-support__guide-text {
    color: #cccccc;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-support__btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A2E;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

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

.page-support__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border: 2px solid #FFD700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-support__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A1A2E;
    transform: translateY(-2px);
}

.page-support__email-link,
.page-support__phone-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-support__email-link:hover,
.page-support__phone-link:hover {
    color: #e6c200;
}

/* FAQ Section */
.page-support__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #1A1A2E;
    color: #ffffff;
}

.page-support__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto;
    display: block;
    min-height: 200px; /* Ensure minimum image size */
    object-fit: cover;
}

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

.page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}