* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.process-section-wrapper {
    background: #181c22;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}
.process-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}
.process-content h2 {
    font-size: 3.3rem;
    font-weight: bold;
    color: #e6e6e6;
    margin-bottom: 50px;
    position: relative;
}
.process-content h2::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #4a90c2, #6ba3d6);
    border-radius: 2px;
}
.process-steps {
    list-style: none;
}
.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.6s ease forwards;
}
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.step-number {
    background: #1b222a;
    color: #fff;
    border: 2px solid #4a90c2;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.step-number:hover, .process-step:hover .step-number {
    background: linear-gradient(135deg, #4a90c2, #6ba3d6);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 18px 0 rgba(76,205,196,0.18);
    transform: translateY(-3px) scale(1.08);
}
.step-content {
    flex: 1;
    padding-top: 5px;
}
.step-title {
    font-size: 1.22rem;
    font-weight: bold;
    color: #4a90c2;
    margin-bottom: 8px;
}
.step-description {
    color: #b0b0b0;
    font-size: 1.09rem;
    line-height: 1.6;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: 40px;
    background: #232a33;
    z-index: 1;
}
.contact-form {
    background: #232a33;
    color: #e6e6e6;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.6s ease forwards;
    animation-delay: 0.5s;
}
.form-title {
    color: #4a90c2;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 8px;
}
.form-subtitle {
    color: #b0b0b0;
    font-size: 1.13rem;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
.form-input {
    background: #181c22;
    color: #e6e6e6;
    width: 100%;
    padding: 15px;
    border: 2px solid #232a33;
    border-radius: 8px;
    font-size: 1.09rem;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #4a90c2;
    background: #232a33;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 163, 214, 0.2);
}
.form-input.input-error {
    border-color: #e74c3c;
    background: #2a1a1a;
    color: #fff;
    animation: shake 0.2s linear 1;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.submit-btn {
    background: linear-gradient(135deg, #4a90c2, #6ba3d6);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #3576a8, #4a90c2);
}
.submit-btn:active {
    transform: translateY(0);
}
.arrow-icon {
    transition: transform 0.3s ease;
}
.submit-btn:hover .arrow-icon {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .process-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-content h2 {
        font-size: 2.2rem;
    }
    .contact-form {
        padding: 30px 25px;
        position: static;
    }
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .step-title {
        font-size: 1.2rem;
    }
}
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}
