.request-section {
    min-height: calc(100vh - 60px);
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.request-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 3rem 3.5rem;
    border: 1px solid #e9ecef;
}
.request-header {
    text-align: center;
    margin-bottom: 3rem;
}
.request-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.75rem;
}
.request-header p {
    font-size: 1.05rem;
    color: #6c757d;
}
.progress-bar-container {
    margin-bottom: 3rem;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 2.5rem;
}
.progress-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}
.progress-line {
    position: absolute;
    top: 18px;
    left: 0;
    height: 2px;
    background: #ff7f2a;
    transition: width 0.3s ease;
    z-index: 1;
}
.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}
.progress-step.active .step-circle {
    background: #ff7f2a;
    color: white;
    border-color: #ff7f2a;
}
.progress-step.completed .step-circle {
    background: #28a745;
    color: white;
    border-color: #28a745;
}
.step-label {
    font-size: 0.75rem;
    margin-top: 0.6rem;
    color: #6c757d;
    text-align: center;
}
.progress-step.active .step-label {
    color: #ff7f2a;
    font-weight: 500;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.choice-card {
    padding: 2rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}
.choice-card:hover {
    border-color: #ff7f2a;
    transform: translateY(-2px);
}
.choice-card.selected {
    border-color: #ff7f2a;
    background: #fff5ed;
}
.choice-card i {
    font-size: 2.5rem;
    color: #ff7f2a;
    margin-bottom: 1rem;
}
.choice-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}
.choice-card p {
    font-size: 0.95rem;
    color: #6c757d;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #343a40;
    font-size: 0.95rem;
}
.form-group label .required {
    color: #dc3545;
    margin-left: 0.15rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff7f2a;
    box-shadow: 0 0 0 2px rgba(255, 127, 42, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #6c757d;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.file-upload-area {
    border: 1px dashed #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}
.file-upload-area:hover {
    border-color: #ff7f2a;
    background: #fff5ed;
}
.file-upload-area.drag-over {
    border-color: #ff7f2a;
    background: #fff5ed;
}
.file-upload-area i {
    font-size: 2rem;
    color: #ff7f2a;
    margin-bottom: 0.75rem;
}
.file-upload-area p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}
.file-upload-area input[type="file"] {
    display: none;
}
.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    margin-top: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
}
.uploaded-file i {
    color: #28a745;
    margin-right: 0.5rem;
}
.uploaded-file span {
    flex-grow: 1;
    font-size: 0.85rem;
    color: #343a40;
}
.uploaded-file button {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
}
.code-input-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.code-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: white;
}
.code-input:focus {
    outline: none;
    border-color: #ff7f2a;
    box-shadow: 0 0 0 2px rgba(255, 127, 42, 0.1);
}
.resend-code {
    text-align: center;
    margin-top: 1rem;
}
.resend-code button {
    background: none;
    border: none;
    color: #ff7f2a;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
}
.terms-box {
    max-height: 250px;
    overflow-y: auto;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    margin-bottom: 1.25rem;
}
.terms-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}
.terms-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 0.75rem;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.checkbox-group input[type="checkbox"] {
    margin-top: 0.15rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.checkbox-group label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    margin-bottom: 0;
}
.review-section {
    margin-bottom: 1.5rem;
}
.review-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ff7f2a;
}
.review-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f8f9fa;
}
.review-item:last-child {
    border-bottom: none;
}
.review-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}
.review-value {
    color: #343a40;
    text-align: right;
    max-width: 60%;
    font-size: 0.9rem;
}
.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.alert i {
    font-size: 1.2rem;
}
.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}
.alert-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
}
.btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary {
    background: #ff7f2a;
    color: white;
}
.btn-primary:hover {
    background: #ff9f5f;
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.btn-secondary {
    background: #6c757d;
    color: white;
}
.btn-secondary:hover {
    background: #5a6268;
}
.btn-outline {
    background: white;
    border: 1px solid #e9ecef;
    color: #495057;
}
.btn-outline:hover {
    border-color: #ff7f2a;
    color: #ff7f2a;
}
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.success-screen {
    text-align: center;
    padding: 2rem;
}
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
    animation: scaleIn 0.4s ease;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.success-screen h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.75rem;
}
.success-screen p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}
.tracking-code {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #ff7f2a;
    border-radius: 8px;
    margin: 1.5rem 0;
}
.tracking-code span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff7f2a;
    font-family: monospace;
}
.tracking-code button {
    background: none;
    border: none;
    color: #ff7f2a;
    cursor: pointer;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .request-container {
        padding: 2rem 1.5rem;
    }
    .request-header h1 {
        font-size: 1.6rem;
    }
    .choice-cards {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .progress-steps {
        overflow-x: auto;
        padding-bottom: 0.75rem;
    }
    .step-label {
        font-size: 0.65rem;
    }
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .code-input-container {
        gap: 0.5rem;
    }
    .code-input {
        width: 40px;
        height: 45px;
        font-size: 1.1rem;
    }
    .form-buttons {
        flex-direction: column-reverse;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .request-section {
        padding: 2rem 1rem;
    }
    .request-container {
        padding: 1.5rem 1rem;
    }
    .request-header h1 {
        font-size: 1.5rem;
    }
    .choice-card i {
        font-size: 1.75rem;
    }
    .tracking-code {
        flex-direction: column;
        gap: 0.5rem;
    }
}