/* KYC Minimal Navbar */

.kyc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 20px 0;
    font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    background: transparent;
}

.navbar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.navbar-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #374151;
    color: white;
}

.step-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #374151;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #e5e7eb;
    position: relative;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #374151;
    width: 0;
    transition: width 0.5s ease;
}

.progress-line.active::after {
    width: 100%;
}

/* Add top padding to prevent content overlap */
.kyc-wrapper,
.privacy-wrapper {
    padding-top: 180px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .navbar-title {
        font-size: 14px;
    }
    
    .navbar-progress {
        gap: 6px;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .step-label {
        font-size: 12px;
    }
    
    .progress-line {
        width: 30px;
    }
    
    .kyc-wrapper,
    .privacy-wrapper {
        padding-top: 160px;
    }
}

@media (max-width: 480px) {
    .navbar-progress {
        display: none;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .navbar-title {
        font-size: 13px;
    }
    
    .kyc-wrapper,
    .privacy-wrapper {
        padding-top: 130px;
    }
}

/* Smooth transitions */
.kyc-navbar * {
    transition: all 0.3s ease;
}