/* style/index-customer-support.css */
.page-index-customer-support {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

.page-index-customer-support .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-index-customer-support__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-customer-support__hero-content {
    max-width: 900px;
    z-index: 10;
}

.page-index-customer-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-index-customer-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-customer-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    overflow: hidden;
}

.page-index-customer-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Buttons */
.page-index-customer-support__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-index-customer-support__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-index-customer-support__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-customer-support__btn--secondary {
    background-color: #1a3a60;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-index-customer-support__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-index-customer-support__btn--link {
    background: none;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 10px;
    margin-right: 10px;
}

.page-index-customer-support__btn--link:hover {
    background-color: #FFD700;
    color: #0A192F;
}

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

/* General Section Styling */
.page-index-customer-support__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-index-customer-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #e0e0e0;
}

/* Contact Channels */
.page-index-customer-support__contact-channels {
    padding: 60px 20px;
    background-color: #0A192F;
}

.page-index-customer-support__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-customer-support__channel-item {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-customer-support__channel-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-index-customer-support__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-customer-support__channel-description,
.page-index-customer-support__email-address,
.page-index-customer-support__phone-number {
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-index-customer-support__faq {
    padding: 60px 20px;
    background-color: #0A192F;
}

.page-index-customer-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-index-customer-support__faq-category {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-customer-support__faq-category-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-index-customer-support__faq-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-index-customer-support__faq-category ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.page-index-customer-support__faq-category ul li::before {
    content: '▪';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Commitment Section */
.page-index-customer-support__commitment {
    padding: 60px 20px;
    background-color: #0A192F;
}

.page-index-customer-support__commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-index-customer-support__point-item {
    background-color: #1a3a60;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-customer-support__point-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-customer-support__point-item p {
    color: #e0e0e0;
}

/* Tips Section */
.page-index-customer-support__tips {
    padding: 60px 20px;
    background-color: #0A192F;
}

.page-index-customer-support__tips-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.page-index-customer-support__tips-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-index-customer-support__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.page-index-customer-support__tips-list li {
    background-color: #1a3a60;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-customer-support__tip-highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Call to Action */
.page-index-customer-support__cta {
    padding: 80px 20px;
    background: linear-gradient(45deg, #0A192F, #333);
    text-align: center;
    color: #FFFFFF;
}

.page-index-customer-support__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-index-customer-support__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-index-customer-support__cta-small-text {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
}

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

    .page-index-customer-support__hero-content {
        margin-right: 50px;
    }

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

    .page-index-customer-support__hero-description {
        font-size: 1.3em;
    }

    .page-index-customer-support__tips-content {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .page-index-customer-support__tips-image {
        margin-right: 40px;
    }
}

@media (max-width: 767px) {
    .page-index-customer-support__hero-title {
        font-size: 2.5em;
    }

    .page-index-customer-support__hero-description {
        font-size: 1em;
    }

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

    .page-index-customer-support__channel-title {
        font-size: 1.5em;
    }

    .page-index-customer-support__faq-category-title {
        font-size: 1.4em;
    }

    .page-index-customer-support__cta-title {
        font-size: 2.2em;
    }
}