/* style/support.css */

/* General page styles */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0f1c2f; /* Slightly darker than main color for body background */
}

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

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

.page-support__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
    background: linear-gradient(135deg, #1A2E47, #0f1c2f); /* Gradient using main color and slightly darker variant */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold,pattern]'); /* Abstract background pattern */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

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

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

.page-support__hero-subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.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;
    transition: all 0.3s ease;
    font-size: 1.1em;
    white-space: nowrap;
}

.page-support__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
    background-color: #e6c200;
    color: #0f1c2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

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

.page-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.page-support__faq-section {
    padding: 60px 0;
    background-color: #1A2E47; /* Main color as background */
}

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

.page-support__faq-category {
    background-color: #2a405c; /* Slightly lighter dark blue */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__category-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 15px;
}

.page-support__accordion {
    color: #c0c0c0;
}

.page-support__accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.page-support__accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-support__accordion-header {
    background-color: transparent;
    color: #f0f0f0;
    font-size: 1.15em;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

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

.page-support__accordion-header:hover {
    color: #FFD700;
}

.page-support__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-left: 10px;
    color: #c0c0c0;
    line-height: 1.6;
}

.page-support__accordion-content.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-support__accordion-content p {
    margin: 0;
    padding-bottom: 5px;
}

.page-support__accordion-content a {
    color: #FFD700;
    text-decoration: underline;
}

.page-support__accordion-content a:hover {
    color: #e6c200;
}

/* Contact Section */
.page-support__contact-section {
    padding: 60px 0;
    background-color: #0f1c2f; /* Darker background */
}

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

.page-support__contact-card {
    background-color: #1A2E47; /* Main color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__contact-card p {
    color: #c0c0c0;
    margin-bottom: 25px;
    line-height: 1.5;
}

.page-support__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1em;
}

.page-support__btn--outline:hover {
    background-color: #FFD700;
    color: #1A2E47;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

/* Resources Section */
.page-support__resources-section {
    padding: 60px 0 100px;
    background-color: #1A2E47;
}

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

.page-support__resource-card {
    background-color: #2a405c;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-support__resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__resource-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-support__resource-card .page-support__card-title {
    font-size: 1.4em;
    margin: 20px 20px 10px;
    text-align: left;
    color: #FFD700;
}

.page-support__resource-card p {
    color: #c0c0c0;
    font-size: 0.95em;
    margin: 0 20px 20px;
    text-align: left;
    line-height: 1.5;
    flex-grow: 1;
}

/* Sticky Promo Button */
.page-support__sticky-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-support__sticky-btn {
    background-color: #FFD700;
    color: #1A2E47;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.page-support__sticky-btn:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-support__sticky-text {
    margin-right: 10px;
}

.page-support__sticky-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(20%) saturate(1000%) hue-rotate(200deg) brightness(90%) contrast(100%); /* Adjust to dark blue */
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 3em;
    }
    .page-support__hero-subtitle {
        font-size: 1.3em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__faq-grid,
    .page-support__contact-options,
    .page-support__resource-grid {
        grid-template-columns: 1fr;
    }
    .page-support__contact-card,
    .page-support__resource-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__hero-subtitle {
        font-size: 1.1em;
    }
    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__sticky-promo {
        bottom: 15px;
        right: 15px;
    }
    .page-support__sticky-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-subtitle {
        font-size: 1em;
    }
    .page-support__section-title {
        font-size: 1.5em;
    }
    .page-support__faq-category,
    .page-support__contact-card,
    .page-support__resource-card {
        padding: 20px;
    }
    .page-support__category-title {
        font-size: 1.5em;
    }
    .page-support__card-title {
        font-size: 1.3em;
    }
    .page-support__accordion-header {
        font-size: 1em;
    }
}