/* style/support.css */

/* Base styles for the page-support scope */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #1a1a2e, so use light text */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing for desktop and mobile */
}

.page-support a {
    color: #26A9E0; /* Brand color for links */
    text-decoration: none;
}

.page-support a:hover {
    text-decoration: underline;
}

/* Section base styles */
.page-support__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff; /* Default for dark sections */
}

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

/* Color contrast classes */
.page-support__dark-bg {
    background-color: #1a1a2e; /* Inherited from body, but explicitly set for sections */
    color: #ffffff;
}

.page-support__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-support__light-bg .page-support__section-title,
.page-support__light-bg .page-support__section-intro {
    color: #333333; /* Ensure dark text on light background */
}

/* Container for content width */
.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    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%; /* Ensure buttons are responsive */
}

.page-support__btn-primary {
    background-color: #26A9E0; /* Brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-support__btn-primary:hover {
    background-color: #1e87b8;
    border-color: #1e87b8;
    color: #ffffff;
}

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

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-support__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

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

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

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

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

/* Why Choose Us Section */
.page-support__why-choose-us {
    padding: 80px 0;
}

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

.page-support__feature-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-support__feature-text {
    color: #555555;
}

/* Common Issues Section */
.page-support__common-issues {
    padding: 80px 0;
}

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

.page-support__issue-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #333333; /* Dark text on light card background */
}

.page-support__issue-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-support__issue-title {
    font-size: 1.4em;
    margin: 20px 0 10px;
    padding: 0 20px;
    color: #26A9E0;
}

.page-support__issue-link {
    color: #26A9E0;
    text-decoration: none;
}

.page-support__issue-link:hover {
    text-decoration: underline;
}

.page-support__issue-text {
    padding: 0 20px 20px;
    color: #555555;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 80px 0;
}

.page-support__contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.page-support__contact-content {
    padding-right: 20px;
}

.page-support__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-support__contact-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-support__contact-method-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-support__contact-method-text {
    margin-bottom: 15px;
    color: #555555;
}

.page-support__contact-image-wrapper {
    text-align: center;
}

.page-support__contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: block; /* Ensure it behaves as a block element for max-width */
}

/* Video Section */
.page-support__video-section {
    padding: 80px 0;
    text-align: center;
}