/* Service Page Styles */
.service-banner {
    width: 100%;

}

.service-banner img {
    width: 100%;
    height: auto;
}

.service-page-title {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
}

.service-page-title h1 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 32px;
    color: #c41230;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-page-title p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    color: #707070;
}

.service-categories {
    padding: 10px 0 60px;
}

.service-categories h2 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.service-categories>.container>p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    color: #707070;
    text-align: center;
    margin-bottom: 60px;
}


.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(207, 92, 124, 0.2);
}

.service-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c41230 0%, #e8879f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.service-card-content {
    padding: 20px;
    text-align: center;
}

.service-card-title {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.service-card-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #c41230;
    color: #fff;
    border-radius: 25px;
    font-family: 'promptregular', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background: #c41230;
    color: #fff;
    text-decoration: none;
}

/* Why Choose EVE Section */
.service-why-section {
    padding: 60px 0;
    background: #fff;
}

.service-why-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-why-content {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .service-why-content {
        padding-left: 0;
        padding-top: 30px;
    }
}

.service-why-content h2 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #c41230;
    margin-bottom: 15px;
}

.service-why-content p {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-why-list li {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #333;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.service-why-list li i {
    color: #c41230;
    margin-right: 12px;
    font-size: 18px;
}

.service-why-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #c41230;
    color: #fff;
    border-radius: 30px;
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-why-btn:hover {
    background: #a00f28;
    color: #fff;
    text-decoration: none;
}

.service-why-btn i {
    margin-left: 10px;
}

.service-why-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.service-why-btn .btn-icon i {
    font-size: 20px;
    margin-left: 0;
}

/* Service Info Section */
.service-info-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.service-info-section h2 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    color: #c41230;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.service-info-section>.container>p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    color: #707070;
    text-align: center;
    margin-bottom: 40px;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .service-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .service-info-grid {
        grid-template-columns: 1fr;
    }
}

.service-info-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-info-icon {
    width: 70px;
    height: 70px;
    background: #c41230;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
}

.service-info-title {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-info-desc {
    font-family: 'promptregular', sans-serif;
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
}

/* Contact CTA */
.service-contact-cta {
    background: #c41230;
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.service-contact-cta h3 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-contact-cta p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 25px 6px 6px;
    border-radius: 50px;
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-contact-btn.btn-phone {
    background: #fff;
    color: #4e4b4b;
}

.service-contact-btn.btn-phone:hover {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

.service-contact-btn.btn-line {
    background: #fff;
    color: #4e4b4b;
    position: relative;
    top: 4px;
}

.service-contact-btn.btn-line:hover {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

.service-contact-btn .btn-icon {
    width: 30px;
    height: 30px;
    border: 2px solid #4e4b4b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 17px;
    /*color: #06c755;*/
}

.service-contact-btn.btn-line .btn-icon {
    border: none;
    font-size: 29px;
}

.service-contact-phone {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.service-contact-phone i {
    margin-right: 10px;
    font-size: 24px;
}

/* FAQ Section */
.service-faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-faq-section h2 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #c41230;
    text-align: center;
    margin-bottom: 10px;
}

.service-faq-section>.container>p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    color: #707070;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-number {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #c41230;
    margin-right: 15px;
    min-width: 30px;
}

.faq-text {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-icon {
    color: #c41230;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px 70px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* About Service Section */
.service-about-section {
    padding: 0 0 50px;
}

.service-about-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-about-content {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .service-about-content {
        padding-left: 0;
        padding-top: 30px;
    }
}

.service-about-content p {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-about-content .sub-title {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #c41230;
    margin: 12px 0 10px;
}

.service-about-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.service-about-list li {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #333;
    padding: 3px 0;
    display: flex;
    align-items: center;
}

.service-about-list li i {
    color: #c41230;
    margin-right: 12px;
    font-size: 18px;
}

.service-read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #c41230;
    color: #fff;
    border-radius: 30px;
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-read-more-btn:hover {
    background: #a00f28;
    color: #fff;
    text-decoration: none;
}

.service-read-more-btn i {
    margin-left: 10px;
}

.service-read-more-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.service-read-more-btn .btn-icon i {
    font-size: 20px;
    margin-left: 0;
}

/* Price Table */
.service-price-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-price-section h2 {
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #c41230;
    text-align: center;
    margin-bottom: 10px;
}

.service-price-section>.container>p {
    font-family: 'promptregular', sans-serif;
    font-size: 16px;
    color: #707070;
    text-align: center;
    margin-bottom: 40px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.price-table thead th {
    background: #c41230;
    color: #fff;
    font-family: 'line_seed_sansRegular_TH', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
}

.price-table tbody td {
    font-family: 'promptregular', sans-serif;
    font-size: 15px;
    color: #333;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: #fafafa;
}

.price-amount {
    font-weight: 600;
    color: #c41230;
}