/* Services Page & Service Detail Page CSS - Add to your style.css */
/* Page Header */
.page-header {
    background: linear-gradient(0deg, rgba(12, 66, 74, 0.95), rgba(12, 66, 74, 0.2)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 150px 0 80px;
    margin-top: 0;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--white);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}
/* Services Page Styles */
.services-intro {
    background: var(--white);
}

.main-services {
    background: var(--light-bg);
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.service-features-list i {
    color: var(--primary-red);
    font-size: 14px;
    margin-right: 10px;
}

.service-detail-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}

.service-detail-link:hover {
    color: var(--text-dark);
}

/* Service Features Section */
.service-features {
    background: var(--dark-bg);
}

.feature-benefit-card {
    padding: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--white);
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* How It Works */
.how-it-works {
    background: var(--white);
}

.work-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.1);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon-wrapper i {
    font-size: 36px;
    color: var(--white);
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Service Detail Page Styles */
.service-detail-content {
    background: var(--white);
}

.detail-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.detail-section {
    background: var(--white);
}

.detail-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-subheading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.detail-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.included-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 10px;
}

.included-item i {
    color: var(--primary-red);
    font-size: 18px;
    margin-right: 12px;
}

.included-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--primary-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.timeline-content {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-small i {
    font-size: 24px;
    color: var(--primary-red);
}

.benefit-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.services-list li {
    border-bottom: 1px solid #e9ecef;
}

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

.services-list a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-list a:hover {
    color: var(--primary-red);
    padding-left: 10px;
}

.services-list a i:first-child {
    font-size: 18px;
    margin-right: 15px;
    color: var(--primary-red);
}

.services-list a span {
    flex-grow: 1;
    font-weight: 500;
    font-size: 15px;
}

.services-list a i:last-child {
    font-size: 12px;
}

/* Quote Widget */
.quote-widget {
    background: var(--dark-bg) !important;
}

.widget-text {
    font-size: 14px;
    line-height: 1.7;
}

.quote-sidebar-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
}

.quote-sidebar-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quote-sidebar-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: none;
}

/* Contact Widget */
.contact-widget {
    background: var(--light-bg) !important;
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-widget-item:last-child {
    margin-bottom: 0;
}

.contact-widget-item i {
    font-size: 24px;
    color: var(--primary-red);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Related Services */
.related-services {
    background: var(--light-bg);
}

.related-service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.related-service-image {
    height: 200px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.1);
}

.related-service-content {
    padding: 24px;
}

.related-service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.related-service-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.related-service-link {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.related-service-link:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .timeline-marker {
        left: -42px;
    }

    .detail-main-image img {
        height: 350px;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
}

@media (max-width: 767px) {
    .timeline-marker {
        left: -41px;
    }
    .detail-main-image img {
        height: 280px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .step-number {
        font-size: 48px;
    }
    
    .step-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-top: 40px;
    }
    
    .step-icon-wrapper i {
        font-size: 28px;
    }
}
