/* Modern Development Process Styles - Optimized */
.development-process {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.development-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(249, 115, 22, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.development-process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Enhanced Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #000000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Modern Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    display: none;
}

@media (min-width: 769px) {
    .process-timeline::before {
        display: block;
        background: linear-gradient(180deg, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(139, 92, 246, 0.8) 25%, 
        rgba(249, 115, 22, 0.8) 50%, 
        rgba(34, 197, 94, 0.8) 75%, 
        rgba(239, 68, 68, 0.8) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 0 6px rgba(59, 130, 246, 0.2),
        0 0 0 12px rgba(59, 130, 246, 0.1),
        0 8px 25px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.timeline-connector::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

/* Step Cards */
.step-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 28px;
    margin: 0 40px;
    width: calc(50% - 60px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Step Header */
.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f97316 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 24px rgba(59, 130, 246, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.step-duration {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Step Content */
.step-content {
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.step-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-deliverables li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.step-deliverables i {
    color: #22c55e;
    font-size: 0.875rem;
    width: 16px;
}

/* Technology Showcase */
.tech-showcase {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.tech-item i {
    font-size: 2rem;
    color: #60a5fa;
}

.tech-item span {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 500;
}

/* Call to Action */
.process-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px 32px;
    background: #1e3a8a;
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
}

.process-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.process-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 12px 24px rgba(34, 197, 94, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 16px 32px rgba(34, 197, 94, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-button i {
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 70px;
        margin-bottom: 40px;
    }
    
    .timeline-connector {
        left: 30px;
    }
    
    .step-card {
        width: auto;
        margin: 0;
        max-width: none;
    }
    
    .step-header {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .development-process {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .process-timeline {
        max-width: 100%;
        margin: 0;
    }
    
    .process-timeline::before {
        left: 20px;
        width: 2px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 50px;
        margin-bottom: 30px;
        position: relative;
    }
    
    .timeline-connector {
        left: 20px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .step-card {
        width: auto;
        margin: 0;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.08),
            0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .step-icon-wrapper {
        align-self: flex-start;
        gap: 12px;
    }
    
    .step-number {
        font-size: 1.25rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .step-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin: 0;
        align-self: flex-start;
    }
    
    .step-duration {
        font-size: 0.8rem;
        padding: 4px 12px;
        align-self: flex-start;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .step-deliverables li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .step-deliverables i {
        font-size: 0.75rem;
    }
    
    .process-cta {
        padding: 30px 24px;
        margin-top: 40px;
        border-radius: 20px;
    }
    
    .process-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .process-cta p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .development-process {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 14px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .process-timeline::before {
        left: 16px;
        width: 2px;
    }
    
    .timeline-item {
        margin-left: 40px;
        margin-bottom: 25px;
    }
    
    .timeline-connector {
        left: 16px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .step-card {
        padding: 16px;
        border-radius: 14px;
    }
    
    .step-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .step-icon-wrapper {
        gap: 10px;
    }
    
    .step-number {
        font-size: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .step-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .step-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .step-duration {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    
    .step-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }
    
    .step-deliverables li {
        font-size: 0.8rem;
        padding: 5px 0;
        gap: 10px;
    }
    
    .step-deliverables i {
        font-size: 0.7rem;
        min-width: 12px;
    }
    
    .process-cta {
        padding: 24px 20px;
        margin-top: 30px;
        border-radius: 16px;
    }
    
    .process-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .process-cta p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
        border-radius: 30px;
        gap: 8px;
    }
    
    .cta-button i {
        font-size: 0.9rem;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}
