/* style/support.css */

/* General page layout and typography */
.page-support {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #FFFFFF; /* White text on dark backgrounds */
    line-height: 1.6;
    background-color: #0A2239; /* Main dark background */
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #0A2239, #1a3e5d); /* Dark blue gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.page-support__hero-content {
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2239; /* Dark blue text */
}

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

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

.page-support__btn--secondary:hover {
    background-color: #FFD700; /* Gold background */
    color: #0A2239; /* Dark blue text */
    transform: translateY(-2px);
}

.page-support__hero-image {
    max-width: 500px;
    margin-top: 30px;
}

.page-support__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-support__faq-item {
    background-color: #1a3e5d; /* Slightly lighter dark blue */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    color: #FFD700; /* Gold */
    position: relative;
    margin: 0;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-support__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.0em;
    color: rgba(255, 255, 255, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}
.page-support__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}
.page-support__faq-answer a:hover {
    color: #e6c200;
}


.page-support__faq-image {
    display: block;
    margin: 50px auto 0;
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Guides Section */
.page-support__guides {
    background-color: #1a3e5d; /* Slightly lighter dark blue */
    padding: 60px 0;
}

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

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

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

.page-support__guide-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.8) sepia(1) saturate(5) hue-rotate(30deg); /* Make icons gold */
}

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

.page-support__guide-item p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.page-support__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

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

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

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

.page-support__contact-item:hover {
    transform: translateY(-5px);
}

.page-support__contact-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.8) sepia(1) saturate(5) hue-rotate(30deg); /* Make icons gold */
}

.page-support__contact-item h3 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-support__contact-item p {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.page-support__btn--contact {
    background-color: #FFD700;
    color: #0A2239;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
}

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

.page-support__contact-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-support__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-support__hero-content {
        text-align: left;
    }

    .page-support__hero-actions {
        justify-content: flex-start;
    }

    .page-support__hero-title {
        font-size: 4em;
    }
}

@media (max-width: 767px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
}