/* NSX Bilişim - Additional Sections CSS */
/* ======================================= */

/* PROCESS SECTION */
.process-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="process-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23274083" stop-opacity="0.03"/><stop offset="100%" stop-color="%23274083" stop-opacity="0"/></radialGradient></defs><circle cx="300" cy="200" r="120" fill="url(%23process-bg)"/><circle cx="700" cy="600" r="180" fill="url(%23process-bg)"/><circle cx="500" cy="400" r="150" fill="url(%23process-bg)"/></svg>');
    pointer-events: none;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light), var(--accent-color));
    border-radius: 2px;
    z-index: 1;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.process-step:hover .step-number::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.step-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(39, 64, 131, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 64, 131, 0.03), transparent);
    transition: left 0.8s ease;
}

.process-step:hover .step-content::before {
    left: 100%;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: var(--primary-light);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
}

/* TECHNOLOGIES SECTION */
.technologies-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="tech-grid" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23274083" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23tech-grid)"/></svg>');
    pointer-events: none;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.tech-category {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
    border: 1px solid rgba(39, 64, 131, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

.tech-category h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(39, 64, 131, 0.2);
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.tech-badge:hover::before {
    left: 100%;
}

.tech-badge:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 64, 131, 0.3);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
}

.tech-badge:active {
    transform: scale(0.98);
}

/* Special colors for different categories */
.tech-category:nth-child(1) .tech-badge {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.tech-category:nth-child(2) .tech-badge {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.tech-category:nth-child(3) .tech-badge {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.tech-category:nth-child(4) .tech-badge {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* CTA SECTION */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-lighter) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="cta-bg" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23cta-bg)"/><circle cx="800" cy="400" r="200" fill="url(%23cta-bg)"/><circle cx="400" cy="800" r="180" fill="url(%23cta-bg)"/></svg>');
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.4rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    border: 2px solid var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1.4rem 3rem;
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 220px;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.05);
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cta-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.cta-feature:hover::before {
    left: 100%;
}

.cta-feature:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-feature .feature-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.cta-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-feature span {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .cta-content h2 {
        font-size: 3.5rem;
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .process-section,
    .technologies-section,
    .cta-section {
        padding: 6rem 0;
    }
    
    .process-timeline {
        gap: 3rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .step-number {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-category {
        padding: 2.5rem 2rem;
    }
    
    .tech-category h3 {
        font-size: 1.4rem;
    }
    
    .tech-icons {
        gap: 0.8rem;
    }
    
    .tech-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.8rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
    
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-feature {
        padding: 1.5rem;
    }
    
    .cta-feature .feature-icon {
        font-size: 2.5rem;
    }
    
    .cta-feature span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-section,
    .technologies-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .process-timeline {
        gap: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .tech-category {
        padding: 2rem 1.5rem;
    }
    
    .tech-category h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .tech-icons {
        gap: 0.6rem;
    }
    
    .tech-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-feature {
        padding: 1.2rem;
    }
    
    .cta-feature .feature-icon {
        font-size: 2rem;
    }
    
    .cta-feature span {
        font-size: 0.95rem;
    }
}

/* ACCESSIBILITY ENHANCEMENTS */
.process-step:focus,
.tech-category:focus,
.tech-badge:focus,
.cta-feature:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    .process-step,
    .tech-category,
    .tech-badge,
    .cta-feature {
        border: 2px solid var(--primary-color);
    }
    
    .step-number {
        border: 3px solid var(--white);
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    .process-step,
    .tech-category,
    .tech-badge,
    .cta-feature,
    .step-number,
    .step-content {
        transition: none;
        animation: none;
    }
    
    .process-step:hover,
    .tech-category:hover,
    .tech-badge:hover,
    .cta-feature:hover {
        transform: none;
    }
    
    .cta-section::before {
        animation: none;
    }
}

/* PRINT STYLES */
@media print {
    .process-section,
    .technologies-section {
        padding: 2rem 0;
        background: white;
    }
    
    .cta-section {
        display: none;
    }
    
    .process-step,
    .tech-category {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .step-number {
        background: #f5f5f5;
        color: #333;
    }
    
    .tech-badge {
        background: #f5f5f5;
        color: #333;
        border: 1px solid #ccc;
    }
}

/* END OF SECTIONS CSS */