/* style/contact-customer-service.css */
.page-contact-customer-service {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-contact-customer-service__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    color: #FFD700;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-contact-customer-service__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-contact-customer-service__hero-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-contact-customer-service__hero-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-contact-customer-service__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-contact-customer-service__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-contact-customer-service__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-contact-customer-service__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    z-index: 1;
}

.page-contact-customer-service__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-contact-customer-service__hero-image:hover {
    transform: translateY(-5px);
}

.page-contact-customer-service__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    position: relative;
}

.page-contact-customer-service__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-contact-customer-service__section-subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact-customer-service__channels {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-contact-customer-service__channel-item {
    background-color: #1A2E4B;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-customer-service__channel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-contact-customer-service__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-contact-customer-service__channel-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact-customer-service__channel-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-contact-customer-service__contact-info {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-top: 15px;
}

.page-contact-customer-service__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact-customer-service__link:hover {
    color: #FFEA00;
    text-decoration: underline;
}

.page-contact-customer-service__faq {
    padding: 80px 0;
    background-color: #0A192F;
}

.page-contact-customer-service__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact-customer-service__faq-item {
    background-color: #1A2E4B;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact-customer-service__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A2E4B;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.page-contact-customer-service__faq-question:hover {
    background-color: #24426b;
}

.page-contact-customer-service__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

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

.page-contact-customer-service__faq-answer {
    font-size: 1.1em;
    color: #C0C0C0;
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-contact-customer-service__faq-answer.active {
    max-height: 500px; /* Arbitrary large value to allow content to expand */
    padding: 0 30px 25px;
}

.page-contact-customer-service__faq-answer p {
    margin-bottom: 15px;
}

.page-contact-customer-service__commitment {
    padding: 80px 0;
    background-color: #0A192F;
}

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

.page-contact-customer-service__commitment-item {
    background-color: #1A2E4B;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-customer-service__commitment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-contact-customer-service__commitment-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

.page-contact-customer-service__commitment-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact-customer-service__commitment-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-contact-customer-service__cta {
    padding: 100px 0;
    background: linear-gradient(90deg, #0A192F 0%, #30507a 100%);
    text-align: center;
    color: #E0E0E0;
}

.page-contact-customer-service__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-contact-customer-service__cta-description {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #C0C0C0;
}

.page-contact-customer-service__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.page-contact-customer-service__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-contact-customer-service__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact-customer-service__btn--primary:hover {
    background-color: #FFEA00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-contact-customer-service__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.page-contact-customer-service__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-contact-customer-service__btn--inline {
    padding: 10px 25px;
    font-size: 0.9em;
    margin-top: 15px;
    border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact-customer-service__hero {
        flex-direction: column;
        text-align: center;
    }
    .page-contact-customer-service__hero-image-wrapper {
        margin-top: 30px;
    }
    .page-contact-customer-service__hero-title {
        font-size: 2.8em;
    }
    .page-contact-customer-service__section-title {
        font-size: 2.2em;
    }
    .page-contact-customer-service__section-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-contact-customer-service__hero {
        padding: 60px 20px;
    }
    .page-contact-customer-service__hero-title {
        font-size: 2.2em;
    }
    .page-contact-customer-service__hero-description {
        font-size: 1em;
    }
    .page-contact-customer-service__channel-grid,
    .page-contact-customer-service__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-contact-customer-service__channel-item,
    .page-contact-customer-service__commitment-item {
        padding: 30px;
    }
    .page-contact-customer-service__faq-question {
        font-size: 1.2em;
        padding: 20px 25px;
    }
    .page-contact-customer-service__faq-answer {
        padding: 0 25px 20px;
    }
    .page-contact-customer-service__cta-title {
        font-size: 2.5em;
    }
    .page-contact-customer-service__cta-description {
        font-size: 1.2em;
    }
    .page-contact-customer-service__cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    .page-contact-customer-service__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-contact-customer-service__hero-title {
        font-size: 1.8em;
    }
    .page-contact-customer-service__section-title {
        font-size: 1.8em;
    }
    .page-contact-customer-service__section-subtitle {
        font-size: 0.9em;
    }
    .page-contact-customer-service__channel-title,
    .page-contact-customer-service__commitment-title {
        font-size: 1.5em;
    }
    .page-contact-customer-service__cta-title {
        font-size: 2em;
    }
    .page-contact-customer-service__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}