/* style/support.css */

/* General styles for the support page content */
.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for readability */
    background-color: #f8f9fa; /* Light background */
}

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

/* Hero Section */
.page-support__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Primary blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-support__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    font-size: 1.1em;
}

.page-support__btn--primary {
    background-color: #ffc107; /* Secondary gold */
    color: #333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

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

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

.page-support__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.page-support__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    z-index: 0;
    max-width: 400px; /* Adjust size as needed */
    height: auto;
}

.page-support__hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Titles and Subtitles */
.page-support__section-title {
    font-size: 2.5em;
    color: #007bff; /* Primary blue */
    text-align: center;
    margin-bottom: 15px;
    margin-top: 60px;
    font-weight: bold;
}

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

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

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

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

.page-support__faq-question {
    font-size: 1.3em;
    color: #007bff; /* Primary blue */
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #eaf6ff; /* Lighter blue for question background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.page-support__faq-question:hover {
    background-color: #d0e7ff;
}

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

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

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

.page-support__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 15px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 10px;
    color: #444;
}

.page-support__faq-answer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.page-support__faq-answer a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Contact Options Section */
.page-support__contact-options {
    padding: 60px 0;
    background-color: #f0f8ff; /* Very light blue background */
}

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

.page-support__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-support__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-support__card-title {
    font-size: 1.6em;
    color: #007bff; /* Primary blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-description {
    color: #666;
    margin-bottom: 25px;
}

.page-support__btn--card {
    background-color: #007bff; /* Primary blue */
    color: #fff;
    border: 2px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
}

.page-support__btn--card:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

/* Resources Section */
.page-support__resources {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-support__resource-item {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__resource-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-support__resource-title {
    font-size: 1.4em;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-support__resource-title a {
    color: #007bff; /* Primary blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__resource-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-support__resource-description {
    color: #666;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-support__btn--link {
    background-color: #ffc107; /* Secondary gold */
    color: #333;
    border: 2px solid #ffc107;
    padding: 8px 18px;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-support__btn--link:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
}


/* CTA Banner Section */
.page-support__cta-banner {
    background: linear-gradient(45deg, #007bff, #ffc107); /* Mix of primary and secondary */
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__cta-banner .page-support__container {
    max-width: 900px;
}

.page-support__cta-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.page-support__btn--cta {
    background-color: #fff;
    color: #007bff; /* Primary blue for text */
    border: 2px solid #fff;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 50px;
}

.page-support__btn--cta:hover {
    background-color: #f0f0f0;
    color: #0056b3;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
    .page-support__contact-cards,
    .page-support__resource-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .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__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-support__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }
    .page-support__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-support__faq-answer.active {
        padding: 10px 20px;
    }
    .page-support__card {
        padding: 25px;
    }
    .page-support__card-title {
        font-size: 1.4em;
    }
    .page-support__cta-banner {
        padding: 50px 15px;
    }
    .page-support__cta-title {
        font-size: 1.8em;
    }
    .page-support__cta-description {
        font-size: 1em;
    }
    .page-support__btn--cta {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 40px 0;
    }
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__hero-description {
        font-size: 0.9em;
    }
    .page-support__btn {
        width: 90%;
    }
    .page-support__section-title {
        font-size: 1.6em;
        margin-top: 30px;
    }
    .page-support__section-subtitle {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    .page-support__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-support__faq-answer p {
        font-size: 0.9em;
    }
    .page-support__contact-cards,
    .page-support__resource-grid {
        grid-template-columns: 1fr;
    }
    .page-support__card {
        padding: 20px;
    }
    .page-support__card-title {
        font-size: 1.2em;
    }
    .page-support__cta-title {
        font-size: 1.6em;
    }
    .page-support__cta-description {
        font-size: 0.9em;
    }
    .page-support__btn--cta {
        padding: 10px 20px;
        font-size: 1em;
    }
}