/* Service Details Page Styles */

/* Service Hero Section */
.service-details-hero {
    background: linear-gradient(135deg, #151515 0%, #000000 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.service-details-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero-content {
    color: var(--white-color);
}

.service-category-badge {
    display: inline-block;
    background: rgba(175, 244, 43, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(175, 244, 43, 0.3);
}

.service-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
    font-weight: 600;
}

.service-hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--body-font-color);
}

.service-features-preview {
    margin-bottom: 40px;
}

.service-features-preview h4 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 20px;
}

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

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

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

.service-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-service-details,
.btn-secondary-service-details {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-service-details {
    background: var(--primary-color);
    color: var(--black-color);
}

.btn-primary-service-details:hover {
    background: var(--primary-hover-color);
    color: var(--black-color);
    transform: translateY(-2px);
}

.btn-secondary-service-details {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary-service-details:hover {
    background: var(--white-color);
    color: var(--black-color);
    transform: translateY(-2px);
}

.service-hero-image {
    text-align: center;
}

.service-image-container {
    position: relative;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-image-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.service-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--black-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(175, 244, 43, 0.3);
}

/* Service Details Section */
.service-details-section {
    background: var(--bg-primary);
    padding: 80px 0;
}

.service-long-description {
    margin-bottom: 60px;
}

.service-long-description h2 {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-long-description p {
    color: var(--body-font-color);
    font-size: 16px;
    line-height: 1.7;
}

.service-features-detailed {
    margin-bottom: 60px;
}

.service-features-detailed h2 {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(175, 244, 43, 0.05);
    border-color: rgba(175, 244, 43, 0.3);
    transform: translateY(-2px);
}

.feature-number {
    background: var(--primary-color);
    color: var(--black-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.feature-content p {
    color: var(--body-font-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Service Process */
.service-process {
    margin-bottom: 60px;
}

.service-process h2 {
    color: var(--white-color);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.process-steps {
    display: grid;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(175, 244, 43, 0.05);
    border-color: rgba(175, 244, 43, 0.3);
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover-color) 100%);
    color: var(--black-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.step-content p {
    color: var(--body-font-color);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

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

.service-info-card,
.contact-card,
.related-services {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.service-info-card h3,
.contact-card h3,
.related-services h3 {
    color: var(--white-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--body-font-color);
    font-size: 14px;
}

.info-value {
    color: var(--white-color);
    font-weight: 500;
    font-size: 14px;
}

.contact-card p {
    color: var(--body-font-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-contact-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--primary-color);
    color: var(--black-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact-service:hover {
    background: var(--primary-hover-color);
    color: var(--black-color);
    transform: translateY(-2px);
}

.related-service-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.related-service-item:last-child {
    border-bottom: none;
}

.related-service-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-service-content h4 {
    margin-bottom: 5px;
}

.related-service-content h4 a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-service-content h4 a:hover {
    color: var(--primary-color);
}

.related-service-content p {
    color: var(--body-font-color);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, #151515 0%, #000000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/cta-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

.cta-icon-service-details {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-title-service-details {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--white-color);
    font-weight: 600;
}

.cta-description-service-details {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--body-font-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-service-details {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 36px;
    }
    
    .service-hero-cta {
        justify-content: center;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .cta-title-service-details {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .service-details-hero {
        padding: 80px 0 60px;
    }
    
    .service-hero-title {
        font-size: 28px;
    }
    
    .service-hero-description {
        font-size: 16px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-service-details,
    .btn-secondary-service-details {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .feature-item,
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number,
    .step-number {
        align-self: center;
    }
    
    .cta-buttons-service-details {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title-service-details {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .service-hero-title {
        font-size: 24px;
    }
    
    .service-long-description h2,
    .service-features-detailed h2,
    .service-process h2 {
        font-size: 24px;
    }
    
    .service-info-card,
    .contact-card,
    .related-services {
        padding: 20px;
    }
} 