/* css/modern/uretim.css */
/* Production Page Specific Styles */

/* Page Hero - Minimal Style */
.page-hero {
    position: relative;
    height: 400px;
    background-image: url('../../images/service-cnc-isleme.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.9) 0%, rgba(33, 37, 41, 0.9) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: var(--white);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Production Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding: 0 60px;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

/* Quality Control Section */
.quality-control {
    background-color: var(--background-secondary);
}

.quality-content {
    padding-right: 60px;
}

.quality-features {
    margin-top: 40px;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.quality-item .icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.quality-item .icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.quality-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.quality-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.quality-image {
    position: relative;
}

.quality-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technology Showcase */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 85, 164, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.tech-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.tech-card:hover .tech-icon {
    background-color: var(--primary-color);
}

.tech-card:hover .tech-icon i {
    color: var(--white);
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.tech-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tech-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tech-specs li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.tech-specs li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Production Statistics */
.production-stats {
    background-color: var(--background-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.production-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-title span {
    color: var(--white);
    opacity: 0.9;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Utilities */
.align-items-center {
    align-items: center;
}

.bg-light {
    background-color: var(--background-secondary);
}

.bg-dark {
    background-color: var(--background-dark);
}

.light {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-hero {
        height: 350px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .timeline-line {
        left: 50px;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content,
    .process-step:nth-child(even) .step-content {
        text-align: center;
        padding: 30px 0 0;
    }
    
    .quality-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline {
        margin-top: 50px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-step {
        margin-bottom: 50px;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 30px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}