/* style/platform-features-customer-service-channels.css */

.page-platform-features-customer-service-channels {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #1a242f; /* Dark background, slightly lighter than main color */
}

.page-platform-features-customer-service-channels__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-platform-features-customer-service-channels__hero {
    background: linear-gradient(135deg, #2C3E50, #1a242f); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-platform-features-customer-service-channels__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-platform-features-customer-service-channels__hero > .page-platform-features-customer-service-channels__container {
    position: relative;
    z-index: 1;
}

.page-platform-features-customer-service-channels__title {
    font-size: 3.5em;
    color: #F39C12; /* Accent color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-platform-features-customer-service-channels__subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-platform-features-customer-service-channels__section {
    padding: 60px 0;
    background-color: #1a242f;
    color: #f0f0f0;
}

.page-platform-features-customer-service-channels__section:nth-of-type(even) {
    background-color: #2C3E50; /* Primary color for alternating sections */
}

.page-platform-features-customer-service-channels__heading {
    font-size: 2.5em;
    color: #F39C12; /* Accent color for section headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-features-customer-service-channels__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F39C12;
    border-radius: 2px;
}

.page-platform-features-customer-service-channels__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #c0c0c0;
}

.page-platform-features-customer-service-channels__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-platform-features-customer-service-channels__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-platform-features-customer-service-channels__content-grid--reverse .page-platform-features-customer-service-channels__text-content {
    order: 2;
}

.page-platform-features-customer-service-channels__content-grid--reverse .page-platform-features-customer-service-channels__image-wrapper {
    order: 1;
}

.page-platform-features-customer-service-channels__text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-platform-features-customer-service-channels__text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-platform-features-customer-service-channels__text-content ul li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #f0f0f0;
}

.page-platform-features-customer-service-channels__text-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    color: #F39C12;
}

.page-platform-features-customer-service-channels__image-wrapper {
    text-align: center;
}

.page-platform-features-customer-service-channels__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-platform-features-customer-service-channels__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-platform-features-customer-service-channels__channel-card {
    background-color: #2C3E50; /* Primary color for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-platform-features-customer-service-channels__channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-platform-features-customer-service-channels__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(243, 156, 18, 0.7));
}

.page-platform-features-customer-service-channels__channel-title {
    font-size: 1.8em;
    color: #F39C12; /* Accent color for card titles */
    margin-bottom: 15px;
}

.page-platform-features-customer-service-channels__channel-text {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.page-platform-features-customer-service-channels__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-platform-features-customer-service-channels__list li {
    background-color: #2C3E50;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #f0f0f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 60px;
}

.page-platform-features-customer-service-channels__list li strong {
    color: #F39C12;
}

.page-platform-features-customer-service-channels__list li::before {
    content: '💡';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.page-platform-features-customer-service-channels__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-platform-features-customer-service-channels__button--primary {
    background-color: #F39C12; /* Accent color for primary buttons */
    color: #2C3E50;
    border: 2px solid #F39C12;
}

.page-platform-features-customer-service-channels__button--primary:hover {
    background-color: #e08e0b;
    transform: translateY(-3px);
}

.page-platform-features-customer-service-channels__button--secondary {
    background-color: transparent;
    color: #F39C12;
    border: 2px solid #F39C12;
    margin-left: 15px;
}

.page-platform-features-customer-service-channels__button--secondary:hover {
    background-color: #F39C12;
    color: #2C3E50;
    transform: translateY(-3px);
}

.page-platform-features-customer-service-channels__button-group {
    text-align: center;
    margin-top: 50px;
}

.page-platform-features-customer-service-channels__button-group .page-platform-features-customer-service-channels__button:first-child {
    margin-left: 0;
}

.page-platform-features-customer-service-channels__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-platform-features-customer-service-channels__cta-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-platform-features-customer-service-channels__title {
        font-size: 2.8em;
    }
    .page-platform-features-customer-service-channels__heading {
        font-size: 2em;
    }
    .page-platform-features-customer-service-channels__content-grid {
        grid-template-columns: 1fr;
    }
    .page-platform-features-customer-service-channels__content-grid--reverse .page-platform-features-customer-service-channels__text-content,
    .page-platform-features-customer-service-channels__content-grid--reverse .page-platform-features-customer-service-channels__image-wrapper {
        order: unset;
    }
    .page-platform-features-customer-service-channels__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-platform-features-customer-service-channels__button-group .page-platform-features-customer-service-channels__button {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    .page-platform-features-customer-service-channels__button-group .page-platform-features-customer-service-channels__button:first-child {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-platform-features-customer-service-channels__title {
        font-size: 2.2em;
    }
    .page-platform-features-customer-service-channels__subtitle {
        font-size: 1.1em;
    }
    .page-platform-features-customer-service-channels__heading {
        font-size: 1.8em;
    }
    .page-platform-features-customer-service-channels__channel-grid {
        grid-template-columns: 1fr;
    }
    .page-platform-features-customer-service-channels__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-platform-features-customer-service-channels__title {
        font-size: 1.8em;
    }
    .page-platform-features-customer-service-channels__subtitle {
        font-size: 1em;
    }
    .page-platform-features-customer-service-channels__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}