/* Services Page Styles */

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(even) {
    background-color: var(--background-light);
}

.service-detail-section .image-column img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.service-detail-section .section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.service-detail-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-detail-section .section-text p {
    margin-bottom: 20px;
}

.service-detail-section .section-text ul {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 25px;
}

.service-detail-section .section-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-detail-section .section-text ul li:before {
    content: '\ea3c';
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
}

.service-detail-section .btn {
    margin-top: 10px;
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0 40px;
}

.services-overview-section .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--text-dark);
    background-image: linear-gradient(180deg, rgba(12, 12, 12, 0.8) 0%, rgba(10, 1, 1, 0.85) 100%), url('../assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-detail-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 40px 0;
    }

    .service-detail-section .image-column {
        margin-bottom: 30px;
    }

    .service-detail-section.reverse-mobile .image-column {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}