/* style/support.css */
.page-support {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #051426; /* Slightly darker background than primary for depth */
    line-height: 1.6;
}

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

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A63 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-support__hero-description strong {
    color: #FFD700;
}

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

.page-support__hero-image {
    position: absolute;
    bottom: -20px;
    right: -50px;
    opacity: 0.15;
    max-width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%);
}

/* General Buttons */
.page-support__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Deep Blue */
    border: 2px solid #FFD700;
}

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

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

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

.page-support__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-support__btn--outline:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-support__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    text-decoration: underline;
    font-size: 0.95em;
}

.page-support__btn--text:hover {
    color: #e6c200;
}

.page-support__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 6px;
}

.page-support__btn--large {
    padding: 15px 40px;
    font-size: 1.15em;
    border-radius: 10px;
}

/* Section Titles */
.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__section-subtitle {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #0A2342; /* Primary color as background */
    position: relative;
    overflow: hidden;
}

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

.page-support__faq-item {
    background-color: #1A3A63; /* Darker blue for FAQ items */
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-support__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: none; /* Hidden by default */
}

.page-support__faq-answer p {
    margin-bottom: 15px;
}

.page-support__faq-answer strong {
    color: #FFD700;
}

.page-support__faq-answer .page-support__btn {
    margin-top: 10px;
}

.page-support__faq-image {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    opacity: 0.08;
    max-width: 400px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%);
}

/* Contact Section */
.page-support__contact-section {
    padding: 80px 0;
    background-color: #051426;
    text-align: center;
}

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

.page-support__contact-card {
    background-color: #1A3A63;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support__contact-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support__contact-card p {
    color: #C0C0C0;
    margin-bottom: 25px;
}

/* Guides Section */
.page-support__guides-section {
    padding: 80px 0;
    background-color: #0A2342;
}

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

.page-support__guide-card {
    background-color: #1A3A63;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
}

.page-support__guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-support__guide-card h3 {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px 25px 10px;
    margin: 0;
}

.page-support__guide-card p {
    color: #C0C0C0;
    padding: 0 25px 20px;
    flex-grow: 1;
}

.page-support__guide-card .page-support__btn {
    align-self: flex-start;
    margin: 0 25px 25px;
}

/* Call to Action Section */
.page-support__cta-section {
    padding: 80px 0;
    background-color: #051426;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    filter: grayscale(100%);
}

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

.page-support__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__cta-description {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-support__hero {
        padding: 60px 0;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-subtitle {
        font-size: 0.95em;
    }
    .page-support__faq-section,
    .page-support__contact-section,
    .page-support__guides-section,
    .page-support__cta-section {
        padding: 40px 0;
    }
    .page-support__contact-options {
        grid-template-columns: 1fr;
    }
    .page-support__guides-grid {
        grid-template-columns: 1fr;
    }
    .page-support__faq-question {
        font-size: 1.1em;
    }
    .page-support__faq-answer {
        font-size: 0.9em;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-image,
    .page-support__faq-image {
        display: none; /* Hide background images on very small screens */
    }
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__cta-title {
        font-size: 1.6em;
    }
    .page-support__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}