/* ========== CONSIGN HERO SECTION ========== */
.consign-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 32vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.consign-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.consign-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(0, 176, 176, 0.06) 100px,
            rgba(0, 176, 176, 0.06) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.consign-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 176, 176, 0.10) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: glow 10s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

.consign-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 50px;
}

.consign-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.consign-hero-section .hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

/* ========== FORM SECTION ========== */
.form-section {
    background: linear-gradient(180deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 80px 0 120px;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(0, 176, 176, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.form-section .container {
    max-width: 950px;
    position: relative;
    z-index: 2;
}

.form-intro {
    text-align: center;
    margin-bottom: 56px;
}

.form-intro-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-intro-text {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 56px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

/* ========== PROGRESS BAR ========== */
.progress-container {
    background: linear-gradient(90deg, #f1f3f5 0%, #e9ecef 100%);
    height: 10px;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00b0b0, #00d4d4, #00f7f7);
    background-size: 200% 100%;
    animation: shimmer 2s infinite linear;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    box-shadow: 0 0 12px rgba(0, 176, 176, 0.5);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== STEP INDICATORS ========== */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 100%);
    z-index: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #dee2e6;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-indicator.active .step-number {
    background: linear-gradient(135deg, #00b0b0, #00d4d4);
    border-color: #00b0b0;
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(0, 176, 176, 0.3);
}

.step-indicator.completed .step-number {
    background: #00b0b0;
    border-color: #00b0b0;
    color: #ffffff;
}

.step-indicator.completed .step-number::after {
    content: '✓';
    font-size: 1.1rem;
}

.step-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.step-indicator.active .step-label {
    color: #00b0b0;
    font-weight: 800;
}

/* ========== FORM STEPS ========== */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step-active {
    display: block;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f1f3f5;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00b0b0, #00d4d4);
}

.subsection-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #495057;
    margin: 40px 0 24px;
    padding-left: 16px;
    border-left: 4px solid #00b0b0;
}

/* ========== FORM LAYOUTS ========== */
.form-row-2,
.form-row-3 {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-control:hover {
    border-color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: #00b0b0;
    box-shadow: 0 0 0 4px rgba(0, 176, 176, 0.1);
    background: #ffffff;
}

.form-control.is-invalid {
    border-color: #dc3545;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 8px;
    display: block;
    font-style: italic;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23495057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 48px;
}

/* ========== CHECKBOXES & RADIOS ========== */
.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-check:hover {
    background: #e9ecef;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #00b0b0;
}

.form-check-label {
    font-size: 0.95rem;
    color: #1a1a1a;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
}

/* ========== PREVIEW CONTAINER ========== */
.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 24px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.preview-container img,
.preview-container video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.preview-container img:hover,
.preview-container video:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* ========== PRICING INFO ========== */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 32px;
    border-radius: 16px;
    margin: 32px 0;
    border: 2px solid #dee2e6;
}

.pricing-column h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00b0b0;
}

.pricing-column p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-note {
    color: #00b0b0;
    font-weight: 800;
    margin-top: 16px;
    font-size: 1.05rem;
}

/* ========== REVIEW SECTION ========== */
.review-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 28px;
    border-radius: 16px;
    margin-bottom: 28px;
    border: 2px solid #e9ecef;
}

.review-section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #dee2e6;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-item {
    font-size: 1rem;
    color: #495057;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
}

.review-item strong {
    color: #1a1a1a;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== FORM ACTIONS ========== */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 3px solid #e9ecef;
}

.form-actions .btn {
    min-width: 160px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* ========== SUBMISSION MESSAGE ========== */
.submission-message {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    margin-top: 28px;
    font-size: 1.05rem;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.submission-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 3px solid #28a745;
}

.submission-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 3px solid #dc3545;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .form-card {
        padding: 40px 28px;
    }
    
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .step-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .pricing-info,
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
