/* Service Detail Page */
.service-detail-section {
    padding: 45px 0;
    background: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Service Meta */
.service-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(81, 177, 70, 0.05);
    border-radius: 20px;
    border-left: 4px solid #51b146;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}



.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.main-image img{
    max-height: 500px;
}

.main-image:hover {
    transform: translateY(-5px);
}


.service-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: #004b6b;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Service Content */
.service-content {
    margin-bottom: 50px;
}

.service-description,
.service-features,
.service-benefits,
.service-process {
    margin-bottom: 40px;
}

.service-description h3,
.service-features h3,
.service-benefits h3,
.service-process h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004b6b;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.service-description h3::before,
.service-features h3::before,
.service-benefits h3::before,
.service-process h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 2px;
}

.service-description p,
.service-benefits p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(81, 177, 70, 0.05);
    border-radius: 10px;
    border-left: 3px solid #51b146;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(81, 177, 70, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: #51b146;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #333333;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 75, 107, 0.05);
    border-radius: 15px;
    border-left: 4px solid #004b6b;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(0, 75, 107, 0.1);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #004b6b, #51b146);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #004b6b;
    margin: 0 0 8px 0;
}

.step-content p {
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

/* Service Stats */
.service-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(81, 177, 70, 0.05), rgba(0, 75, 107, 0.05));
    border-radius: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #004b6b;
    margin: 0 0 5px 0;
}

.stat-content p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    font-weight: 500;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 60px;
}

.contact-btn,
.share-btn,
.print-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #51b146;
    background: transparent;
    color: #51b146;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn {
    background: #51b146;
    color: #ffffff;
}

.contact-btn:hover {
    background: #004b6b;
    border-color: #004b6b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 177, 70, 0.3);
}

.share-btn:hover,
.print-btn:hover {
    background: #51b146;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 177, 70, 0.3);
}

/* Related Services */
.related-services {
    margin-top: 80px;
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #004b6b;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.related-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 25px 25px 15px 25px;
    flex-shrink: 0;
}

.related-content {
    padding: 0 25px 25px 25px;
}

.related-card-title {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.related-card-title a {
    color: #004b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-card-title a:hover {
    color: #51b146;
}

.related-excerpt {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-footer {
    display: flex;
    justify-content: flex-end;
}

.view-service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #51b146, #004b6b);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 177, 70, 0.4);
}

.view-service-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-service-btn:hover i {
    transform: translateX(3px);
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.contact-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: slideInUp 0.3s ease-out;
}

.contact-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.contact-modal-header h3 {
    margin: 0;
    color: #004b6b;
    font-size: 1.3rem;
}

.close-contact-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-contact-modal:hover {
    color: #51b146;
}

.contact-modal-body p {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(81, 177, 70, 0.05);
    border-radius: 15px;
    border-left: 4px solid #51b146;
}

.contact-method i {
    color: #51b146;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-method h4 {
    margin: 0 0 5px 0;
    color: #004b6b;
    font-size: 1rem;
}

.contact-method a {
    color: #51b146;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #004b6b;
}

/* Dark Theme */
.dark-theme .service-detail-section {
    background: #1a1a1a;
}

.dark-theme .service-meta {
    background: rgba(81, 177, 70, 0.1);
    border-left-color: #51b146;
}

.dark-theme .service-title {
    color: #eeeff1;
}

.dark-theme .service-subtitle {
    color: #cccccc;
}

.dark-theme .service-description h3,
.dark-theme .service-features h3,
.dark-theme .service-benefits h3,
.dark-theme .service-process h3 {
    color: #eeeff1;
}

.dark-theme .service-description p,
.dark-theme .service-benefits p {
    color: #e0e0e0;
}

.dark-theme .feature-item {
    background: rgba(81, 177, 70, 0.1);
}

.dark-theme .feature-item span {
    color: #e0e0e0;
}

.dark-theme .process-step {
    background: rgba(0, 75, 107, 0.1);
}

.dark-theme .step-content h4 {
    color: #eeeff1;
}

.dark-theme .step-content p {
    color: #e0e0e0;
}

.dark-theme .service-stats {
    background: linear-gradient(135deg, rgba(81, 177, 70, 0.1), rgba(0, 75, 107, 0.1));
}

.dark-theme .stat-content h4 {
    color: #eeeff1;
}

.dark-theme .stat-content p {
    color: #cccccc;
}

.dark-theme .service-actions {
    border-color: #333333;
}

.dark-theme .related-title {
    color: #eeeff1;
}

.dark-theme .related-card {
    background: #2d2d2d;
}

.dark-theme .related-card-title a {
    color: #eeeff1;
}

.dark-theme .related-card-title a:hover {
    color: #51b146;
}

.dark-theme .related-excerpt {
    color: #cccccc;
}

.dark-theme .contact-modal-content {
    background: #2d2d2d;
}

.dark-theme .contact-modal-header h3 {
    color: #eeeff1;
}

.dark-theme .contact-modal-body p {
    color: #cccccc;
}

.dark-theme .contact-method {
    background: rgba(81, 177, 70, 0.1);
}

.dark-theme .contact-method h4 {
    color: #eeeff1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-meta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .service-detail-section {
        padding: 40px 0;
    }
    
    .service-meta {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-description p,
    .service-benefits p {
        font-size: 1rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-btn,
    .share-btn,
    .print-btn {
        justify-content: center;
    }
    
    .related-title {
        font-size: 1.6rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .service-description p,
    .service-benefits p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .related-content {
        padding: 0 20px 20px 20px;
    }
}

