 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --primary-blue: #0052CC; --primary-dark: #001F3F; --accent-gold: #FFB81C; --accent-teal: #00B8D4; --success-green: #36B37E; --gradient-primary: linear-gradient(135deg, #0052CC 0%, #00B8D4 100%); --gradient-dark: linear-gradient(135deg, #001F3F 0%, #0052CC 100%); --gradient-gold: linear-gradient(135deg, #FFB81C 0%, #FF9100 100%); --font-primary: 'Inter', sans-serif; --font-display: 'Playfair Display', serif; --shadow-sm: 0 2px 12px rgba(0,0,0,0.08); --shadow-md: 0 8px 24px rgba(0,0,0,0.12); --shadow-lg: 0 16px 48px rgba(0,0,0,0.16); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); color: #1a1a1a; overflow-x: hidden; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; } /* Navigation */ .navbar-custom { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; } .navbar-brand-custom { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; color: var(--primary-blue); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; } .navbar-brand-custom .brand-year { color: var(--accent-gold); font-size: 1.25rem; } /* Page Header */ .page-header { background: var(--gradient-dark); color: white; padding: 140px 0 80px; position: relative; overflow: hidden; } .page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%, rgba(0, 184, 212, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 184, 28, 0.1) 0%, transparent 50%); pointer-events: none; } .page-header::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); } .page-header-content { position: relative; z-index: 2; text-align: center; } .page-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(54, 179, 126, 0.2); border: 2px solid var(--success-green); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; color: var(--success-green); margin-bottom: 2rem; } .page-header h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; color: white; } .page-header p { font-size: clamp(1.125rem, 2vw, 1.375rem); color: rgba(255, 255, 255, 0.9); max-width: 800px; margin: 0 auto; } /* Progress Steps */ .progress-steps { background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-md); margin: -60px auto 60px; max-width: 900px; position: relative; z-index: 10; } .steps-container { display: flex; justify-content: space-between; align-items: center; position: relative; } .steps-container::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 3px; background: var(--success-green); z-index: 0; } .steps-container::after { content: ''; position: absolute; top: 30px; left: 37%; right: 12%; height: 3px; background: #e0e0e0; z-index: 0; } .progress-step { flex: 1; text-align: center; position: relative; z-index: 1; } .step-circle { width: 60px; height: 60px; border-radius: 50%; background: #e0e0e0; color: #999; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 900; transition: all 0.3s ease; border: 4px solid white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); } .progress-step.active .step-circle { background: var(--gradient-primary); color: white; transform: scale(1.1); } .progress-step.completed .step-circle { background: var(--success-green); color: white; } .progress-step.completed .step-circle::before { content: '✓'; } .step-label { font-size: 0.875rem; color: #666; font-weight: 600; } .progress-step.active .step-label { color: var(--primary-blue); font-weight: 700; } .progress-step.completed .step-label { color: var(--success-green); } /* Upload Section */ .upload-section { padding: 60px 0 100px; } .upload-card { background: white; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow-lg); } .section-title { color: var(--primary-blue); font-size: 2rem; margin-bottom: 0.5rem; } .section-subtitle { color: #666; margin-bottom: 2rem; } /* Drag and Drop Upload Area */ .upload-area { border: 3px dashed #cbd5e0; border-radius: 24px; padding: 4rem 2rem; text-align: center; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); transition: all 0.3s ease; cursor: pointer; position: relative; margin: 2rem 0; } .upload-area:hover { border-color: var(--primary-blue); background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, #ffffff 100%); transform: translateY(-5px); box-shadow: var(--shadow-md); } .upload-area.drag-over { border-color: var(--accent-gold); background: rgba(255, 184, 28, 0.05); border-width: 4px; } .upload-icon-wrapper { width: 120px; height: 120px; margin: 0 auto 2rem; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); } 50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(0, 82, 204, 0); } } .upload-icon { font-size: 4rem; color: white; } .upload-title { font-size: 1.75rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 1rem; } .upload-subtitle { font-size: 1.125rem; color: #666; margin-bottom: 2rem; } .upload-specs { background: white; border: 2px solid #e0e0e0; border-radius: 12px; padding: 1.5rem; margin: 0 auto; max-width: 500px; } .upload-specs h6 { color: var(--primary-blue); font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; } .upload-specs ul { list-style: none; padding: 0; margin: 0; } .upload-specs li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: #555; font-size: 0.95rem; } .upload-specs li::before { content: '✓'; position: absolute; left: 0; color: var(--success-green); font-weight: 900; } .file-input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; } .btn-browse { background: var(--gradient-gold); color: var(--primary-dark); border: none; padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 700; border-radius: 12px; display: inline-flex; align-items: center; gap: 0.75rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(255, 184, 28, 0.3); margin-top: 1.5rem; } .btn-browse:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 184, 28, 0.4); } /* File Preview */ .file-preview { display: none; background: linear-gradient(135deg, rgba(54, 179, 126, 0.1) 0%, rgba(54, 179, 126, 0.05) 100%); border: 3px solid var(--success-green); border-radius: 20px; padding: 2.5rem; margin: 2rem 0; animation: slideIn 0.3s ease-out; } @keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .file-preview.show { display: block; } .file-preview-content { display: flex; align-items: center; gap: 2rem; } .file-icon-large { width: 100px; height: 100px; background: white; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--success-green); flex-shrink: 0; box-shadow: var(--shadow-sm); } .file-details { flex: 1; } .file-name-large { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.5rem; word-break: break-all; } .file-size-large { font-size: 1rem; color: #666; margin-bottom: 1rem; } .file-status { display: inline-flex; align-items: center; gap: 0.5rem; background: white; padding: 0.75rem 1.25rem; border-radius: 50px; font-weight: 600; color: var(--success-green); } .file-actions { display: flex; gap: 1rem; } .btn-remove { background: white; color: #dc3545; border: 2px solid #dc3545; padding: 0.75rem 1.5rem; font-weight: 600; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; } .btn-remove:hover { background: #dc3545; color: white; } /* Tips Section */ .tips-card { background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(255, 145, 0, 0.05) 100%); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 2rem; margin: 2rem 0; } .tips-card h5 { color: var(--accent-gold); font-weight: 800; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; } .tips-card h5 i { font-size: 1.75rem; } .tips-list { list-style: none; padding: 0; margin: 0; } .tips-list li { padding: 1rem 0 1rem 2.5rem; position: relative; border-bottom: 1px solid rgba(255, 184, 28, 0.2); } .tips-list li:last-child { border-bottom: none; } .tips-list li::before { content: '💡'; position: absolute; left: 0; font-size: 1.5rem; } .tips-list strong { color: var(--primary-dark); } /* Buttons */ .btn-primary-custom { background: var(--gradient-primary); color: white; border: none; padding: 1.25rem 3rem; font-size: 1.125rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 0.75rem; box-shadow: 0 8px 24px rgba(0, 82, 204, 0.25); text-decoration: none; } .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35); color: white; } .btn-primary-custom:disabled { opacity: 0.5; cursor: not-allowed; transform: none; } .btn-secondary-custom { background: white; color: var(--primary-blue); border: 2px solid var(--primary-blue); padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: 12px; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.75rem; } .btn-secondary-custom:hover { background: var(--primary-blue); color: white; } /* Info Boxes */ .info-box { background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%); border-left: 4px solid var(--primary-blue); padding: 1.5rem; border-radius: 12px; margin: 2rem 0; } .info-box i { color: var(--primary-blue); font-size: 1.5rem; margin-right: 0.75rem; } .info-box p { margin: 0; color: #444; } /* Sidebar */ .sidebar-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-md); position: sticky; top: 100px; } .sidebar-card h4 { color: var(--primary-blue); font-size: 1.5rem; margin-bottom: 1.5rem; } .progress-indicator { background: #f8f9fa; border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; } .progress-indicator h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 1rem; } .checklist-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; } .checklist-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; } .checklist-icon.completed { background: var(--success-green); color: white; } .checklist-icon.pending { background: #e0e0e0; color: #999; } .checklist-text { font-size: 0.95rem; color: #666; } .checklist-item.completed .checklist-text { color: var(--success-green); font-weight: 600; } .help-box { background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); border: 2px solid #e0e0e0; border-radius: 16px; padding: 1.5rem; margin-top: 2rem; } .help-box h6 { color: var(--primary-blue); font-weight: 700; margin-bottom: 1rem; } .help-box p { font-size: 0.875rem; color: #666; margin-bottom: 0.75rem; } .help-box strong { color: var(--primary-dark); } /* Footer */ .footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 40px 0 20px; margin-top: 60px; } .footer h5 { color: white; font-size: 1.125rem; margin-bottom: 1rem; } .footer-links { list-style: none; padding: 0; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--accent-gold); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 2rem; padding-top: 1.5rem; text-align: center; font-size: 0.875rem; } /* Responsive */ @media (max-width: 768px) { .page-header { padding: 120px 0 60px; } .progress-steps { margin: -40px 1rem 40px; padding: 1.5rem 1rem; } .steps-container { flex-direction: column; gap: 1rem; } .steps-container::before, .steps-container::after { display: none; } .upload-card { padding: 2rem 1.5rem; } .upload-area { padding: 3rem 1.5rem; } .upload-icon-wrapper { width: 100px; height: 100px; } .upload-icon { font-size: 3rem; } .file-preview-content { flex-direction: column; text-align: center; } .file-actions { flex-direction: column; width: 100%; } .btn-remove, .btn-primary-custom { width: 100%; justify-content: center; } .sidebar-card { position: relative; top: 0; margin-top: 2rem; } }
