/* Service Detail Page Styles */

.service-hero-section {
    position: relative;
}

.service-detail-section {
    position: relative;
}

.service-detail-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.service-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-icon-large {
    text-align: center;
    margin: 30px 0;
}

.service-icon-large i {
    font-size: 80px;
    color: var(--primary-color);
    display: inline-block;
    padding: 30px;
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.1) 0%, rgba(96, 202, 249, 0.1) 100%);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    line-height: 80px;
}

.service-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.service-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 20px;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.service-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 12px;
}

.service-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-content ul,
.service-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.service-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-highlights {
    background: #f7fafc;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
}

.service-highlights h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-size: 20px;
}

.service-cta {
    background: linear-gradient(135deg, rgba(1, 192, 87, 0.1) 0%, rgba(96, 202, 249, 0.1) 100%);
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid rgba(1, 192, 87, 0.2);
}

.service-cta h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Sidebar Styles */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
    padding-left: 3px;
}

.related-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services-list li {
    margin-bottom: 12px;
}

.related-services-list a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f7fafc;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.related-services-list a:hover {
    background: rgba(1, 192, 87, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 18px;
    color: var(--primary-color);
}

.related-services-list i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 12px;
    width: 24px;
    text-align: center;
}

.related-services-list span {
    font-size: 15px;
    font-weight: 500;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .service-detail-content {
        padding: 30px 25px;
    }
    
    .service-icon-large i {
        font-size: 60px;
        width: 120px;
        height: 120px;
        line-height: 60px;
        padding: 25px;
    }
    
    .service-content h2 {
        font-size: 28px;
    }
    
    .service-content h3 {
        font-size: 22px;
    }
    
    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-detail-content {
        padding: 25px 20px;
    }
    
    .service-icon-large {
        margin: 20px 0;
    }
    
    .service-icon-large i {
        font-size: 50px;
        width: 100px;
        height: 100px;
        line-height: 50px;
        padding: 20px;
    }
    
    .service-content {
        font-size: 15px;
    }
    
    .service-content h2 {
        font-size: 24px;
        margin: 25px 0 15px;
    }
    
    .service-content h3 {
        font-size: 20px;
        margin: 20px 0 12px;
    }
    
    .service-highlights {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .service-highlights h3 {
        font-size: 20px;
    }
    
    .service-cta {
        padding: 25px 20px;
    }
    
    .service-cta h3 {
        font-size: 24px;
    }
    
    .service-cta p {
        font-size: 15px;
    }
    
    .service-cta .btn-default {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .sidebar-widget h4 {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .service-detail-content {
        padding: 20px 15px;
    }
    
    .service-content h2 {
        font-size: 22px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .service-highlights {
        padding: 20px 15px;
    }
    
    .service-cta {
        padding: 20px 15px;
    }
    
    .service-cta h3 {
        font-size: 20px;
    }
    
    .sidebar-widget {
        padding: 20px 15px;
    }
}

