 body { font-family: ABeeZee } {} *{} {} #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(255, 184, 28, 0.2); border: 2px solid var(--accent-gold); padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; color: var(--accent-gold); 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: #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; } .step-label { font-size: 0.875rem; color: #666; font-weight: 600; } .progress-step.active .step-label { color: var(--primary-blue); font-weight: 700; } /* Application Section */ .application-section { padding: 60px 0 100px; } .form-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; } .form-label { font-weight: 600; color: var(--primary-dark); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; } .required-asterisk { color: #dc3545; } .form-control, .form-select { border: 2px solid #e0e0e0; border-radius: 12px; padding: 0.875rem 1.25rem; font-size: 1rem; transition: all 0.3s ease; } .form-control:focus, .form-select:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.15); } .form-text { color: #666; font-size: 0.875rem; margin-top: 0.5rem; } textarea.form-control { min-height: 120px; resize: vertical; } /* File Upload */ .file-upload-wrapper { border: 3px dashed #cbd5e0; border-radius: 16px; padding: 2.5rem; text-align: center; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); transition: all 0.3s ease; cursor: pointer; position: relative; } .file-upload-wrapper:hover { border-color: var(--primary-blue); background: linear-gradient(135deg, rgba(0, 82, 204, 0.05) 0%, #ffffff 100%); } .file-upload-wrapper.drag-over { border-color: var(--accent-gold); background: rgba(255, 184, 28, 0.05); } .file-upload-icon { font-size: 4rem; color: var(--primary-blue); margin-bottom: 1rem; } .file-upload-text { font-size: 1.125rem; font-weight: 600; color: var(--primary-dark); margin-bottom: 0.5rem; } .file-upload-hint { font-size: 0.875rem; color: #666; } .file-input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; } .file-selected { display: none; background: rgba(54, 179, 126, 0.1); border: 2px solid var(--success-green); border-radius: 12px; padding: 1.5rem; margin-top: 1rem; } .file-selected.show { display: flex; align-items: center; gap: 1rem; } .file-icon { font-size: 2.5rem; color: var(--success-green); } .file-info { flex: 1; } .file-name { font-weight: 700; color: var(--primary-dark); margin-bottom: 0.25rem; } .file-size { font-size: 0.875rem; color: #666; } .file-remove { background: none; border: none; color: #dc3545; cursor: pointer; font-size: 1.5rem; padding: 0.5rem; transition: all 0.3s ease; } .file-remove:hover { color: #c82333; transform: scale(1.1); } /* 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; } .warning-box { background: linear-gradient(135deg, rgba(255, 184, 28, 0.05) 0%, rgba(255, 145, 0, 0.05) 100%); border-left: 4px solid var(--accent-gold); } .warning-box i { color: var(--accent-gold); } /* 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); } .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 82, 204, 0.35); color: white; } .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; } /* 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; } .benefit-item { display: flex; align-items: start; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f0f0f0; } .benefit-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .benefit-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; } .benefit-content h5 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.25rem; } .benefit-content p { font-size: 0.875rem; color: #666; margin: 0; } .trust-badge { background: linear-gradient(135deg, rgba(54, 179, 126, 0.1) 0%, rgba(54, 179, 126, 0.05) 100%); border: 2px solid var(--success-green); border-radius: 12px; padding: 1.5rem; margin-top: 2rem; text-align: center; } .trust-badge i { font-size: 2.5rem; color: var(--success-green); margin-bottom: 0.75rem; } .trust-badge strong { display: block; color: var(--primary-dark); font-size: 1.125rem; margin-bottom: 0.5rem; } .trust-badge p { margin: 0; font-size: 0.875rem; color: #666; } /* 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 { display: none; } .form-card { padding: 2rem 1.5rem; } .sidebar-card { position: relative; top: 0; margin-top: 2rem; } .btn-primary-custom { width: 100%; justify-content: center; } }
