/* style/support.css */

/* Base styles */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-support__hero {
    background-color: #003366; /* Deep blue primary */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

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

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Buttons */
.page-support__btn {
    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;
    white-space: nowrap;
}

.page-support__btn--primary {
    background-color: #FFCC00; /* Gold yellow accent */
    color: #003366; /* Deep blue primary */
    border: 2px solid #FFCC00;
    margin: 0 10px;
}

.page-support__btn--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-support__btn--secondary {
    background-color: #003366; /* Deep blue primary */
    color: #FFCC00; /* Gold yellow accent */
    border: 2px solid #FFCC00;
    margin: 0 10px;
}

.page-support__btn--secondary:hover {
    background-color: #002244;
    border-color: #e6b800;
}

.page-support__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Section Titles & Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: #003366; /* Deep blue primary */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__highlight {
    color: #FFCC00; /* Gold yellow accent */
}

.page-support__hero-title .page-support__highlight {
    color: #FFCC00; /* Gold yellow accent on dark background */
}

.page-support__section-title .page-support__highlight {
    color: #003366; /* Deep blue primary on light background */
}

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

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

.page-support__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-support__accordion-header {
    background-color: #003366; /* Deep blue primary */
    color: #FFCC00; /* Gold yellow accent */
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support__accordion-header:hover {
    background-color: #002a52;
}

.page-support__accordion-content {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__accordion-content p {
    padding: 15px 0;
    color: #444;
    font-size: 1em;
    margin: 0;
}

.page-support__link {
    color: #003366; /* Deep blue primary for links */
    text-decoration: underline;
    font-weight: bold;
}

.page-support__link:hover {
    color: #FFCC00; /* Gold yellow accent on hover */
}

/* Guides Section */
.page-support__guides {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-support__guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.page-support__guide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

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

.page-support__guide-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.page-support__guide-item p {
    color: #666;
    margin-bottom: 20px;
}

/* Contact Section */
.page-support__contact {
    background-color: #003366;
    padding: 60px 0;
    color: #ffffff;
}

.page-support__contact .page-support__section-title {
    color: #ffffff;
}

.page-support__contact .page-support__section-description {
    color: #e0e0e0;
}

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

.page-support__contact-item {
    background-color: #002a52;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__contact-item:hover {
    transform: translateY(-8px);
    background-color: #003c73;
}

.page-support__contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to gold color */
    object-fit: contain;
}

.page-support__contact-item h3 {
    font-size: 1.5em;
    color: #FFCC00; /* Gold yellow accent */
    margin-bottom: 15px;
}

.page-support__contact-item p {
    color: #cccccc;
    margin-bottom: 25px;
}

/* CTA Section */
.page-support__cta {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

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

.page-support__cta-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__hero-description,
    .page-support__section-description,
    .page-support__cta-description {
        font-size: 1em;
    }

    .page-support__guide-grid,
    .page-support__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-support__btn--large {
        padding: 12px 25px;
        font-size: 1em;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}