/* style/platform-review-customer-service.css */

/* Biến CSS cho màu sắc */
:root {
    --page-platform-review-customer-service-primary-color: #0A2E36;
    --page-platform-review-customer-service-secondary-color: #E0B400;
    --page-platform-review-customer-service-text-dark: #0A2E36;
    --page-platform-review-customer-service-text-light: #FFFFFF;
    --page-platform-review-customer-service-background-light: #F8F8F8;
    --page-platform-review-customer-service-background-dark: #0A2E36;
}

.page-platform-review-customer-service {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--page-platform-review-customer-service-text-dark);
    line-height: 1.6;
}

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

/* Hero Section */
.page-platform-review-customer-service .hero-section {
    background: linear-gradient(135deg, var(--page-platform-review-customer-service-background-dark), var(--page-platform-review-customer-service-secondary-color));
    color: var(--page-platform-review-customer-service-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-platform-review-customer-service .hero-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-platform-review-customer-service .hero-content {
    flex: 2;
    min-width: 300px;
}

.page-platform-review-customer-service .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-platform-review-customer-service-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-platform-review-customer-service .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-platform-review-customer-service .hero-image-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Buttons */
.page-platform-review-customer-service .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-platform-review-customer-service .btn-primary {
    background-color: var(--page-platform-review-customer-service-secondary-color);
    color: var(--page-platform-review-customer-service-text-dark);
    box-shadow: 0 4px 10px rgba(224, 180, 0, 0.3);
}

.page-platform-review-customer-service .btn-primary:hover {
    background-color: #ffc800; /* Slightly lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(224, 180, 0, 0.4);
}

.page-platform-review-customer-service .btn-secondary {
    background-color: transparent;
    color: var(--page-platform-review-customer-service-secondary-color);
    border: 2px solid var(--page-platform-review-customer-service-secondary-color);
}

.page-platform-review-customer-service .btn-secondary:hover {
    background-color: var(--page-platform-review-customer-service-secondary-color);
    color: var(--page-platform-review-customer-service-text-dark);
    transform: translateY(-2px);
}

.page-platform-review-customer-service .btn-lg {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Section Titles */
.page-platform-review-customer-service .section-title {
    font-size: 2.5em;
    color: var(--page-platform-review-customer-service-primary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-platform-review-customer-service .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-platform-review-customer-service-secondary-color);
    border-radius: 2px;
}

/* Intro Section */
.page-platform-review-customer-service .intro-section {
    padding: 60px 0;
    text-align: center;
}

.page-platform-review-customer-service .intro-section p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    color: #333;
}

/* Detail Sections */
.page-platform-review-customer-service .detail-section {
    padding: 80px 0;
}

.page-platform-review-customer-service .detail-section.bg-light {
    background-color: var(--page-platform-review-customer-service-background-light);
}

.page-platform-review-customer-service .content-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.page-platform-review-customer-service .content-block:last-of-type {
    margin-bottom: 0;
}

.page-platform-review-customer-service .content-block.reverse-order {
    flex-direction: row-reverse;
}

.page-platform-review-customer-service .text-content {
    flex: 1;
    min-width: 350px;
}

.page-platform-review-customer-service .text-content h2 {
    font-size: 2em;
    color: var(--page-platform-review-customer-service-primary-color);
    margin-bottom: 25px;
}

.page-platform-review-customer-service .text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-platform-review-customer-service .image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-platform-review-customer-service .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Conclusion Section */
.page-platform-review-customer-service .conclusion-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-platform-review-customer-service-background-dark);
    color: var(--page-platform-review-customer-service-text-light);
}

.page-platform-review-customer-service .conclusion-section .section-title {
    color: var(--page-platform-review-customer-service-secondary-color);
    margin-bottom: 40px;
}

.page-platform-review-customer-service .conclusion-section .section-title::after {
    background-color: var(--page-platform-review-customer-service-text-light);
}

.page-platform-review-customer-service .conclusion-section p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.15em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-platform-review-customer-service .hero-title {
        font-size: 2.8em;
    }
    .page-platform-review-customer-service .section-title {
        font-size: 2em;
    }
    .page-platform-review-customer-service .content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-platform-review-customer-service .content-block.reverse-order {
        flex-direction: column-reverse;
    }
    .page-platform-review-customer-service .text-content, 
    .page-platform-review-customer-service .image-content {
        min-width: unset;
        width: 100%;
    }
    .page-platform-review-customer-service .text-content .btn {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-platform-review-customer-service .hero-section {
        padding: 60px 0;
    }
    .page-platform-review-customer-service .hero-title {
        font-size: 2.2em;
    }
    .page-platform-review-customer-service .hero-description {
        font-size: 1em;
    }
    .page-platform-review-customer-service .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-platform-review-customer-service .detail-section {
        padding: 60px 0;
    }
    .page-platform-review-customer-service .intro-section p,
    .page-platform-review-customer-service .text-content p,
    .page-platform-review-customer-service .conclusion-section p {
        font-size: 1em;
    }
    .page-platform-review-customer-service .btn-lg {
        padding: 12px 28px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-platform-review-customer-service .hero-title {
        font-size: 1.8em;
    }
    .page-platform-review-customer-service .hero-section .container {
        gap: 20px;
    }
    .page-platform-review-customer-service .section-title {
        font-size: 1.5em;
    }
    .page-platform-review-customer-service .btn {
        width: 100%;
        text-align: center;
    }
    .page-platform-review-customer-service .hero-content .btn {
        margin-top: 15px;
    }
    .page-platform-review-customer-service .text-content .btn {
        width: auto;
    }
}