/* style/index-zowin-customer-service-support.css */

/* General Styles for the Page */
.page-index-zowin-customer-service-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-index-zowin-customer-service-support .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-index-zowin-customer-service-support .hero-section {
    background: linear-gradient(135deg, #1A2B3C 0%, #3B4E63 100%); /* Dark blue/gray gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-zowin-customer-service-support .hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.page-index-zowin-customer-service-support .hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.page-index-zowin-customer-service-support .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Auxiliary color for emphasis */
    position: relative;
    z-index: 1;
}

.page-index-zowin-customer-service-support .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-index-zowin-customer-service-support .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

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

.page-index-zowin-customer-service-support .btn-primary {
    background-color: #FFD700; /* Auxiliary color */
    color: #1A2B3C; /* Main color for text */
    border: 2px solid #FFD700;
}

.page-index-zowin-customer-service-support .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-index-zowin-customer-service-support .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-zowin-customer-service-support .btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.15);
}

/* Section Titles & Descriptions */
.page-index-zowin-customer-service-support .section-title {
    font-size: 2.5em;
    color: #1A2B3C;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.page-index-zowin-customer-service-support .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index-zowin-customer-service-support .section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Support Channels Section */
.page-index-zowin-customer-service-support .support-channels-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-index-zowin-customer-service-support .channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-zowin-customer-service-support .channel-card {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-zowin-customer-service-support .channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-zowin-customer-service-support .channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.page-index-zowin-customer-service-support .channel-title {
    font-size: 1.8em;
    color: #1A2B3C;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-zowin-customer-service-support .channel-text {
    color: #555;
    font-size: 1em;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-index-zowin-customer-service-support .btn-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: color 0.3s ease;
}

.page-index-zowin-customer-service-support .btn-link:hover {
    color: #1A2B3C;
    text-decoration: underline;
}

/* FAQ Section */
.page-index-zowin-customer-service-support .faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.page-index-zowin-customer-service-support .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-index-zowin-customer-service-support .faq-category {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-zowin-customer-service-support .category-title {
    font-size: 1.8em;
    color: #1A2B3C;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-index-zowin-customer-service-support .faq-item {
    margin-bottom: 25px;
}

.page-index-zowin-customer-service-support .faq-question {
    font-size: 1.25em;
    color: #1A2B3C;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-index-zowin-customer-service-support .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-index-zowin-customer-service-support .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-zowin-customer-service-support .faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    padding-left: 15px;
    border-left: 2px solid #eee;
}

.page-index-zowin-customer-service-support .faq-answer.active {
    max-height: 200px; /* Adjust based on expected content length */
    opacity: 1;
    padding-top: 10px;
}

.page-index-zowin-customer-service-support .more-questions-text {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: #444;
}

.page-index-zowin-customer-service-support .text-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-zowin-customer-service-support .text-link:hover {
    color: #1A2B3C;
    text-decoration: underline;
}

/* Commitment Section */
.page-index-zowin-customer-service-support .commitment-section {
    padding: 80px 0;
    background-color: #1A2B3C;
    color: #ffffff;
}

.page-index-zowin-customer-service-support .commitment-section .section-title {
    color: #FFD700;
}

.page-index-zowin-customer-service-support .commitment-section .section-title::after {
    background-color: #ffffff;
}

.page-index-zowin-customer-service-support .commitment-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.page-index-zowin-customer-service-support .commitment-image {
    flex: 1 1 45%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-index-zowin-customer-service-support .commitment-text {
    flex: 1 1 45%;
}

.page-index-zowin-customer-service-support .commitment-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-index-zowin-customer-service-support .commitment-text .btn-primary {
    margin-top: 20px;
}

/* Call to Action Section */
.page-index-zowin-customer-service-support .cta-section {
    padding: 80px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.page-index-zowin-customer-service-support .cta-title {
    font-size: 2.8em;
    color: #1A2B3C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-zowin-customer-service-support .cta-description {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-index-zowin-customer-service-support .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index-zowin-customer-service-support .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-zowin-customer-service-support .hero-title {
        font-size: 2.8em;
    }
    .page-index-zowin-customer-service-support .hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-zowin-customer-service-support .channels-grid, 
    .page-index-zowin-customer-service-support .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-index-zowin-customer-service-support .commitment-content {
        flex-direction: column;
    }
    .page-index-zowin-customer-service-support .commitment-image,
    .page-index-zowin-customer-service-support .commitment-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .page-index-zowin-customer-service-support .cta-title {
        font-size: 2.2em;
    }
    .page-index-zowin-customer-service-support .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-zowin-customer-service-support .btn-large {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-index-zowin-customer-service-support .hero-title {
        font-size: 2.2em;
    }
    .page-index-zowin-customer-service-support .hero-subtitle {
        font-size: 1em;
    }
    .page-index-zowin-customer-service-support .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-zowin-customer-service-support .btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-zowin-customer-service-support .section-title {
        font-size: 2em;
    }
    .page-index-zowin-customer-service-support .section-description {
        font-size: 0.95em;
    }
    .page-index-zowin-customer-service-support .channel-title,
    .page-index-zowin-customer-service-support .category-title {
        font-size: 1.6em;
    }
    .page-index-zowin-customer-service-support .faq-question {
        font-size: 1.1em;
    }
    .page-index-zowin-customer-service-support .cta-title {
        font-size: 1.8em;
    }
    .page-index-zowin-customer-service-support .cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-zowin-customer-service-support .hero-title {
        font-size: 1.8em;
    }
    .page-index-zowin-customer-service-support .hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-zowin-customer-service-support .btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-zowin-customer-service-support .section-title {
        font-size: 1.8em;
    }
    .page-index-zowin-customer-service-support .channel-title,
    .page-index-zowin-customer-service-support .category-title {
        font-size: 1.4em;
    }
    .page-index-zowin-customer-service-support .faq-question {
        font-size: 1em;
    }
    .page-index-zowin-customer-service-support .faq-answer {
        font-size: 0.9em;
    }
    .page-index-zowin-customer-service-support .cta-title {
        font-size: 1.6em;
    }
    .page-index-zowin-customer-service-support .cta-description {
        font-size: 0.9em;
    }
    .page-index-zowin-customer-service-support .btn-large {
        width: 90%;
    }
}