/* Other Services Page Specific Styles */

/* Work Process Section - Why Choose Us */
.work-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.work-process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-process-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.work-process-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.process-timeline {
    position: relative;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #4673AF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(70, 115, 175, 0.3);
}

.step-content {
    width: 45%;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.projects-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    margin-bottom: 5px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.project-content {
    padding: 25px;
}

.project-content h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.project-content p {
    color: #666;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.meta-label {
    color: #999;
}

.meta-value {
    color: #4673AF;
    font-weight: 500;
}

/* Service Details Section */
.service-details-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-region h5 {
    color: #007bff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-region p {
    margin-bottom: 0.25rem;
    color: #666;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

/* Service Overview Section - стили из about.css */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Services List Grid */
.services-list {
    padding: 80px 0;
    background: #ffffff;
}

.services-list .card {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.services-list .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-list .card-body {
    padding: 30px;
}

.services-list .card-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-list .card-text {
    color: #666;
    line-height: 1.6;
}

/* Qualifications Section */
.qualifications-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.qualifications-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.qualifications-section .d-flex {
    margin-bottom: 30px;
}

.qualifications-section svg {
    flex-shrink: 0;
}

.qualifications-section h5 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.qualifications-section p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-areas-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-areas-section .section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-areas-section .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-area-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.service-area-card:hover {
    background: #4673AF;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 115, 175, 0.2);
}

.area-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4673AF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.area-icon svg {
    color: white;
}

.service-area-card:hover .area-icon {
    background: white;
}

.service-area-card:hover .area-icon svg {
    color: #4673AF;
}

.service-area-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-area-card:hover h3 {
    color: white;
}

.service-area-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.service-area-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4673AF 0%, #2c5aa0 100%);
    color: white;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-cta-section .btn {
    font-size: 1.1rem;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-cta-section .btn-primary {
    background: white;
    color: #4673AF;
    border: 2px solid white;
}

.contact-cta-section .btn-primary:hover {
    background: transparent;
    color: white;
}

.contact-cta-section .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta-section .btn-outline-primary:hover {
    background: white;
    color: #4673AF;
}

.contact-cta-section .d-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Fix container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Header Improvements */
.row.mb-5 .col-lg-12 {
    margin-bottom: 40px;
}

.row.mb-5 h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.row.mb-5 .lead {
    font-size: 1.3rem;
    color: #666;
}

/* Service Overview Image */
.col-md-6 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Fix text styles */
.row.text-center.mt-4 {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px !important;
}

.row.text-center.mt-4 h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.row.text-center.mt-4 p {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: column !important;
    }
    
    .step-number {
        position: relative;
        left: 40px;
        transform: none;
        margin-bottom: 20px;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .row.mb-5 h1 {
        font-size: 2rem;
    }
    
    .row.mb-5 .lead {
        font-size: 1.1rem;
    }
    
    .contact-cta-section h2 {
        font-size: 2rem;
    }
    
    .contact-cta-section .lead {
        font-size: 1.1rem;
    }
    
    .services-list .card-body {
        padding: 20px;
    }
    
    .col-md-6 {
        margin-bottom: 30px;
    }
    
    .work-process-section .section-header h2 {
        font-size: 2rem;
    }
    
    .projects-section .section-header h2 {
        font-size: 2rem;
    }
    
    .qualifications-section h2 {
        font-size: 2rem;
    }
    
    .service-areas-section h2 {
        font-size: 2rem;
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-card {
        padding: 30px 20px;
    }
}

/* Fix main content padding */
.main-content .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Section spacing */
.row.mb-5 {
    margin-bottom: 60px !important;
}

/* Fix Bootstrap overrides */
.btn-lg {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.gap-3 {
    gap: 1rem !important;
}

/* Border top style for CTA */
.border-top {
    border-top: 1px solid #e0e0e0 !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}