/* style/support.css */

/* Base styles for the support page */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark body background from shared.css */
    background-color: #1a1a2e; /* From shared.css body background */
}

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

.page-support__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #DAA520; /* Gold primary color */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-support__section-description {
    font-size: 18px;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0; /* shared.css is assumed to set body padding-top */
    margin-top: 0;
    overflow: hidden;
    background-color: #2F4F4F; /* Dark slate gray for hero background */
}

.page-support__hero-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px; /* Add padding for content */
    max-width: 1400px;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2; /* Subtle background image */
}

.page-support__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-support__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.page-support__hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #DAA520; /* Gold primary color */
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.page-support__hero-description {
    font-size: 20px;
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-text {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap; /* Prevent text wrap on desktop for single buttons */
}

.page-support__btn-primary {
    background-color: #DAA520; /* Gold primary color */
    color: #ffffff;
    border: 2px solid #DAA520;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.4);
}

.page-support__btn-primary:hover {
    background-color: #ffc107; /* Lighter gold on hover */
    border-color: #ffc107;
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.6);
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background-color: transparent;
    color: #DAA520; /* Gold primary color */
    border: 2px solid #DAA520;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.2);
}

.page-support__btn-secondary:hover {
    background-color: #DAA520;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.4);
    transform: translateY(-2px);
}

.page-support__btn-text {
    background: none;
    border: none;
    color: #DAA520; /* Gold primary color */
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;
    display: block; /* Ensure it takes full width in its container */
    margin-top: 15px;
}

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

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

.page-support__channel-card {
    background-color: #2F4F4F; /* Dark slate gray for card background */
    color: #f0f0f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

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

.page-support__channel-card img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make images circular */
    border: 3px solid #DAA520;
    padding: 10px;
}

.page-support__card-title {
    font-size: 24px;
    font-weight: bold;
    color: #DAA520; /* Gold primary color */
    margin-bottom: 15px;
}

.page-support__card-text {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 25px;
}

/* FAQ Section */
.page-support__faq-list {
    margin-top: 40px;
}

.page-support__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #2F4F4F; /* Dark slate gray for FAQ item background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #2F4F4F; /* Dark slate gray */
    color: #f0f0f0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-support__faq-question:hover {
    background-color: #3b5a5a; /* Slightly lighter dark gray on hover */
    border-color: #DAA520;
}

.page-support__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #DAA520; /* Gold primary color */
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-support__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #DAA520; /* Gold primary color */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none; /* Prevent icon from blocking click event */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.page-support__faq-item.active .page-support__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
    color: #ffffff;
}

.page-support__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background-color: #2F4F4F; /* Dark slate gray for answer background */
    color: #cccccc;
}

.page-support__faq-item.active .page-support__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px 25px !important;
    opacity: 1;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
}

.page-support__faq-answer p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #cccccc;
}

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

.page-support__guide-card {
    background-color: #2F4F4F; /* Dark slate gray for card background */
    color: #f0f0f0;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(218, 165, 32, 0.3);
}

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

.page-support__guide-card img {
    width: 200px;
    
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 2px solid #DAA520;
}

/* Contact CTA Section */
.page-support__contact-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #1a1a2e; /* Same as body background */
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Commitment Section */
.page-support__commitment-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__commitment-list li {
    background-color: #2F4F4F; /* Dark slate gray for list item background */
    color: #f0f0f0;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 17px;
    border-left: 5px solid #DAA520; /* Gold accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__commitment-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-support__commitment-list li strong {
    color: #DAA520; /* Gold primary color */
    font-weight: bold;
}

/* General Image & Container Responsiveness */
.page-support img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles for 1024px */
@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 40px;
    }
    .page-support__hero-description {
        font-size: 18px;
    }
    .page-support__section-title {
        font-size: 30px;
    }
    .page-support__section-description {
        font-size: 16px;
    }
    .page-support__channels-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-support__card-title {
        font-size: 22px;
    }
    .page-support__card-text {
        font-size: 15px;
    }
    .page-support__faq-question h3 {
        font-size: 17px;
    }
    .page-support__faq-toggle {
        font-size: 26px;
        width: 28px;
        height: 28px;
    }
    .page-support__faq-answer p {
        font-size: 15px;
    }
    .page-support__guide-card img {
        
        
    }
    .page-support__commitment-list li {
        font-size: 16px;
    }
}

/* Responsive Styles for 768px (Mobile) */
@media (max-width: 768px) {
    /* Hero Section */
    .page-support__hero-section {
        padding-top: 0 !important; /* Ensure no double padding if body padding is set by shared */
    }
    .page-support__hero-container {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-support__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-support__hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* General containers and text */
    .page-support__container {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-support__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .page-support__section-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .page-support {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Buttons */
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support__btn-text {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-support__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Channels Section */
    .page-support__channels-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
    .page-support__channel-card {
        padding: 25px;
    }
    .page-support__channel-card img {
        
        
        margin-bottom: 15px;
    }
    .page-support__card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .page-support__card-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-support__faq-item {
        margin-bottom: 10px;
    }
    .page-support__faq-question {
        padding: 15px 20px;
    }
    .page-support__faq-question h3 {
        font-size: 16px;
    }
    .page-support__faq-toggle {
        font-size: 24px;
        width: 26px;
        height: 26px;
        margin-left: 15px;
    }
    .page-support__faq-answer {
        padding: 0 20px;
    }
    .page-support__faq-item.active .page-support__faq-answer {
        padding: 15px 20px !important;
    }
    .page-support__faq-answer p {
        font-size: 14px;
    }

    /* Quick Guide Section */
    .page-support__guide-cards {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
    .page-support__guide-card {
        padding: 20px;
    }
    .page-support__guide-card img {
        
        
        margin-bottom: 15px;
    }

    /* Commitment Section */
    .page-support__commitment-list li {
        padding: 18px 20px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    /* Image responsiveness (general, excluding logo items if present) */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}