﻿/* =============================================
   DOrSU GradTracer - Login Page Styles
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-lighter: rgba(37, 99, 235, 0.08);
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --danger: #EF4444;
  --success: #10B981;
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 25px 60px rgba(37, 99, 235, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ---------- Login Wrapper ---------- */
body.access-page {
  background-color: #111111;
  background-attachment: fixed;
  background-image: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
}
body.access-page .login-section {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}
body.access-page .login-card {
  position: relative;
  z-index: 1;
}

.login-wrapper {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
}

#loginWrapper {
  overflow: hidden;
}

.login-wrapper::before {
  content: "";
  position: absolute;
  top: 66%;
  right: -36px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
}

.login-wrapper::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 187, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Register Wrapper (no .login-wrapper dependency) ---------- */
#registerWrapper {
  display: flex;
  position: relative;
}

.login-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.login-deco-1 {
  top: 12%;
  left: -50px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.05);
}

.login-deco-2 {
  bottom: 18%;
  left: 18%;
  width: 120px;
  height: 120px;
  background: rgba(255, 187, 0, 0.12);
}

.login-deco-3 {
  top: 42%;
  left: 34%;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Access Page Footer (dark background) ---------- */
body.access-page .login-section > .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}
body.access-page .footer-copy {
  color: rgba(255, 255, 255, 0.6);
}
body.access-page .footer-links a {
  color: rgba(255, 255, 255, 0.78);
}
body.access-page .footer-links a:hover {
  color: #ffbb00;
}
body.access-page .footer-links a:focus-visible {
  outline-color: #ffbb00;
}
body.access-page .footer-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- Hero Section (Left) ---------- */
.hero-section {
  position: relative;
  width: 50%;
  background: linear-gradient(160deg, var(--primary) 0%, #1E40AF 40%, var(--primary-dark) 70%, #091E3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 77, 143, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  text-align: center;
}

/* Logo */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Hero Typography */
.hero-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 50%, #BFDBFE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* Illustration */
.hero-illustration {
  margin-bottom: 2rem;
}

.illustration-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.signin-hero-illustration .illustration-svg {
  max-width: 360px;
}

.login-card .hero-heading {
  color: var(--gray-900);
  text-align: center;
}

.login-card .hero-heading .highlight {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.login-card .hero-subtitle {
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 0.9rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.68rem;
  line-height: 1.45;
}

.stat-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Login Section (Right) ---------- */
.login-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: transparent;
  position: relative;
}

.login-card {
  width: 100%;
  max-width: 360px;
  padding: 1.35rem 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

#registerWrapper .login-card {
  max-width: 620px;
}

#registerWrapper .login-section {
  width: 58%;
  flex-shrink: 0;
}

#registerWrapper .step-panel {
  max-width: 100%;
}

/* Card Header */
.card-header {
  margin-bottom: 1rem;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto 0.6rem;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-system {
  width: 36px;
  height: 36px;
}

.brand-logo-dorsu {
  width: 42px;
  height: 42px;
}

.alumni-eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gray-600);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.login-intro {
  margin: -0.2rem 0 0.7rem;
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 500;
}

/* ---------- Form Styles ---------- */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-floating-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 0.8rem 0.75rem 0.8rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-base);
}

.form-input:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
  border-radius: 2px;
}

.form-input:focus ~ .input-highlight {
  width: 100%;
}

.error-message {
  font-size: 0.72rem;
  color: var(--danger);
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

.error-message.visible {
  display: block;
  animation: shakeIn 0.3s ease;
}

.form-input.input-error {
  border-color: var(--danger);
  background: #FEF2F2;
}

.form-input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.password-toggle:hover {
  color: var(--gray-600);
}

.password-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.password-toggle svg {
  width: 18px;
  height: 18px;
}

/* ---------- Form Options ---------- */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -0.1rem;
  gap: 0.75rem;
}

/* Custom Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  background: var(--white);
}

.custom-checkbox::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--primary);
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.checkbox-wrapper input:checked + .custom-checkbox {
  border-color: var(--primary);
}

.checkbox-wrapper input:checked + .custom-checkbox::after {
  transform: scale(1);
}

.checkbox-wrapper input:focus-visible + .custom-checkbox {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.checkbox-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 400;
}

.forgot-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary);
  transition: color var(--transition-fast);
}

.forgot-link:hover {
  color: var(--primary-dark);
}

.forgot-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn-back-link {
  margin-top: 0.5rem;
  text-decoration: none;
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 50%, #BFDBFE 100%);
}

.btn-back-link:hover {
  background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #93C5FD 100%);
}

/* ---------- Primary Button ---------- */
.btn-primary {
  width: 100%;
  padding: 0.68rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1E3A8A 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-loader {
  position: relative;
  z-index: 1;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* ---------- Register Section ---------- */
.register-section {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.register-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.55rem;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-register:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.btn-register:active {
  transform: translateY(0);
}

.btn-register:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-home {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(18, 58, 111, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(18, 58, 111, 0.35);
}

.btn-home svg {
  width: 20px;
  height: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  text-align: center;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 400;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-sep {
  color: var(--gray-300);
  font-size: 0.75rem;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}@keyframes fadeInUp{
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}@keyframes spin{
  to { transform: rotate(360deg); }
}@keyframes shakeIn{
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}@keyframes float{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.float-animation.delay-1 { animation-delay: 0.8s; }
.float-animation.delay-2 { animation-delay: 1.6s; }
.float-animation.delay-3 { animation-delay: 2.4s; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---------- Tablet (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-stats {
    gap: 1rem;
    padding: 0.55rem 1.25rem;
  }

  .stat-number {
    font-size: 0.85rem;
  }
}

/* ---------- Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .hero-section {
    display: none;
  }

  .login-section {
    width: 100%;
    min-height: 100vh;
    padding: 1.25rem 1.25rem 5rem;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 30%);
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% + 4rem);
    margin: 0 -2rem 2rem;
    padding: 1.25rem 1rem;
    background: var(--primary);
  }

  .mobile-logo .logo-text { color: var(--white); }

  .card-title {
    font-size: 1.3rem;
  }

  .hero-heading {
    font-size: 1.5rem;
  }
}

/* ---------- Small Mobile (max-width: 400px) ---------- */
@media (max-width: 400px) {
  .login-section {
    padding: 1rem 1rem 4rem;
  }

  .mobile-logo {
    width: calc(100% + 2rem);
    margin: 0 -1rem 2rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .form-input {
    font-size: 13px; /* Prevents zoom on iOS */
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider:last-of-type {
    display: none;
  }
}

/* ---------- Large Desktop (min-width: 1400px) ---------- */
@media (min-width: 1400px) {
  .hero-heading {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .login-card {
    max-width: 440px;
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .hero-section {
    display: none;
  }

  .login-section {
    width: 100%;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   Data Consent Modal
   ============================================= */

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.consent-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

#inactiveModal .consent-card {
  text-align: center;
  max-width: 420px;
}

#inactiveModal .consent-card .btn-primary {
  width: auto;
  align-self: center;
  margin: 0.75rem auto 0;
  min-width: 140px;
  box-shadow: none;
}

#maintenanceModal .consent-card {
  text-align: center;
  max-width: 420px;
}

#maintenanceModal .consent-card .btn-primary {
  display: inline-flex;
  width: auto;
  margin: 0.75rem auto 0;
  min-width: 160px;
  box-shadow: none;
}

.consent-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.consent-icon svg {
  width: 56px;
  height: 56px;
}

.consent-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 0.5rem;
}

.consent-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.consent-details {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.consent-details p {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.consent-details ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.consent-details li {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}

.consent-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.consent-link:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Consent Checkbox */
.consent-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0.75rem;
  background: rgba(37, 99, 235, 0.04);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.consent-checkbox-wrapper:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
}

.consent-checkbox-wrapper input {
  display: none;
}

.consent-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
  background: var(--white);
}

.consent-checkbox::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) scale(0);
  transition: transform var(--transition-fast);
  margin-top: -2px;
}

.consent-checkbox-wrapper input:checked ~ .consent-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.consent-checkbox-wrapper input:checked ~ .consent-checkbox::after {
  transform: rotate(-45deg) scale(1);
}

.consent-checkbox-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Proceed Button */
.consent-proceed {
  width: 100%;
  justify-content: center;
}

.consent-proceed:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}@keyframes fadeIn{
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =============================================
   DOrSU GradTracer - Dashboard Styles
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #3B82F6;
  --primary-lighter: rgba(37, 99, 235, 0.08);
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --danger: #EF4444;
  --success: #10B981;
  --warning: #F59E0B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --navbar-height: 64px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--navbar-height);
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.05);
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

/* Nav Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 2.25rem;
  padding: 0.3rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-full);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
}

.nav-link.active {
  color: #1a1a1a;
  background: #ffffff;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10);
}

/* Right Section */
.navbar-account {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  margin-right: 0;
  padding-left: 1.25rem;
  border-left: 1px solid var(--gray-100);
  position: relative;
}

.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.nav-icon-btn.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.notif-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

/* Avatar */
.nav-avatar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.6rem 0.3rem 0.35rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.nav-avatar:hover {
  background: var(--gray-100);
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-circle svg {
  width: 18px;
  height: 18px;
}

.avatar-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

.avatar-chevron {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  transition: transform var(--transition-fast);
}

.nav-avatar.open .avatar-chevron {
  transform: rotate(180deg);
}

/* Avatar Dropdown */
.avatar-dropdown {
  display: none;
  position: absolute;
  top: calc(var(--navbar-height) - 6px);
  right: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  padding: 0.35rem;
  z-index: 200;
}

.avatar-dropdown.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--danger);
}

.dropdown-item.danger {
  color: var(--danger);
}

.dropdown-item.danger svg {
  color: var(--danger);
}

.dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--gray-600);
}

.navbar-toggle:hover {
  background: var(--gray-100);
}

.navbar-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu */
.navbar-mobile {
  display: none;
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
}

.navbar-mobile.show {
  display: block;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-link svg {
  width: 20px;
  height: 20px;
}

.mobile-link:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.mobile-link.active {
  background: var(--primary-lighter);
  color: var(--primary);
  font-weight: 600;
}

.mobile-link.logout {
  color: var(--danger);
}

.mobile-link.logout:hover {
  background: rgba(239, 68, 68, 0.06);
}

.mobile-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0.35rem 0;
}

/* ---------- Main Content ---------- */
.main-content {
  margin-top: var(--navbar-height);
  min-height: calc(100vh - var(--navbar-height));
  padding: 2rem;
  padding-bottom: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-heading .highlight {
  color: #60A5FA;
}@keyframes float{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-anim.delay-1 { animation-delay: 1s; }

/* ---------- Home Page Animations ---------- */
.main-content > * {
  animation: fadeInUp 0.4s ease both;
}

.main-content > *:nth-child(1) { animation-delay: 0s; }
.main-content > *:nth-child(2) { animation-delay: 0.08s; }
.main-content > *:nth-child(3) { animation-delay: 0.16s; }
.main-content > *:nth-child(4) { animation-delay: 0.24s; }
.main-content > *:nth-child(5) { animation-delay: 0.32s; }
.main-content > *:nth-child(6) { animation-delay: 0.4s; }@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition-base);
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

.stat-card-icon.blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.stat-card-icon.green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.stat-card-icon.amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

/* ---------- Content Grid ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.content-card:hover {
  box-shadow: var(--shadow-md);
}

.about-card {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
}

.about-card.full-width {
  grid-column: 1 / -1;
}

.about-card .card-head-title {
  color: #92400E;
}

.about-card .purpose-text,
.about-card .purpose-list li,
.about-card .campus-heading,
.about-card .campus-subtext,
.about-card .campus-list li {
  color: #A16207;
}

.about-card .purpose-list li svg {
  color: #D97706;
}

.about-card .campus-list li svg {
  color: #D97706;
}

.about-card .card-head-icon {
  background: rgba(217, 119, 6, 0.12);
  color: #D97706;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem 0;
}

.card-head-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-head-icon.amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

.card-head-icon.green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.card-head-icon svg {
  width: 20px;
  height: 20px;
}

.card-head-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* ---------- Purpose Card ---------- */
.purpose-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.purpose-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.purpose-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.purpose-list li svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--success);
  margin-top: 2px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

.meta-label {
  display: block;
  font-size: 0.68rem;
  color: var(--gray-400);
}

.meta-value {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
}

.batch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.batch-tag {
  padding: 0.2rem 0.55rem;
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.btn-start-survey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: calc(100% - 3rem);
  margin: 0.5rem 1.5rem 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-start-survey svg {
  width: 20px;
  height: 20px;
}

/* ---------- Campus Section ---------- */
.campus-section {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}

.campus-heading {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.campus-subtext {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.campus-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.campus-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.campus-list li svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--primary);
}

/* ---------- Services Card ---------- */
.services-card {
  margin-top: 1.25rem;
}

.services-card.full-width {
  grid-column: 1 / -1;
}

.services-intro {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.service-item:hover {
  border-color: var(--primary-lighter);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-icon.blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.service-icon.green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.service-icon.amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
}

.service-icon.purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

.service-icon.red {
  background: rgba(239, 68, 68, 0.08);
  color: var(--danger);
}

.service-icon.teal {
  background: rgba(20, 184, 166, 0.08);
  color: #14B8A6;
}

.service-info {
  flex: 1;
  min-width: 0;
}

.service-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}

.service-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.5;
}@media (max-width: 768px){
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 480px){
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-sep {
  color: var(--gray-200);
  font-size: 0.75rem;
}@media (max-width: 640px){
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .navbar-account .avatar-name,
  .navbar-account .avatar-chevron {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  .main-content {
    padding: 1rem;
  }

  .welcome-banner {
    padding: 1.25rem 1.25rem;
  }

  .welcome-heading {
    font-size: 1.15rem;
  }

  .welcome-illustration {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}@media (max-width: 480px){
  .navbar-account {
    gap: 0.4rem;
  }

  .nav-avatar {
    padding: 0.25rem;
  }

  .stat-card {
    padding: 0.85rem;
  }

  .card-head {
    padding: 1rem 1rem 0;
  }

  .card-body {
    padding: 0.85rem 1rem 1rem;
  }
}

/* ---------- Page Loading Bar ---------- */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.page-loading-bar.active {
  opacity: 1;
}

.page-loading-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #60A5FA);
  border-radius: 0 2px 2px 0;
  transition: width 0.3s ease;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   DOrSU GradTracer - Calendar Styles
   ============================================= */

/* ---------- Full Width ---------- */
.calendar-card {
  margin-top: 1.25rem;
}

.calendar-card.full-width {
  grid-column: 1 / -1;
}

/* ---------- Calendar Card Header ---------- */
.calendar-card .card-head {
  flex-wrap: wrap;
}

.calendar-filters {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}

.cal-filter {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.cal-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cal-filter.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---------- Calendar Layout ---------- */
.calendar-body {
  padding: 0 1.5rem 1.5rem;
}

.calendar-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- Calendar Navigation ---------- */
.calendar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cal-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cal-nav-btn svg {
  width: 16px;
  height: 16px;
}

.cal-month-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  min-width: 140px;
  text-align: center;
}

.cal-today-btn {
  margin-left: auto;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.cal-today-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---------- Calendar Grid ---------- */
.calendar-grid {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.cal-header span {
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  min-height: 56px;
}

.cal-day:nth-child(7n) {
  border-right: none;
}

.cal-day:hover {
  background: rgba(37, 99, 235, 0.03);
}

.cal-day.empty {
  background: var(--gray-50);
  cursor: default;
}

.cal-day.empty:hover {
  background: var(--gray-50);
}

.cal-day-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1;
}

.cal-day.empty .cal-day-num {
  color: var(--gray-300);
}

.cal-day.today {
  background: rgba(37, 99, 235, 0.05);
}

.cal-day.today .cal-day-num {
  background: var(--primary);
  color: var(--white);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day.selected {
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 0 0 2px var(--primary);
}

.cal-day-dots {
  display: flex;
  gap: 3px;
  height: 6px;
  align-items: center;
}

.cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.cal-dot.survey {
  background: var(--success);
}

.cal-dot.job {
  background: var(--primary);
}

.cal-dot.active {
  background: #10B981;
}

.cal-dot.closed {
  background: #EF4444;
}

/* ---------- Sidebar ---------- */
.calendar-sidebar {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  background: var(--gray-50);
  max-height: 440px;
  overflow-y: auto;
}

.cal-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.cal-sidebar-header h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
}

.cal-sidebar-events {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cal-event {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cal-event:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.cal-event-type {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.cal-event-type svg {
  width: 11px;
  height: 11px;
}

.cal-event-type.survey {
  color: var(--success);
}

.cal-event-type.job {
  color: var(--primary);
}

.cal-event-type.active {
  color: #10B981;
}

.cal-event-type.closed {
  color: #EF4444;
}

.cal-event-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.cal-event-meta {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.cal-sidebar-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  color: var(--gray-400);
  text-align: center;
}

.cal-sidebar-empty svg {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}

.cal-sidebar-empty p {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---------- Calendar Event Detail Modal ---------- */
.cal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cal-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cal-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 480px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.cal-modal-overlay.show .cal-modal {
  transform: translateY(0) scale(1);
}

.cal-modal-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.25rem 0;
}

.cal-modal-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-modal-icon svg {
  width: 20px;
  height: 20px;
}

.cal-modal-icon.survey {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.cal-modal-icon.job {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
}

.cal-modal-icon.active {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.cal-modal-icon.closed {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1.5px solid rgba(239, 68, 68, 0.2);
}

.cal-modal-info {
  flex: 1;
  min-width: 0;
}

.cal-modal-type {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.cal-modal-type.survey {
  color: var(--success);
}

.cal-modal-type.job {
  color: var(--primary);
}

.cal-modal-type.active {
  color: #10B981;
}

.cal-modal-type.closed {
  color: #EF4444;
}

.cal-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
}

.cal-modal-close {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cal-modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.cal-modal-close svg {
  width: 18px;
  height: 18px;
}

.cal-modal-body {
  padding: 1rem 1.25rem;
  overflow-y: auto;
  flex: 1;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.cal-modal-body ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.cal-modal-body li {
  margin-bottom: 0.3rem;
}

.cal-modal-body strong {
  color: var(--gray-800);
}

.cal-modal-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.cal-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.cal-modal-btn svg {
  width: 16px;
  height: 16px;
}

.cal-modal-btn.primary {
  background: var(--primary);
  color: var(--white);
}

.cal-modal-btn.primary:hover {
  background: var(--primary-dark);
}

.cal-modal-btn.survey {
  background: var(--success);
  color: var(--white);
}

.cal-modal-btn.survey:hover {
  background: #059669;
}

.cal-modal-btn.secondary {
  background: var(--gray-100);
  color: var(--gray-600);
}

.cal-modal-btn.secondary:hover {
  background: var(--gray-200);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .calendar-filters {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }
}@media (max-width: 600px){
  .calendar-body {
    padding: 0 1rem 1rem;
  }

  .cal-day {
    min-height: 44px;
  }

  .cal-day-num {
    font-size: 0.72rem;
  }

  .cal-month-label {
    font-size: 0.88rem;
    min-width: 110px;
  }

  .cal-header span {
    font-size: 0.65rem;
  }
}

/* ---------- Active Survey Schedule ---------- */
.survey-schedule-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  border-top: 3px solid var(--success);
}

.survey-schedule-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  box-sizing: border-box;
}

.schedule-head {
  padding: 1.15rem 1.25rem 0;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.schedule-badge svg {
  width: 12px;
  height: 12px;
}

.schedule-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.schedule-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.schedule-meta {
  display: flex;
  gap: 1.5rem;
  padding: 0.85rem 1.25rem;
  margin-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.schedule-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-meta-item i {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

.schedule-meta-item .meta-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.schedule-meta-item .meta-value {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-800);
}

.schedule-tags-section {
  padding: 0.85rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-tag-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.tag-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  min-width: 65px;
}

.tag-list {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.schedule-tag {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  background: var(--primary-lighter);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--gray-600);
  font-size: 0.62rem;
  font-weight: 600;
}

/* No Survey Available Panel */
.no-survey-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.5rem;
}

.no-survey-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.no-survey-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.no-survey-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gray-400);
}

.no-survey-icon.success {
  background: rgba(16, 185, 129, 0.12);
}

.no-survey-icon.success svg {
  width: 32px;
  height: 32px;
  color: #10b981;
}

.no-survey-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.6rem;
}

.no-survey-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.no-survey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.no-survey-btn:hover {
  background: var(--primary-dark, var(--primary));
  color: var(--white);
  text-decoration: none;
}

.no-survey-btn svg {
  width: 16px;
  height: 16px;
}

/* Survey Already Answered - Share Section */
.share-section {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.share-section .survey-label {
  display: block;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.85rem;
}

.share-link-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.share-link-row .survey-input {
  flex: 1;
  width: auto;
  min-width: 0;
  font-size: 0.78rem;
  color: var(--gray-600);
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.share-btn:hover {
  opacity: 0.9;
}

.share-btn svg,
.share-btn i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.share-btn span {
  color: #ffffff;
}

.share-btn.facebook {
  background: #111827;
}

.share-btn.messenger {
  background: #111827;
}

/* Home page: present the share options as a clean, high-contrast panel
   inside the schedule card so the buttons stay clearly readable */
.survey-schedule-card .share-section {
  margin: 0 1.4rem 1.4rem;
  padding: 1.1rem 1.1rem 1.2rem;
  border-top: none;
  border-radius: 12px;
  background: #fffaf0;
  border: 1px solid #f4d98a;
}

.survey-schedule-card .share-section .survey-label {
  text-align: left;
  color: #765600;
}

.survey-schedule-card .share-link-row .survey-input {
  background: #ffffff;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.75rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
  min-width: 45px;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.progress-step.active .step-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.progress-step.completed .step-circle {
  border-color: var(--success);
  background: var(--success);
  color: var(--white);
}

.step-label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--primary);
}

.progress-step.completed .step-label {
  color: var(--success);
}

.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  min-width: 20px;
  max-width: 60px;
  margin-bottom: 1.2rem;
}

.progress-bar-track {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}

/* ---------- Survey Sections ---------- */
.survey-section {
  display: none;
}

.survey-section.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Survey Card ---------- */
.survey-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.survey-card-icon.blue {
  background: var(--primary-lighter);
  color: var(--primary);
}

.survey-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.survey-card-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.survey-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

/* ---------- Purpose Content ---------- */
.purpose-content p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.purpose-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.purpose-list li i {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--success);
  margin-top: 0.15rem;
}

.purpose-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
}

.purpose-note > i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--primary);
  margin-top: 0.1rem;
}

.purpose-note strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}

.purpose-note p {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Survey Fields ---------- */
.survey-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.survey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.survey-field {
  display: flex;
  flex-direction: column;
}

.survey-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.survey-help {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.survey-help::before {
  content: 'Example: ';
  font-weight: 600;
  color: var(--gray-600);
}

.survey-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}

.survey-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.survey-input::placeholder {
  color: var(--gray-400);
}

.survey-input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.survey-input:disabled {
  background: var(--gray-100);
  color: var(--gray-500);
  cursor: not-allowed;
}

.survey-field-error {
  font-size: 0.7rem;
  color: #EF4444;
  margin-top: 0.3rem;
  font-weight: 500;
}

.survey-checkbox-row {
  margin-bottom: 0.5rem;
}

.survey-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--gray-700);
  user-select: none;
}

.survey-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.survey-autocomplete-wrapper {
  position: relative;
  z-index: 99999;
}

.survey-autocomplete-dropdown {
  display: none;
  position: fixed;
  z-index: 99999;
  max-height: 200px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.survey-autocomplete-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.survey-autocomplete-item:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.survey-autocomplete-empty {
  color: var(--gray-400);
  font-style: italic;
  cursor: default;
  pointer-events: none;
}

.survey-char-count {
  font-size: 0.7rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
  display: block;
}

.survey-textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
  resize: vertical;
  min-height: 60px;
}

.survey-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.survey-textarea::placeholder {
  color: var(--gray-400);
}

.survey-instruction {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

.survey-instruction em {
  color: var(--gray-400);
  font-size: 0.72rem;
}

/* ---------- Radio Group ---------- */
.survey-radio-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.survey-radio {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.survey-radio input {
  display: none;
}

.survey-radio span {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.survey-radio span:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.survey-radio input:checked + span {
  border-color: #EAB308;
  background: rgba(234, 179, 8, 0.1);
  color: #CA8A04;
}

/* ---------- Navigation ---------- */
.survey-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.survey-nav-spacer {
  flex: 1;
}

.survey-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
  border: none;
}

.survey-btn svg {
  width: 15px;
  height: 15px;
}

.survey-btn-back {
  background: var(--white);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.survey-btn-back:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.survey-btn-next {
  background: var(--primary);
  color: var(--white);
}

.survey-btn-next:hover {
  background: var(--primary-dark);
}

.survey-btn-submit {
  background: var(--success);
  color: var(--white);
}

/* ---------- Success Screen ---------- */
.survey-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.survey-loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.loading-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(37, 99, 235, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  animation: surveySpin 0.8s linear infinite;
}@keyframes surveySpin{
  to { transform: rotate(360deg); }
}

.loading-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.loading-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.success-icon {
  margin-bottom: 1rem;
}

.success-icon svg {
  width: 56px;
  height: 56px;
  color: var(--success);
}

.success-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.success-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ---------- Preview Modal ---------- */
.preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.4s ease;
  overflow: hidden;
}

.preview-header {
  text-align: center;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.preview-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(234, 179, 8, 0.12);
  color: #d97706;
  margin-bottom: 0.75rem;
}

.preview-header-icon svg {
  width: 24px;
  height: 24px;
}

.preview-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.preview-header p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.preview-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.preview-section {
  margin-bottom: 1.5rem;
}

.preview-section:last-child {
  margin-bottom: 0;
}

.preview-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.preview-section-title svg {
  width: 15px;
  height: 15px;
}

.preview-item {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--gray-200);
}

.preview-item:last-child {
  border-bottom: none;
}

.preview-item-q {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.preview-item-a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.45;
  word-break: break-word;
}

.preview-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--gray-200);
}

/* ---------- Confirmation Modal ---------- */
.confirm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(234, 179, 8, 0.12);
  color: #d97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.confirm-icon svg {
  width: 26px;
  height: 26px;
}

.confirm-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.confirm-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .survey-row {
    grid-template-columns: 1fr;
  }

  .progress-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 0.3rem;
    gap: 0;
  }

  .step-label {
    font-size: 0.55rem;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.68rem;
  }

  .survey-header-title {
    font-size: 1.1rem;
  }

  .survey-rating {
    gap: 0.35rem;
  }

  .rating-option span {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .survey-radio-group {
    flex-direction: column;
    gap: 0.4rem;
  }

  .survey-radio {
    width: 100%;
  }

  .survey-radio span {
    width: 100%;
    text-align: center;
  }

  .survey-rating {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .rating-option {
    flex: 1 1 calc(33.333% - 0.3rem);
    min-width: 50px;
  }

  .rating-option span {
    width: 100%;
    text-align: center;
  }

  .schedule-meta {
    flex-direction: column;
    gap: 0.65rem;
  }
}

/* =============================================
   DOrSU GradTracer - Career Opportunities Styles
   ============================================= */

/* ---------- Page Header ---------- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 50%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
}

.page-header::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: 80px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.page-header-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.page-title .highlight {
  color: #60A5FA;
}

.page-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 500px;
}

.page-header-stats {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.header-stat {
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 110px;
  backdrop-filter: blur(8px);
}

.header-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.header-stat-label {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-top: 0.1rem;
}

.header-stat-note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Match Banner ---------- */
.match-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(135deg, rgba(255, 187, 0, 0.14) 0%, rgba(255, 212, 92, 0.1) 100%);
  border: 1px solid rgba(255, 187, 0, 0.35);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.match-banner.hidden {
  display: none;
}

.match-banner-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 187, 0, 0.15);
  color: #ffbb00;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-banner-icon svg {
  width: 20px;
  height: 20px;
}

.match-banner-text {
  flex: 1;
}

.match-banner-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
}

.match-banner-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.match-banner-desc strong {
  color: var(--primary);
}

.match-banner-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.match-banner-toggle svg {
  width: 14px;
  height: 14px;
}

.match-banner-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

/* ---------- Filter Bar ---------- */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.filter-search {
  position: relative;
  margin-bottom: 1rem;
}

.filter-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
}

.filter-search-input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.6rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: all var(--transition-fast);
  outline: none;
}

.filter-search-input::placeholder {
  color: var(--gray-400);
}

.filter-search-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.filter-search-clear {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.filter-search-clear svg {
  width: 14px;
  height: 14px;
}

.filter-search-clear.visible {
  display: flex;
}

.filter-search-clear:hover {
  background: var(--gray-100);
  color: var(--gray-600);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.filter-label svg {
  width: 13px;
  height: 13px;
}

.select-wrapper {
  position: relative;
}

.filter-select {
  width: 100%;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  appearance: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  outline: none;
}

.filter-select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.select-chevron {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

/* Active Filter Tags */
.filter-active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}

.filter-active-tags:empty {
  display: none;
}

/* ---------- Results Info ---------- */
.results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.results-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
}

.results-count strong {
  color: var(--gray-800);
  font-weight: 700;
}

.results-reset {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.results-reset svg {
  width: 14px;
  height: 14px;
}

.results-reset:hover {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.06);
}

/* ---------- Jobs Grid ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

/* ---------- Job Card ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.job-card.matched {
  border-color: rgba(255, 187, 0, 0.35);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 187, 0, 0.04) 100%);
}

.job-card.matched::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffbb00, #ffd45c);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.job-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.job-badge {
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.job-badge.type {
  background: rgba(255, 187, 0, 0.1);
  color: #b77900;
}

.job-badge.match {
  background: rgba(255, 187, 0, 0.14);
  color: #b77900;
}

.job-badge.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.job-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.job-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.job-detail svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--gray-400);
}

.job-card:hover .job-card-view-btn {
  background: #ffbb00;
  border-color: #ffbb00;
  color: #111111;
}

/* ---------- Admin Job Card (Landing Page Public View) ---------- */
.admin-job-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.admin-job-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.admin-job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.admin-job-card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: #ffbb00;
  color: #111111;
  display: grid;
  place-items: center;
}

.admin-job-card-icon svg {
  width: 19px;
  height: 19px;
  filter: none;
}

.admin-job-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.admin-job-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.admin-job-badge {
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.admin-job-badge.type {
  background: rgba(255, 187, 0, 0.1);
  color: #b77900;
}

.admin-job-badge.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.admin-job-badge.open {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
}

.admin-job-badge.closed {
  background: rgba(156, 163, 175, 0.15);
  color: #6B7280;
}

.admin-job-badge.filled {
  background: rgba(139, 92, 246, 0.12);
  color: #7C3AED;
}

.admin-job-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.admin-job-card-campus {
  font-size: 0.78rem;
  font-weight: 500;
  color: #b77900;
  margin-bottom: 0.65rem;
}

.admin-job-card-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  flex: 1;
}

.admin-job-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.admin-job-detail svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--gray-400);
}

.admin-job-card-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}

.admin-job-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-job-action-btn svg {
  width: 14px;
  height: 14px;
}

.admin-job-action-btn.view:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #fff;
}

/* ---------- Alumni Map Section ---------- */
.landing-map {
  padding: 3.3rem 1.5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-map-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.landing-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.landing-map-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.landing-map-stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  min-width: 180px;
  transition: all var(--transition-fast);
}

.landing-map-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.landing-map-stat-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #ffbb00;
  color: #111111;
}

.landing-map-stat-icon svg {
  width: 19px;
  height: 19px;
  filter: none;
}

.landing-map-stat-info {
  display: flex;
  flex-direction: column;
}

.landing-map-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
}

.landing-map-stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

.landing-map-container {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.landing-leaflet-map {
  width: 100%;
  height: 420px;
  z-index: 1;
}

.landing-map-container .leaflet-control-zoom {
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-sm) !important;
}

.landing-map-container .leaflet-control-zoom a {
  color: var(--gray-700) !important;
  font-size: 16px !important;
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
}

.landing-map-container .leaflet-control-zoom a:hover {
  background: var(--gray-50) !important;
  color: var(--gray-900) !important;
}

.landing-map-container .leaflet-control-attribution {
  font-size: 0.6rem !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(4px);
}

.landing-map-container .leaflet-control-attribution a {
  color: var(--gray-500) !important;
}

.landing-map-container .leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
  font-family: var(--font-family) !important;
  padding: 0 !important;
}

.landing-map-container .leaflet-popup-content {
  margin: 0.6rem 0.8rem !important;
  font-size: 0.75rem !important;
  color: var(--gray-700) !important;
  line-height: 1.5 !important;
}

.landing-map-container .leaflet-popup-content strong {
  color: var(--gray-900) !important;
  font-size: 0.8rem !important;
}

.landing-map-container .leaflet-popup-tip {
  box-shadow: none !important;
}@media (max-width: 768px){
  .landing-map {
    padding: 2.5rem 1rem 0;
  }

  .landing-map-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    justify-content: stretch;
  }

  .landing-map-stat-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0.85rem 1rem;
  }

  .landing-leaflet-map {
    height: 300px;
  }
}

.address-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.address-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.1rem;
}

.address-detail {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.pagination:empty,
.pagination[style*="display: none"] {
  display: none !important;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.page-btn svg {
  width: 14px;
  height: 14px;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.page-num:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.page-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.page-ellipsis {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.3s ease;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.empty-state-icon svg {
  width: 32px;
  height: 32px;
}

.empty-state-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.empty-state-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.empty-state-btn svg {
  width: 16px;
  height: 16px;
}

.empty-state-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ---------- Job Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 500;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.show {
  display: flex;
}

.job-modal-card {
  --modal-accent: #334155;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Matched course (no special coloring) */

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.modal-company-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(51, 65, 85, 0.08);
  color: var(--modal-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-company-logo svg {
  width: 24px;
  height: 24px;
}

.modal-company-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
}

.modal-header-info {
  flex: 1;
  min-width: 0;
}

.modal-job-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}

.modal-company-name {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.modal-status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.modal-close {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.modal-body {
  overflow-y:auto;
  margin: 1rem 0;
  flex: 1;
  text-align: left;
}

.modal-section {
  margin-bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 2px solid var(--modal-accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.7rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-section-title svg {
  width: 15px;
  height: 15px;
  color: var(--modal-accent);
}

.modal-section p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.modal-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.modal-section ul li svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--success);
  margin-top: 3px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.modal-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
}

.modal-info-item svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--gray-400);
}

.modal-info-item img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  object-fit: contain;
  border-radius: 3px;
}

.modal-info-item-label {
  display: block;
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.modal-info-item-value {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Qualification Standards */
.qualification-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.qualification-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  background: rgba(51, 65, 85, 0.08);
  color: var(--modal-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qualification-icon svg {
  width: 17px;
  height: 17px;
}

.qualification-content {
  flex: 1;
  min-width: 0;
}

.qualification-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
}

.qualification-value {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.5;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.modal-posted {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.modal-date-posted {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-left: 0.75rem;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}@keyframes fadeInUp{
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-card {
  animation: fadeInUp 0.3s ease both;
}

.job-card:nth-child(1) { animation-delay: 0.02s; }
.job-card:nth-child(2) { animation-delay: 0.04s; }
.job-card:nth-child(3) { animation-delay: 0.06s; }
.job-card:nth-child(4) { animation-delay: 0.08s; }
.job-card:nth-child(5) { animation-delay: 0.1s; }
.job-card:nth-child(6) { animation-delay: 0.12s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-controls {
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 768px){
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .page-header-stats {
    width: 100%;
    justify-content: space-between;
  }

  .header-stat {
    flex: 1;
    min-width: auto;
    padding: 0.5rem;
  }

  .header-stat-number {
    font-size: 1.1rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .match-banner {
    flex-wrap: wrap;
  }

  .match-banner-toggle {
    width: 100%;
    justify-content: center;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .job-modal-card {
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}@media (max-width: 480px){
  .page-title {
    font-size: 1.15rem;
  }

  .page-header-stats {
    gap: 0.5rem;
  }

  .header-stat-label {
    font-size: 0.6rem;
  }

  .filter-bar {
    padding: 1rem;
  }

  .job-card {
    padding: 1rem;
  }

  .job-card-top {
    flex-direction: column;
    gap: 0.5rem;
  }

  .job-card-badges {
    justify-content: flex-start;
  }

  .page-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
  }

  .page-num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .page-btn span {
    display: none;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .job-card {
    animation: none;
  }

  .modal-overlay.show .job-modal-card {
    animation: none;
  }

  .filter-tag {
    animation: none;
  }
}

/* =============================================
   DOrSU GradTracer - Notifications Styles
   ============================================= */

/* ---------- Filter Bar ---------- */
.notif-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.notif-filter-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* ---------- Search ---------- */
.notif-search {
  position: relative;
}

.notif-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
}

.notif-search-input {
  width: 100%;
  padding: 0.7rem 2.5rem 0.7rem 2.6rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: all var(--transition-fast);
  outline: none;
}

.notif-search-input::placeholder {
  color: var(--gray-400);
}

.notif-search-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.notif-search-clear {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.notif-search-clear svg {
  width: 14px;
  height: 14px;
}

.notif-search-clear.visible {
  display: flex;
}

.notif-search-clear:hover {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ---------- Tabs ---------- */
.notif-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 0.35rem;
}

.notif-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  background: transparent;
  border: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.notif-tab svg {
  width: 15px;
  height: 15px;
}

.notif-tab:hover {
  color: var(--gray-700);
  background: var(--gray-50);
}

.notif-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
}

.notif-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.35rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.notif-tab.active .notif-tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.notif-mark-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
}

.notif-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.notif-mark-read svg {
  width: 15px;
  height: 15px;
}

.notif-mark-read:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

/* ---------- Results Info ---------- */
.results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.results-count {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-500);
}

.results-count strong {
  color: var(--gray-800);
  font-weight: 700;
}

/* ---------- Notification List ---------- */
.notif-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeIn 0.3s ease;
}

/* ---------- Notification Item ---------- */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-100);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.3s ease both;
}

.notif-item:nth-child(1) { animation-delay: 0.02s; }
.notif-item:nth-child(2) { animation-delay: 0.04s; }
.notif-item:nth-child(3) { animation-delay: 0.06s; }
.notif-item:nth-child(4) { animation-delay: 0.08s; }
.notif-item:nth-child(5) { animation-delay: 0.1s; }
.notif-item:nth-child(6) { animation-delay: 0.12s; }

.notif-item::before {
  content: '';
  display: none;
}

.notif-item.type-survey::before { background: var(--success); }
.notif-item.type-job::before { background: var(--primary); }
.notif-item.type-action::before { background: var(--warning); }

.notif-item.urgent {
  border-color: rgba(239, 68, 68, 0.35);
}
.notif-item.urgent::before { background: var(--danger) !important; }
.notif-item.urgent .notif-subject::after {
  content: 'Urgent';
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: var(--danger);
  border-radius: 999px;
  vertical-align: middle;
}

.modal-notif-icon.urgent {
  background: rgba(51, 65, 85, 0.08);
  color: #334155;
}

.notif-item:hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
  box-shadow: none;
  transform: none;
}

.notif-item.unread {
  background: #f8f9fa;
  border-color: var(--gray-100);
}

.notif-item.unread.type-survey { border-color: var(--gray-100); background: #f8f9fa; }
.notif-item.unread.type-job { border-color: var(--gray-100); background: #f8f9fa; }
.notif-item.unread.type-action { border-color: var(--gray-100); background: #f8f9fa; }

/* Type Icon */
.notif-type-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.notif-type-icon svg {
  width: 18px;
  height: 18px;
}

.notif-type-icon.survey {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border: none;
}

.notif-type-icon.job {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border: none;
}

.notif-type-icon.action {
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  border: none;
}

.notif-unread-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #60A5FA;
  border: 2.5px solid var(--white);
  display: none;
}

.notif-item.unread .notif-unread-dot {
  display: block;
}

/* Content */
.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.notif-sender {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
}

.notif-item.unread .notif-sender {
  color: var(--gray-900);
  font-weight: 700;
}

.notif-time {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

.notif-subject {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.notif-item.unread .notif-subject {
  font-weight: 600;
  color: var(--gray-900);
}

.notif-preview {
  font-size: 0.76rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notif-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.notif-badge {
  display: none;
}

.notif-badge svg {
  width: 12px;
  height: 12px;
}

.notif-badge.survey {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.notif-badge.job {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.notif-badge.action {
  background: rgba(245, 158, 11, 0.1);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.notif-badge.action.urgent {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.15);
  animation: pulse 2s infinite;
}@keyframes pulse{
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Read / Unread Status */
.notif-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
}

.notif-status svg {
  width: 11px;
  height: 11px;
}

.notif-status.unread {
  background: rgba(96, 165, 250, 0.08);
  color: #2563EB;
}

.notif-status.read {
  background: transparent;
  color: var(--gray-400);
}

.notif-deadline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-400);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.notif-deadline svg {
  width: 12px;
  height: 12px;
}

/* Delete Button */
.notif-delete {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  opacity: 0;
  transition: all var(--transition-fast);
}

.notif-delete svg {
  width: 14px;
  height: 14px;
}

.notif-item:hover .notif-delete {
  opacity: 1;
}

.notif-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.notif-restore {
  color: var(--gray-500);
}

.notif-restore:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 500;
  justify-content: center;
  align-items: center;
  padding: .5em;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.show {
  display: flex;
}

.notif-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}@keyframes modalSlideUp{
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notif-modal-card .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.modal-notif-icon {
  --modal-accent: #334155;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(51, 65, 85, 0.08);
  color: var(--modal-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-notif-icon svg {
  width: 24px;
  height: 24px;
}

.modal-notif-icon.survey {
  background: rgba(51, 65, 85, 0.08);
  color: #334155;
}

.modal-notif-icon.job {
  background: rgba(51, 65, 85, 0.08);
  color: #334155;
}

.modal-notif-icon.action {
  background: rgba(51, 65, 85, 0.08);
  color: #334155;
}

.modal-header-info {
  flex: 1;
  min-width: 0;
}

.modal-notif-sender {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.modal-notif-date {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 0.15rem;
}

.modal-close {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.modal-icon-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.modal-icon-btn svg {
  width: 18px;
  height: 18px;
}

.modal-icon-btn:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.modal-icon-btn.danger:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.modal-icon-btn.active {
  background: rgba(96, 165, 250, 0.1);
  color: var(--primary);
}

.modal-icon-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.notif-modal-card .modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal-notif-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.modal-notif-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.modal-notif-meta .notif-badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
}

.modal-notif-meta .notif-deadline {
  font-size: 0.75rem;
}

.modal-notif-content {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.modal-notif-content p {
  margin-bottom: 0.65rem;
}

.modal-notif-content p:last-child {
  margin-bottom: 0;
}

.modal-notif-content strong {
  color: var(--gray-800);
}

.modal-notif-content ul {
  list-style: none;
  padding: 0;
  margin: 0.65rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-notif-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  padding: 0.5rem 0.65rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
}

.modal-notif-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--success);
  margin-top: 6px;
}

.notif-modal-card .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.modal-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition-fast);
}

.modal-action-btn svg {
  width: 16px;
  height: 16px;
}

.modal-action-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-action-btn.survey-btn {
  background: var(--primary);
}

.modal-action-btn.survey-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-action-btn.career-btn {
  background: var(--primary);
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.pagination:empty,
.pagination[style*="display: none"] {
  display: none !important;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.page-btn svg {
  width: 14px;
  height: 14px;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.page-num:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.page-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.page-ellipsis {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ---------- Empty State ---------- */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.3s ease;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.empty-state-icon svg {
  width: 32px;
  height: 32px;
}

.empty-state-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.empty-state-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.empty-state-btn svg {
  width: 16px;
  height: 16px;
}

.empty-state-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}@keyframes fadeInUp{
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .notif-filter-right {
    flex-direction: column;
    align-items: stretch;
  }

  .notif-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .notif-tabs::-webkit-scrollbar {
    display: none;
  }

  .notif-mark-read {
    justify-content: center;
  }

  .notif-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  .notif-type-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .notif-type-icon svg {
    width: 18px;
    height: 18px;
  }

  .notif-top {
    flex-direction: column;
    gap: 0.15rem;
  }

  .notif-time {
    font-size: 0.65rem;
  }

  .notif-meta {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .notif-modal-card {
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}@media (max-width: 480px){
  .notif-tab span:not(.notif-tab-count) {
    display: none;
  }

  .notif-tab {
    padding: 0.5rem 0.65rem;
  }

  .notif-tab svg {
    width: 17px;
    height: 17px;
  }

  .notif-subject {
    font-size: 0.82rem;
  }

  .notif-preview {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
  }

  .page-btn {
    padding: 0.4rem 0.65rem;
    font-size: 0.72rem;
  }

  .page-num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .page-btn span {
    display: none;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .notif-item {
    animation: none;
  }

  .modal-overlay.show .notif-modal-card {
    animation: none;
  }
}

/* Keep notification modals hidden until .show (override global .modal-overlay override) */
#notifModal, #deleteNotifModal {
  display: none;
}
#notifModal.show, #deleteNotifModal.show {
  display: flex;
}

/* Keep inquiry modals hidden until .show (override global .modal-overlay override) */
#inquiryModal, #deleteInquiryModal {
  display: none;
}
#inquiryModal.show, #deleteInquiryModal.show {
  display: flex;
}

/* =============================================
   DOrSU GradTracer - Profile Styles (Redesign)
   ============================================= */

/* ---------- Profile Layout ---------- */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ---------- Profile Sidebar ---------- */
.profile-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--navbar-height) + 1.5rem);
}

.profile-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.profile-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.profile-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.profile-avatar {
  position: relative;
}

.profile-avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  overflow: hidden;
}

.profile-avatar-circle svg {
  width: 40px;
  height: 40px;
}

.profile-avatar-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-avatar-upload {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2.5px solid var(--white);
  transition: all var(--transition-fast);
  z-index: 3;
}

.profile-avatar-upload:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.profile-avatar-upload svg {
  width: 13px;
  height: 13px;
}

.profile-avatar-hint {
  display: block;
  text-align: center;
  font-size: 0.6rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
  font-weight: 500;
}

.profile-sidebar-info {
  text-align: center;
  padding: 0.75rem 1.25rem 1.5rem;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.profile-course {
  font-size: 0.78rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.profile-course svg {
  width: 14px;
  height: 14px;
}

.profile-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--primary-lighter);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--gray-600);
  font-size: 0.68rem;
  font-weight: 600;
}

.profile-tag svg {
  width: 11px;
  height: 11px;
}

/* ---------- Profile Main Content ---------- */
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.profile-card:hover {
  box-shadow: var(--shadow-md);
}

.profile-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem 0;
}

.profile-card-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card-icon svg {
  width: 16px;
  height: 16px;
}

.profile-card-icon.blue {
  background: var(--primary-lighter);
  color: var(--primary);
}

.profile-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.profile-card-icon.amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.profile-card-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.profile-card-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.profile-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
}

.profile-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* ---------- Section Edit Button ---------- */
.section-edit-btn {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.section-edit-btn svg {
  width: 14px;
  height: 14px;
}

.section-edit-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, 0.04);
}

/* ---------- Info Grid ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
}

.info-field {
  display: flex;
  flex-direction: column;
}

.info-field.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

.form-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input.error,
.info-field .form-input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  font-size: 0.68rem;
  color: var(--danger);
  font-weight: 500;
  margin-top: 0.2rem;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ---------- Editable Fields ---------- */
.info-field .form-input:disabled {
  background: var(--gray-50);
  border-color: var(--gray-100);
  color: var(--gray-700);
  cursor: default;
}

.info-field .form-input:not(:disabled) {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.profile-card.editing .info-field .form-input:disabled {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--gray-800);
  cursor: text;
}

.profile-card.editing .info-field .form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ---------- Section Actions ---------- */
.section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
}

.cancel-btn {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.cancel-btn:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.save-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.save-btn svg {
  width: 13px;
  height: 13px;
}

.save-btn:hover {
  background: var(--primary-dark);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 1.25rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gray-200);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.1rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.25rem;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-200);
}

.timeline-dot.green { background: var(--success); box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3); }
.timeline-dot.blue { background: var(--primary); box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3); }
.timeline-dot.amber { background: var(--warning); box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3); }
.timeline-dot.purple { background: #8B5CF6; box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3); }
.timeline-dot.gray { background: var(--gray-400); box-shadow: 0 0 0 2px rgba(156, 163, 175, 0.3); }

.timeline-date {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 0.1rem;
  display: block;
}

.timeline-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: 0.05rem;
}

.timeline-subtitle {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.05rem;
}

.timeline-meta {
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* ---------- Eligibility ---------- */
.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: all var(--transition-fast);
  position: relative;
}

.eligibility-item:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.eligibility-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-icon svg {
  width: 16px;
  height: 16px;
}

.eligibility-icon.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8B5CF6;
}

.eligibility-icon.blue {
  background: var(--primary-lighter);
  color: var(--primary);
}

.eligibility-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.05rem;
}

.eligibility-sub {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 0.05rem;
}

.eligibility-meta {
  font-size: 0.68rem;
  color: var(--gray-400);
}

/* ---------- Password Form ---------- */
.password-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 0.7rem;
  width: 15px;
  height: 15px;
  color: var(--gray-400);
  pointer-events: none;
}

.password-grid .form-input {
  padding-left: 2.2rem;
}

.toggle-pass {
  position: absolute;
  right: 0.4rem;
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.toggle-pass:hover {
  background: var(--gray-100);
  color: var(--gray-600);
}

.toggle-pass svg {
  width: 15px;
  height: 15px;
}

/* Password Strength */
.password-strength {
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.strength-text {
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 0.15rem;
  display: block;
}

.password-actions {
  display: flex;
  justify-content: flex-end;
}

.save-password-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
}

.save-password-btn svg {
  width: 14px;
  height: 14px;
}

.save-password-btn:hover {
  background: var(--primary-dark);
}

/* ---------- Work Status Map ---------- */
.work-map-section {
  margin-top: 0.85rem;
}

.work-map-container {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin-top: 0.3rem;
  position: relative;
  z-index: 0;
}

.work-map-container .leaflet-pane {
  z-index: 1;
}

.work-map-container .leaflet-top,
.work-map-container .leaflet-bottom {
  z-index: 2;
}

/* ---------- Add / Remove Entry ---------- */
.add-entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--gray-300);
  background: transparent;
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font);
  margin-top: 0.65rem;
}

.add-entry-btn svg {
  width: 13px;
  height: 13px;
}

.add-entry-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, 0.03);
}

.timeline-remove-btn,
.eligibility-remove-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.timeline-remove-btn svg,
.eligibility-remove-btn svg {
  width: 11px;
  height: 11px;
}

.timeline-remove-btn:hover,
.eligibility-remove-btn:hover {
  background: var(--danger);
  color: var(--white);
}

/* ---------- New Entry Form ---------- */
.new-entry-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  margin-top: 0.65rem;
  background: var(--gray-50);
}

.new-entry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.new-entry-form .form-input {
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
}

.new-entry-form .form-label {
  font-size: 0.65rem;
  margin-bottom: 0.2rem;
}

.new-entry-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.new-entry-actions button {
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-field.full-width {
    grid-column: 1;
  }
}@media (max-width: 600px){
  .profile-layout {
    gap: 1rem;
  }

  .profile-cover {
    height: 100px;
  }

  .profile-avatar-circle {
    width: 80px;
    height: 80px;
  }

  .profile-avatar-circle svg {
    width: 34px;
    height: 34px;
  }

  .profile-name {
    font-size: 1.1rem;
  }

  .profile-card-head {
    padding: 0.85rem 1rem 0;
  }

  .profile-card-body {
    padding: 0.85rem 1rem 1rem;
  }

  .password-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   How to Apply - Jobs Page
   ============================================= */

/* ---------- Section Container ---------- */
.apply-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.apply-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.apply-section-title svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

/* ---------- Process Steps ---------- */
.apply-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}

.apply-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--transition-fast);
}

.apply-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
  transform: translateY(-1px);
}

.apply-step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apply-step-content {
  flex: 1;
  min-width: 0;
}

.apply-step-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.apply-step-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.apply-step-desc strong {
  color: var(--gray-700);
  font-weight: 600;
}

.apply-step-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apply-step-icon svg {
  width: 20px;
  height: 20px;
}

.apply-step-icon.blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.apply-step-icon.green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success);
}

.apply-step-icon.purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8B5CF6;
}

/* Connector line between steps */
.apply-step-connector {
  width: 2px;
  height: 1.25rem;
  background: var(--gray-200);
  margin-left: 1.6rem;
  flex-shrink: 0;
}

/* ---------- Eligibility Notice Bar ---------- */
.apply-notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.apply-notice-bar svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.apply-notice-bar p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.apply-notice-bar strong {
  color: var(--gray-800);
  font-weight: 600;
}
/* ---------- Bottom Row: Warning + Address ---------- */
.apply-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.apply-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.15rem;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
}

.apply-warning-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.apply-warning-icon svg {
  width: 18px;
  height: 18px;
  color: #D97706;
}

.apply-warning-body {
  flex: 1;
}

.apply-warning-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 0.3rem;
}

.apply-warning-desc {
  font-size: 0.78rem;
  color: #A16207;
  line-height: 1.55;
}

.apply-address {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  text-align: left;
}

.apply-address-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.apply-address-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}

.apply-address-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.apply-address-divider {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 0 0.5rem;
  border-radius: 1px;
}

.apply-address-detail {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .apply-bottom-row {
    grid-template-columns: 1fr;
  }
}@media (max-width: 600px){
  .apply-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .apply-step {
    padding: 0.95rem 1rem;
    gap: 0.75rem;
  }

  .apply-step-icon {
    display: none;
  }

  .apply-warning {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .apply-address {
    text-align: left;
  }
}

.fp-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  color: var(--gray-800);
}

.btn-outline svg {
  width: 16px;
  height: 16px;
}

/* ---------- Success Card ---------- */
.success-card {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.success-icon svg {
  width: 72px;
  height: 72px;
}

.success-icon.error-icon svg {
  width: 72px;
  height: 72px;
}

.success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.success-subtitle {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.success-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ---------- Processing Card ---------- */
.processing-card {
  text-align: center;
  padding: 1rem 0;
}

.processing-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.processing-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.processing-subtitle {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.processing-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  max-width: 280px;
  margin: 0 auto 1rem;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.proc-step.done {
  color: var(--success);
}

.proc-step.loading {
  color: var(--gray-800);
  font-weight: 500;
}

.proc-step-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proc-step-icon svg {
  width: 14px;
  height: 14px;
}

.proc-step-icon.pending {
  color: var(--gray-300);
}

.proc-step-icon.loading {
  color: var(--primary);
}

.proc-step-icon.done {
  color: var(--success);
}

.mini-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.processing-est {
  font-size: 0.75rem;
  color: var(--gray-400);
}@keyframes spin{
  to { transform: rotate(360deg); }
}@keyframes fadeInUp{
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .fp-buttons {
    flex-direction: column-reverse;
  }

  .fp-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .fp-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
/* =============================================
   DOrSU GradTracer - Registration Styles
   (Base styles provided by styles.css)
   ============================================= */

/* ---------- Wrapper ---------- */
.login-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  width: 42%;
  background: linear-gradient(160deg, var(--primary) 0%, #1E40AF 40%, var(--primary-dark) 70%, #091E3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 77, 143, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  text-align: center;
}

/* Logo */
.logo-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.logo-text { font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }

/* Hero Typography */
.hero-heading {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Hero Steps */
.hero-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-step span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hero-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.hero-step-icon svg { width: 16px; height: 16px; }

.hero-step-icon.active {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60A5FA;
  color: #60A5FA;
}

.hero-step-line {
  width: 40px;
  height: 1.5px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 18px;
}

/* Illustration */
.hero-illustration { margin-top: 0.5rem; }
.illustration-svg { width: 100%; max-width: 340px; height: auto; }

/* ---------- Step Panels ---------- */
.step-panel {
  display: none;
  width: 100%;
  max-width: 480px;
}

.step-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

/* Step Header */
.step-header { margin-bottom: 1.25rem; }

.step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.step-subtitle {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---------- Stepper ---------- */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.stepper-circle svg { width: 14px; height: 14px; }

.stepper-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
}

.stepper-item.active .stepper-circle {
  background: linear-gradient(135deg, #ffbb00 0%, #ffd45c 100%);
  border-color: transparent;
  color: #111111;
}

.stepper-item.active .stepper-label {
  color: #b77900;
  font-weight: 600;
}

.stepper-item.completed .stepper-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.stepper-item.completed .stepper-label {
  color: var(--success);
}

.stepper-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  margin: 0 0.75rem;
  transition: background var(--transition-base);
}

.stepper-line.filled {
  background: var(--success);
}

/* ---------- Form Styles ---------- */
.step-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group {
  position: relative;
  margin-bottom: 0.15rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}

.required { color: var(--danger); }

/* Select */
.select-wrapper {
  position: relative;
}

.form-select-custom {
  width: 100%;
  padding: 0.8rem 2.25rem 0.8rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-select-custom:hover { border-color: var(--gray-300); background: var(--white); }
.form-select-custom:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(18, 58, 111, 0.1); }

.select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

/* Text Inputs */
.form-input {
  width: 100%;
  padding: 0.8rem 0.85rem 0.8rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-base);
}

.form-input:hover { border-color: var(--gray-300); background: var(--white); }
.form-input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(18, 58, 111, 0.1); }

.form-input-date { cursor: pointer; }

.form-input.input-error { border-color: var(--danger); background: #FEF2F2; }
.form-input.input-error:focus { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1); }

/* Textarea */
.form-textarea {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.8rem;
  font-weight: 400;
  font-family: 'Courier New', Courier, monospace;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  transition: all var(--transition-base);
}

.form-textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(18, 58, 111, 0.1); }

/* Unified sizing for inputs & selects (equal width/height/padding/margin on all screens) */
.form-input,
.form-select-custom {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 3rem;
  margin: 0;
  padding: 0 0.85rem;
  font-size: 14px;
  line-height: 1.4;
}

.form-select-custom {
  padding-right: 2.25rem; /* space for dropdown chevron */
}

.form-input-date {
  padding-right: 0.85rem;
}

.form-textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.85rem;
  font-size: 14px;
  min-height: 7rem;
}

.error-msg {
  font-size: 0.72rem;
  color: var(--danger);
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.error-msg.visible {
  display: block;
  animation: shakeIn 0.3s ease;
}

/* ---------- Upload Area ---------- */
.upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--primary);
  background: rgba(18, 58, 111, 0.03);
}

.upload-area:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
}

.upload-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 58, 111, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.upload-icon-circle svg { width: 22px; height: 22px; }

.upload-main-text {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 0.2rem;
}

.upload-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.upload-sub-text {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}

.btn-upload {
  padding: 0.45rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.btn-upload:hover {
  background: var(--primary);
  color: var(--white);
}

/* Upload Preview */
.upload-preview {
  position: relative;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
}

.upload-preview img {
  width: 75%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: var(--radius-sm);
  filter: none !important;
}

.btn-remove-img,
.btn-rotate-img {
  position: absolute;
  top: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.btn-remove-img {
  right: 0.5rem;
  background: var(--danger);
}

.btn-rotate-img {
  left: 0.5rem;
  background: var(--primary);
}

.btn-remove-img:hover { background: #DC2626; transform: scale(1.1); }
.btn-rotate-img:hover { background: #0F2D57; transform: scale(1.1); }
.btn-remove-img svg,
.btn-rotate-img svg { width: 14px; height: 14px; }

.btn-remove-img {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--danger);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.btn-remove-img:hover { background: #DC2626; transform: scale(1.1); }
.btn-remove-img svg { width: 14px; height: 14px; }

.upload-helper {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 0.4rem;
}

.upload-area.upload-error {
  border-color: var(--danger);
  background: #FEF2F2;
}

/* ---------- Buttons ---------- */
.step-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.btn-primary {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 12px rgba(18,58,111,0.35); transform: translateY(-1px); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-primary .btn-text { position: relative; z-index: 1; }
.btn-primary .btn-loader { position: relative; z-index: 1; }

.btn-verify { flex: 1; }

.btn-outline {
  padding: 0.7rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline:hover { border-color: var(--primary); background: rgba(18,58,111,0.04); }
.btn-outline svg { width: 16px; height: 16px; }

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.mini-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(18,58,111,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

#registerWrapper .spinner,
#registerWrapper .mini-spinner {
  border-color: rgba(255, 187, 0, 0.3);
  border-top-color: #ffbb00;
}

/* ---------- Processing Screen ---------- */
.processing-card {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  animation: fadeInUp 0.4s ease forwards;
}

.processing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(18,58,111,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.processing-icon.verify-icon { background: rgba(245,158,11,0.1); color: var(--warning); }
.processing-icon svg { width: 30px; height: 30px; }

.processing-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.processing-subtitle {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.processing-steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.proc-step.done { color: var(--success); }
.proc-step.loading { color: var(--gray-700); font-weight: 500; }

.proc-step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proc-step-icon.done { background: var(--success); color: var(--white); }
.proc-step-icon.done svg { width: 12px; height: 12px; }
.proc-step-icon.loading { background: rgba(18,58,111,0.1); }
.proc-step-icon.pending { background: var(--gray-100); color: var(--gray-300); }
.proc-step-icon.pending svg { width: 12px; height: 12px; }

.processing-est {
  font-size: 0.72rem;
  color: var(--gray-400);
}

/* ---------- Confidence Meter ---------- */
.confidence-meter {
  margin-top: 1rem;
  padding: 0.85rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  animation: fadeInUp 0.4s ease forwards;
}

.confidence-bar {
  width: 100%;
  height: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.confidence-fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: var(--primary);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.confidence-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confidence-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

.confidence-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* ---------- OCR Progress ---------- */
.ocr-progress {
  margin-top: 1rem;
  animation: fadeInUp 0.3s ease forwards;
}

.ocr-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.ocr-progress-fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: var(--primary);
  transition: width 0.3s ease;
}

.ocr-progress-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
  display: block;
}

/* ---------- Processing Icon Variants ---------- */
.processing-icon.ocr-icon { background: rgba(96,165,250,0.1); color: #60A5FA; }

/* ---------- Confidence Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.job-details-modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1rem;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1rem;
  max-width: 410px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-icon svg { width: 28px; height: 28px; }


.modal-icon.warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.modal-icon.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.modal-icon.quality {
  background: rgba(107, 114, 128, 0.1);
  color: var(--gray-500);
}

.modal-icon.confirm {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.modal-message {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.modal-actions .btn-outline,
.modal-actions .btn-primary {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ---------- Upload Actions (Upload / Camera) ---------- */
.upload-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Camera option only appears on mobile devices */
.btn-camera-upload {
  display: none;
}@media (max-width: 768px), (hover: none) and (pointer: coarse){
  .btn-camera-upload {
    display: inline-flex;
  }
}

.btn-upload svg {
  width: 14px;
  height: 14px;
  margin-right: 0.3rem;
  vertical-align: -2px;
}

/* ---------- Camera Capture Modal ---------- */
.camera-overlay {
  z-index: 1100;
}

.camera-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.camera-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.camera-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.camera-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.camera-close:hover {
  background: var(--danger);
  color: var(--white);
}

.camera-close svg { width: 16px; height: 16px; }

.camera-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.camera-stage video,
.camera-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
}

.camera-frame-guide {
  position: absolute;
  inset: 8% 6%;
  border: 2px dashed rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.camera-stage.review .camera-frame-guide { display: none; }

.camera-hint {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 0.6rem;
}

.camera-error {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--danger);
  text-align: center;
  margin-top: 0.6rem;
}

.camera-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.9rem;
}

.camera-actions .btn-outline,
.camera-actions .btn-primary {
  flex: 1;
  justify-content: center;
  align-items: center;
}

.camera-actions svg {
  width: 15px;
  height: 15px;
}@media (max-width: 480px){
  .camera-card { padding: 1rem; }
  .camera-actions { flex-direction: column; }
}

/* ---------- Success Screen ---------- */
.success-card {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 1.25rem;
}

.success-icon svg {
  width: 72px;
  height: 72px;
}

.survey-success .success-icon.error-icon,
.survey-success .success-icon.error-icon svg {
  color: #EF4444;
}

.survey-success .success-icon.error-icon svg {
  stroke: #EF4444;
}

.survey-success .success-icon.error-icon circle {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: none;
}

.success-icon circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawCircle 0.6s ease forwards 0.2s;
}

.success-icon polyline {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s ease forwards 0.7s;
}

.success-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.success-subtitle {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--primary); }
.footer-links span { color: var(--gray-300); font-size: 0.7rem; }

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}@keyframes fadeInUp{
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}@keyframes spin{
  to { transform: rotate(360deg); }
}@keyframes shakeIn{
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}@keyframes pulse{
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}@keyframes float{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}@keyframes drawCircle{
  to { stroke-dashoffset: 0; }
}@keyframes drawCheck{
  to { stroke-dashoffset: 0; }
}@keyframes scanLine{
  0% { transform: translateY(0); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(60px); opacity: 0.6; }
}

/* ---------- OTP Email Display ---------- */
.otp-email {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  word-break: break-all;
}

/* OTP Illustration */
.otp-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.otp-illustration svg {
  width: 100px;
  height: auto;
}

/* ---------- OTP Input Boxes ---------- */
.otp-input-group {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.otp-box {
  width: 46px;
  height: 52px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-base);
  caret-color: var(--primary);
}

.otp-box:hover { border-color: var(--gray-300); background: var(--white); }

.otp-box:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 58, 111, 0.1);
  transform: scale(1.05);
}

.otp-box.filled {
  border-color: var(--primary);
  background: rgba(18, 58, 111, 0.04);
}

.otp-box.error {
  border-color: var(--danger);
  background: #FEF2F2;
  animation: shakeIn 0.3s ease;
}

/* OTP Success Message */
.otp-success-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.3s ease;
}

.otp-success-msg svg { width: 18px; height: 18px; }

/* Resend Section */
.resend-section {
  text-align: center;
  margin-top: 0.5rem;
}

.resend-section p {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.resend-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.resend-btn:hover:not(:disabled) {
  background: rgba(18, 58, 111, 0.06);
}

.resend-btn:disabled {
  color: var(--gray-400);
  cursor: not-allowed;
}

/* ---------- Password Strength Meter ---------- */
.strength-meter {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.strength-bar {
  width: 100%;
  height: 5px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  transition: width 0.3s ease, background 0.3s ease;
}

.strength-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
}

.strength-label.weak { color: var(--danger); }
.strength-label.fair { color: #F97316; }
.strength-label.good { color: var(--warning); }
.strength-label.strong { color: #22C55E; }
.strength-label.very-strong { color: var(--success); }

/* ---------- Password Requirements ---------- */
.password-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.65rem 0.75rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 0.25rem;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.req-item.met {
  color: var(--success);
}

.req-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.req-icon svg { width: 11px; height: 11px; }

.req-item.met .req-icon {
  background: var(--success);
  color: var(--white);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-input {
  padding-right: 2.75rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.password-toggle:hover { color: var(--gray-600); }
.password-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.password-toggle svg { width: 18px; height: 18px; }

/* ---------- Success Buttons ---------- */
.success-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

/* ---------- Processing Icon Variants ---------- */
.processing-icon.otp-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
.processing-icon.creation-icon { background: rgba(18,58,111,0.08); color: var(--primary); }

.animate-fade-in { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-up { opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.float-animation { animation: float 4s ease-in-out infinite; }
.float-animation.delay-1 { animation-delay: 0.8s; }
.float-animation.delay-2 { animation-delay: 1.6s; }
.float-animation.delay-3 { animation-delay: 2.4s; }

.scan-animation { animation: scanLine 2.5s ease-in-out infinite; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-heading { font-size: 1.65rem; }
  .hero-subtitle { font-size: 0.78rem; }
}@media (max-width: 768px){
  .hero-section { display: none; }

  .mobile-logo .logo-text { color: var(--white); }

  .step-title { font-size: 1.25rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .step-buttons { flex-direction: column-reverse; }
  .step-buttons .btn-primary { width: 100%; }
  .step-buttons .btn-outline { width: 100%; justify-content: center; }

  .stepper-label { font-size: 0.68rem; }
  .stepper-circle { width: 24px; height: 24px; }

  .modal-card {
    padding: 1.5rem 1.25rem;
    margin: 0.5rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .otp-box {
    width: 40px;
    height: 46px;
    font-size: 1.05rem;
  }

  .otp-input-group {
    gap: 0.4rem;
  }

  .password-requirements {
    padding: 0.5rem 0.6rem;
  }
}@media (max-width: 400px){
  .step-title { font-size: 1.15rem; }
  .form-input { font-size: 16px; } /* prevent iOS zoom */

  .otp-box {
    width: 36px;
    height: 42px;
    font-size: 1rem;
  }
}@media print{
  .hero-section { display: none; }
}@media (prefers-reduced-motion: reduce){
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* DOrSU GradTracer monochrome visual system */
:root {
  --primary: #111111;
  --primary-dark: #000000;
  --primary-light: #333333;
  --primary-lighter: rgba(17, 17, 17, 0.08);
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray-50: #fafafa;
  --gray-100: #eeeeee;
  --gray-200: #dddddd;
  --gray-300: #c4c4c4;
  --gray-400: #8a8a8a;
  --gray-500: #666666;
  --gray-600: #4d4d4d;
  --gray-700: #333333;
  --gray-800: #1f1f1f;
  --gray-900: #0a0a0a;
  --danger: #222222;
  --success: #222222;
  --warning: #fcba03;
  --accent: #fcba03;
  --accent-light: rgba(252, 186, 3, 0.12);
  --accent-gradient: linear-gradient(135deg, #fcba03 0%, #d88900 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 34px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 24px 54px rgba(0, 0, 0, 0.12);
}

html,
body {
  background: var(--off-white);
  color: var(--gray-800);
}

body {
  background-image: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
}

.navbar,
.navbar-mobile,
.login-section,
.form-section {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--gray-200);
}

.hero-section,
.welcome-banner,
.page-header {
  background: linear-gradient(145deg, #050505 0%, #242424 58%, #111111 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-overlay {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-section {
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 80px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 187, 0, 0.1);
  pointer-events: none;
}

/* ---------- Register: circles off the right section on desktop, access design on mobile ---------- */
#registerWrapper {
  overflow-x: clip;
}

@media (max-width: 900px) {
  body.register-body {
    background-color: #111111;
    background-image: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
    background-attachment: fixed;
  }
  #registerWrapper::before,
  #registerWrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }
  #registerWrapper::before {
    top: 66%;
    right: -36px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.06);
  }
  #registerWrapper::after {
    top: -60px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: rgba(255, 187, 0, 0.1);
  }
  #registerWrapper .login-section {
    background: transparent !important;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }
  #registerWrapper .login-section > .site-footer {
    margin-bottom: 0;
  }
  #registerWrapper .login-card {
    position: relative;
    z-index: 1;
  }
  body.register-body .login-section > .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  body.register-body .footer-copy {
    color: rgba(255, 255, 255, 0.6);
  }
  body.register-body .footer-links a {
    color: rgba(255, 255, 255, 0.78);
  }
  body.register-body .footer-links a:hover {
    color: #ffbb00;
  }
  body.register-body .footer-links a:focus-visible {
    outline-color: #ffbb00;
  }
  body.register-body .footer-sep {
    color: rgba(255, 255, 255, 0.3);
  }
}

.hero-heading .highlight,
.welcome-heading .highlight,
.page-title .highlight {
  color: var(--accent);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text,
.logo-text-dark,
.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active,
.upload-link,
.match-banner-desc strong,
.filter-tag,
.filter-tag-remove,
.job-badge.type,
.job-card-company-icon,
.profile-card-icon.blue,
.survey-card-icon.blue,
.fp-icon,
.fp-proc-icon {
  color: var(--primary);
}

.nav-link:hover,
.nav-link.active,
.mobile-link.active,
.profile-tag,
.filter-tag,
.job-badge.type,
.notif-badge.job,
.notif-status.unread,
.stat-card-icon.blue,
.profile-card-icon.blue,
.survey-card-icon.blue,
.fp-icon,
.fp-proc-icon,
.upload-icon-circle,
.match-banner-icon {
  background: var(--primary-lighter);
  border-color: var(--gray-300);
}

.btn-primary,
.save-btn,
.survey-header-icon,
.survey-header-icon,
.progress-step.active .step-circle,
.notif-tab.active,
.avatar-circle,
.profile-avatar-upload,
.btn-upload:hover {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.btn-back-link {
  background: linear-gradient(135deg, #ffbb00 0%, #ffd45c 100%) !important;
  border-color: transparent !important;
  color: #111111 !important;
}

.btn-back-link:hover {
  background: linear-gradient(135deg, #e6a800 0%, #ffbb00 100%) !important;
}

.btn-register {
  background: linear-gradient(135deg, #ffbb00 0%, #ffd45c 100%) !important;
  border-color: transparent !important;
  color: #111111 !important;
}

.btn-register:hover {
  background: linear-gradient(135deg, #e6a800 0%, #ffbb00 100%) !important;
  border-color: transparent !important;
  color: #111111 !important;
}

body.access-page .step-buttons .btn-outline {
  background: linear-gradient(135deg, #ffbb00 0%, #ffd45c 100%) !important;
  border-color: transparent !important;
  color: #111111 !important;
}

body.access-page .step-buttons .btn-outline:hover {
  background: linear-gradient(135deg, #e6a800 0%, #ffbb00 100%) !important;
  border-color: transparent !important;
  color: #111111 !important;
}

.welcome-banner::after,
.welcome-banner::before,
.page-header::after,
.page-header::before,
.header-stat,
.hero-stats {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.stat-card-icon.green,
.stat-card-icon.purple,
.profile-card-icon.green,
.profile-card-icon.purple,
.profile-card-icon.red,
.survey-card-icon.green,
.survey-card-icon.purple,
.notif-type-icon.survey,
.notif-type-icon.action,
.notif-badge.survey,
.job-badge.match,
.job-badge.urgent,
.schedule-badge {
  color: var(--gray-700);
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.stat-card-icon.amber,
.survey-card-icon.amber,
.notif-type-icon.action,
.notif-badge.action,
.schedule-badge {
  color: var(--accent);
  background: var(--accent-light);
  border-color: rgba(252, 186, 3, 0.28);
}

.timeline-dot.amber,
.notif-item.type-action::before,
.survey-schedule-card {
  border-color: var(--accent);
}

.timeline-dot.amber,
.notif-item.type-action::before {
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(252, 186, 3, 0.22);
}

.login-card .hero-heading .highlight {
  color: var(--accent);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-input,
.form-select-custom,
.form-textarea,
.filter-search-input,
.filter-select,
.notif-search-input,
.survey-input,
.survey-textarea {
  background: #ffffff;
  border-color: var(--gray-300);
}

.form-input:focus,
.form-select-custom:focus,
.form-textarea:focus,
.filter-search-input:focus,
.filter-select:focus,
.notif-search-input:focus,
.survey-input:focus,
.survey-textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.purpose-note,
.notif-item.unread,
.notif-item.unread.type-survey,
.notif-item.unread.type-job,
.notif-item.unread.type-action,
.job-card.matched {
  background: #f0f0f0;
  border-color: var(--gray-300);
}

.job-card-company-icon,
.notif-type-icon.job {
  color: #111111;
  background: #e6e6e6;
  border-color: #c4c4c4;
}

.timeline-dot.green,
.timeline-dot.blue,
.timeline-dot.amber,
.timeline-dot.purple,
.timeline-dot.gray,
.notif-item.type-survey::before,
.notif-item.type-job::before,
.notif-item.type-action::before {
  background: #333333;
  border-color: #333333;
  box-shadow: 0 0 0 2px #d0d0d0;
}

.survey-schedule-card {
  border-top-color: #333333;
}

.notif-unread-dot {
  background: #111111;
}

input.input-error,
.form-input.input-error,
.form-input.error {
  border-color: #333333;
  background: #f0f0f0;
}

.error-message,
.error-msg,
.form-error,
.required {
  color: #dc2626;
}

.brand-logo,
.brand-logo img,
.brand-logo-system,
.brand-logo-dorsu,
img[alt*="DOrSU"],
img[alt*="Logo"] {
  filter: none !important;
}

::selection {
  background: #111111;
  color: #ffffff;
}

html,
body {
  width: 100%;
  min-width: 320px;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.upload-preview img {
  filter: none !important;
}

.login-wrapper,
.login-section,
.login-card,
.form-section,
.step-panel,
.main-content {
  min-width: 0;
}

.form-input:not(.input-error),
.form-select-custom:not(.input-error),
.form-textarea:not(.input-error) {
  background: #ffffff !important;
}

.form-input,
.form-select-custom,
.form-textarea,
.survey-input,
.filter-search-input,
.filter-select,
.notif-search-input {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-800);
  font-family: var(--font-family);
  font-size: 0.78rem;
}

.form-input:not(.input-error):not(.error),
.form-select-custom:not(.input-error):not(.error),
.form-textarea:not(.input-error):not(.error),
.survey-input:not(.input-error):not(.error),
.filter-search-input:not(.input-error):not(.error),
.filter-select:not(.input-error):not(.error),
.notif-search-input:not(.input-error):not(.error) {
  background: #ffffff !important;
}

.form-input:focus,
.form-select-custom:focus,
.form-textarea:focus,
.survey-input:focus,
.filter-search-input:focus,
.filter-select:focus,
.notif-search-input:focus {
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.12);
}

.login-card .form-input {
  padding-left: 0.75rem;
}

.site-footer {
  background: transparent !important;
  margin-bottom: 10px;
}

/* ---------- Shared Alumni Dashboard Language ---------- */
.brand-logos {
  display: inline-flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}

.brand-logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: none !important;
}

.brand-logos img + img {
  width: 35px;
  height: 35px;
  margin-left: -0.2rem;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-lockup .brand-text {
  color: var(--primary);
  line-height: 1.1;
}

.brand-lockup small {
  color: var(--gray-400);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-icon-btn,
.nav-avatar,
.card-head-icon,
.btn-start-survey,
.btn-primary,
.btn-outline {
  transition: all var(--transition-fast);
}

.nav-icon-btn {
  border-radius: 8px;
}

.nav-icon-btn:hover,
.nav-icon-btn.active {
  color: #111111;
  background: #fff4c7;
}

.nav-icon-btn.active .notif-badge {
  border-color: #fff4c7;
}

.btn-start-survey,
.btn-primary {
  border-radius: 8px;
  font-weight: 700;
}

.btn-outline {
  border-radius: 8px;
  font-weight: 700;
}

.card-head-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.card-head-icon svg {
  width: 19px;
  height: 19px;
  filter: none;
}

/* ---------- Home Card Refresh ---------- */
.home-page .survey-schedule-card,
.home-page .about-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.home-page .survey-schedule-card {
  border-top: 3px solid #ffbb00;
}

.home-page .survey-schedule-card .schedule-head,
.home-page .about-card .card-head {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.home-page .survey-schedule-card .schedule-badge {
  color: #765600;
  background: #fff4c7;
}

.home-page .survey-schedule-card .schedule-title,
.home-page .about-card .card-head-title {
  color: #111827;
  font-size: 1.05rem;
}

.home-page .survey-schedule-card .schedule-desc,
.home-page .about-card .purpose-text {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.65;
}

.home-page .schedule-meta {
  margin-top: 1rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  border-color: #f3f4f6;
}

.home-page .schedule-meta-item i,
.home-page .about-card .purpose-list li svg,
.home-page .about-card .campus-list li svg {
  color: #b77900;
}

.home-page .schedule-tags-section,
.home-page .about-card .card-body {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}

.home-page .schedule-tag {
  color: #765600;
  background: #fffaf0;
  border-color: #f4d98a;
}

.home-page .about-card .campus-section {
  border-top-color: #f3f4f6;
}

.home-page .about-card .campus-heading {
  color: #111827;
}

.home-page .about-card .campus-subtext,
.home-page .about-card .campus-list li {
  color: #6b7280;
}

.home-page .services-card {
  display: none;
}

/* ---------- Shared Navbar Hover and Active States ---------- */
.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active,
.nav-icon-btn:hover,
.nav-icon-btn.active {
  color: #111111 !important;
  background: #fff4c7 !important;
}

.nav-link.active,
.mobile-link.active {
  font-weight: 700;
}

.nav-link:hover svg,
.nav-link.active svg,
.mobile-link:hover svg,
.mobile-link.active svg,
.nav-icon-btn:hover svg,
.nav-icon-btn.active svg {
  color: #b77900 !important;
}

.nav-icon-btn:hover,
.nav-icon-btn.active {
  border-radius: 8px;
}

.nav-icon-btn.active .notif-badge,
.nav-icon-btn:hover .notif-badge {
  border-color: #fff4c7 !important;
}

.nav-icon-btn.active .notif-badge {
  background: #111111 !important;
  color: #ffbb00 !important;
}

.mobile-link.logout:hover {
  color: #b91c1c !important;
  background: #fef2f2 !important;
}

.mobile-link.logout:hover svg {
  color: #b91c1c !important;
}

/* Keep dashboard detail modals closed until their item is selected. */
#jobModal,
#notifModal {
  display: none !important;
}

#jobModal.show,
#notifModal.show {
  display: flex !important;
}

/* ---------- Shared Dashboard Header and Card Refresh ---------- */
.page-header {
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%) !important;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.16);
}

.page-header::after {
  background: rgba(255, 187, 0, 0.1);
}

.page-header::before {
  background: rgba(255, 255, 255, 0.06);
}

.page-header .page-title .highlight {
  color: #ffbb00 !important;
  background: none !important;
  -webkit-text-fill-color: #ffbb00 !important;
}

.page-header .page-subtitle {
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  max-width: none;
}
.page-header-plain,
.page-header-plain.page-header {
  background: transparent !important;
  box-shadow: none;
  padding: 0 0 0.5rem;
  margin-bottom: 0.25rem;
  width: 100%;
  overflow: visible;
}
.page-header-plain.page-header::before,
.page-header-plain.page-header::after {
  display: none;
}
.page-header-plain .page-title {
  color: var(--gray-900, #111827);
}
.page-header-plain .page-subtitle {
  color: var(--gray-600, #4b5563);
}
.page-header-plain .page-title .highlight {
  color: #ffbb00 !important;
}
.survey-page .survey-schedule-card,
.home-page .survey-schedule-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #ffbb00;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.survey-page .survey-schedule-card::after,
.home-page .survey-schedule-card::after {
  content: '';
  position: absolute;
  top: -45px;
  right: -35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 187, 0, 0.1);
  pointer-events: none;
}

.survey-page .survey-schedule-card .schedule-head,
.home-page .survey-schedule-card .schedule-head {
  padding: 1.35rem 1.4rem 0.9rem;
}

.survey-page .survey-schedule-card .schedule-title,
.home-page .survey-schedule-card .schedule-title {
  max-width: 500px;
  color: #111827;
  font-size: 1.15rem;
}

.survey-page .survey-schedule-card .schedule-desc,
.home-page .survey-schedule-card .schedule-desc {
  max-width: none;
  color: #6b7280;
  line-height: 1.7;
}

.survey-page .survey-schedule-card .schedule-meta,
.home-page .survey-schedule-card .schedule-meta {
  background: #fffaf0;
  border-top-color: #f4d98a;
  border-bottom-color: #f4d98a;
}

.survey-page .survey-schedule-card .schedule-action,
.home-page .survey-schedule-card .schedule-action {
  padding: 0 1.4rem 1.25rem;
}

.survey-page .survey-schedule-card .btn-start-survey,
.home-page .survey-schedule-card .btn-start-survey {
  width: auto;
  margin: 0;
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  box-shadow: none;
}

.survey-page .survey-schedule-card .btn-start-survey:hover,
.home-page .survey-schedule-card .btn-start-survey:hover {
  background: linear-gradient(135deg, #e6a800, #ffbb00);
  color: #111111;
}

.survey-page .survey-card,
.survey-page .purpose-note,
.home-page .about-card {
  border-radius: 12px;
  border-color: #e5e7eb;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.home-page .about-card .card-head {
  padding-top: 1.25rem;
}

.home-page .about-card .card-head-icon {
  color: #b77900;
  background: rgba(255, 187, 0, 0.1);
}

/* ---------- Profile Page Refresh ---------- */
.profile-page .main-content {
  max-width: 1280px;
  padding-top: 1.5rem;
}

.profile-page .profile-layout {
  gap: 1.25rem;
}

.profile-page .profile-sidebar {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.06);
}

.profile-page .profile-cover {
  height: 145px;
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
}

.profile-page .profile-cover::after {
  content: 'ALUMNI PROFILE';
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.profile-page .profile-avatar-circle {
  background: #fff4c7;
  color: #b77900;
}

.profile-page .profile-avatar-circle img {
  filter: none !important;
}

.profile-page .profile-avatar-upload {
  background: #ffbb00;
  color: #111111;
}

.profile-page .profile-avatar-upload:hover {
  background: #e6a800;
}

.profile-page .profile-name {
  color: #111827;
  font-size: 1.1rem;
}

.profile-page .profile-tag {
  color: #765600;
  background: #fffaf0;
  border-color: #f4d98a;
}

.profile-page .profile-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.profile-page .profile-card-head {
  padding: 1.1rem 1.25rem 0;
}

.profile-page .profile-card-icon {
  border-radius: 9px;
  color: var(--warning);
  background: rgba(245, 158, 11, 0.08);
}

.profile-page .profile-card-icon svg {
  stroke: var(--warning);
}

.profile-page .section-edit-btn:hover {
  border-color: #ffbb00;
  color: #b77900;
  background: #fffaf0;
}

.login-section {
  flex-direction: column;
}

#loginWrapper > .login-section > .site-footer {
  width: 100%;
  max-width: 360px;
  margin-top: 1rem;
}

#registerWrapper > .login-section > .site-footer {
  width: 100%;
  max-width: 620px;
  margin-top: 1rem;
}@media (min-width: 1440px){
  .main-content {
    max-width: 1320px;
  }
}@media (max-width: 1024px){
  .navbar-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-section {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  #registerWrapper .login-card {
    max-width: min(620px, 100%);
  }
}@media (max-width: 768px){
  .login-wrapper {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .login-section {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 1rem 0.85rem 3rem;
  }

  #registerWrapper {
    min-height: auto;
    display: block;
  }

  #registerWrapper .login-section {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 1rem 0.85rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #registerWrapper .login-section > .site-footer {
    margin-top: 0;
  }

  .login-card,
  #registerWrapper .login-card {
    max-width: 100%;
  }

  #registerWrapper .hero-section {
    display: none;
  }

  .main-content {
    padding: 1rem 0.85rem;
  }

  .navbar-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}@media (max-width: 900px){
  html.register-page {
    background-color: #111111;
    background-image: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
  }

  .hero-section {
    display: none;
  }

  #registerWrapper .hero-section .logo-container {
    display: none;
  }

  .login-section {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  #registerWrapper {
    min-height: auto;
    display: block;
  }

  #registerWrapper .login-section {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 1rem 0.85rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #registerWrapper .login-section > .site-footer {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }

  .navbar-links {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-account .avatar-name,
  .navbar-account .avatar-chevron {
    display: none;
  }
}@media (max-width: 480px){
  .login-section,
  #registerWrapper .login-section {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .login-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .login-card .form-input {
    font-size: 14px;
  }

  /* Keep inputs & selects uniform on mobile */
  .form-input,
  .form-select-custom {
    width: 100%;
    height: 3rem;
    margin: 0;
    font-size: 14px;
    box-sizing: border-box;
  }

  .main-content {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .footer-links {
    gap: 0.35rem;
  }
}@media (min-width: 901px){
  .hero-section {
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }
}

/* ---------- Public Landing Page ---------- */
.landing-page {
  background: #f7f8fa;
  color: #111827;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
width: 100%;
  padding: 1.4rem max(2rem, calc((100vw - 1160px) / 2));
  background: transparent;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.landing-nav.scrolled {
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.16);
}

.landing-nav.scrolled::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 187, 0, 0.1);
  pointer-events: none;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.landing-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: none !important;
}

.landing-brand img + img {
  width: 38px;
  height: 38px;
  margin-left: -0.35rem;
}

.landing-brand span {
  font-size: 1.18rem;
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: 700px;
  padding: 8rem max(2rem, calc((100vw - 1160px) / 2)) 5rem;
  overflow: hidden;
  background: linear-gradient(132deg, #090b10 0%, #151a23 52%, #28313b 100%);
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/statue.png") right bottom / contain no-repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.landing-hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -55% 35%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 187, 0, 0.16), transparent 68%);
  pointer-events: none;
}

.landing-hero-glow {
  position: absolute;
  top: 16%;
  left: 42%;
  width: 260px;
  height: 260px;
  background: rgba(255, 187, 0, 0.08);
  filter: blur(70px);
  border-radius: 50%;
}

.landing-hero-content,
.landing-hero-visual {
  position: relative;
  z-index: 1;
}

.landing-hero-content {
  max-width: 600px;
}

.landing-eyebrow {
  display: inline-block;
  color: #ffbb00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 650px;
  margin: 0.75rem 0 1.1rem;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.landing-hero h1 span {
  color: #ffbb00;
}

.landing-hero-content > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

.landing-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.landing-actions a {
  width: auto;
  min-width: 140px;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  text-align: center;
}

.landing-action-primary {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.landing-action-primary:hover {
  background: #2b2b2b !important;
}

.landing-action-secondary {
  border-radius: var(--radius-md);
}

.landing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 600;
}

.landing-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.landing-proof svg,
.landing-benefit > svg {
  width: 17px;
  height: 17px;
  color: #ffbb00;
  filter: none;
}

.landing-hero-visual {
  min-height: 400px;
  display: grid;
  place-items: center;
}

.landing-orbit {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-24deg) scaleX(0.68);
}

.landing-orbit-one { transform: rotate(28deg) scaleX(0.72); }
.landing-orbit-two { width: 430px; height: 430px; transform: rotate(-48deg) scaleX(0.62); border-color: rgba(255, 187, 0, 0.16); }

.landing-visual-card {
  position: relative;
  width: min(340px, 80%);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.landing-visual-card-main { transform: rotate(4deg); }

.landing-card-kicker,
.landing-visual-card small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.landing-visual-card strong {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  font-size: 1.15rem;
}

.landing-chart {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 90px;
  margin: 1.25rem 0 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#ffbb00, rgba(255, 187, 0, 0.3));
}

.landing-chart span:nth-child(1) { height: 32%; }
.landing-chart span:nth-child(2) { height: 48%; }
.landing-chart span:nth-child(3) { height: 40%; }
.landing-chart span:nth-child(4) { height: 70%; }
.landing-chart span:nth-child(5) { height: 92%; }

.landing-visual-card-float {
  position: absolute;
  right: 0;
  bottom: 4%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 230px;
  padding: 0.9rem;
  transform: rotate(-5deg);
}

.landing-visual-card-float > svg {
  width: 28px;
  height: 28px;
  padding: 0.35rem;
  border-radius: 8px;
  color: #111111;
  background: #ffbb00;
  filter: none;
}

.landing-visual-card-float strong { margin: 0; font-size: 0.75rem; }
.landing-visual-card-float small { margin-top: 0.15rem; font-size: 0.6rem; }

.landing-about {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.3rem 2rem 0;
}

.landing-page .survey-schedule-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.3rem 2rem 0;
}

.landing-page .survey-schedule-section .survey-schedule-card {
  margin-bottom: 0;
}

.landing-survey-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.landing-survey-heading h2 {
  margin: 0.65rem 0 0.75rem;
}

.landing-survey-heading > p {
  max-width: none;
  margin: 0;
}

.landing-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(1160px, calc(100% - 4rem));
  margin: -2.25rem auto 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(12px);
}

.landing-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0.7rem 0.5rem;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.landing-metric:last-child { border-right: none; }

.landing-metric svg {
  width: 28px;
  height: 28px;
  margin-bottom: 0.4rem;
  color: #b77900;
  filter: none;
}

.landing-metric strong,
.landing-metric strong span {
  color: #111827;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.landing-metric span {
  margin-top: 0.2rem;
  color: #6b7280;
  font-size: 0.62rem;
  font-weight: 600;
}

.landing-jobs-section {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.3rem 2rem 0;
}

.landing-contact {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 3.3rem 2rem 0;
}

.landing-contact-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.landing-contact-heading h2 {
  margin: 0.65rem 0 0.75rem;
}

.landing-contact-heading > p {
  max-width: 520px;
  margin: 0 auto;
}

.landing-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.06);
}

.landing-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.landing-contact-label {
  color: #111827;
  font-size: 0.78rem;
  font-weight: 600;
}

.landing-contact-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  background: #f9fafb;
  color: #111827;
  font-size: 0.82rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.landing-contact-input::placeholder { color: #9ca3af; }

.landing-contact-input:focus {
  outline: none;
  border-color: #ffbb00;
  box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.18);
  background: #ffffff;
}

.landing-contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.landing-contact-field.invalid .landing-contact-input {
  border-color: var(--danger);
}

.landing-contact-error {
  color: #EF4444;
  font-size: 0.68rem;
  font-weight: 500;
  min-height: 0.85rem;
}

.landing-contact-submit {
  align-self: flex-start;
  min-width: 150px;
}
#contactModalSubmit {
  box-shadow: none;
}
#contactModalSubmit:hover {
  box-shadow: none;
}@media (max-width: 600px){
  .landing-contact { padding: 2.5rem 1.1rem 0; }
  .landing-contact-form { padding: 1.25rem; }
}

.landing-services {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.3rem 2rem 0;
}

.landing-section-heading {
  width: 100%;
}

.landing-services-heading h2 {
  max-width: none;
  margin: 0.65rem 0 0.75rem;
}

.landing-services-heading > p {
  max-width: none;
  margin: 0;
}

.landing-about-heading h2,
.landing-about-heading > p {
  max-width: none;
}

.landing-services-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 0.85rem;
  margin-top: 2rem;
  align-items: stretch;
}

.landing-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.landing-service-card {
  position: relative;
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.landing-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 187, 0, 0.55);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.09);
}

.landing-service-card-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  padding: 1.9rem;
  border: none;
  background: linear-gradient(138deg, #0c0f16 0%, #1a212d 58%, #383014 100%);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
}

.landing-service-card-featured::after {
  content: '';
  position: absolute;
  inset: auto -20% -50% 30%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(255, 187, 0, 0.2), transparent 68%);
  pointer-events: none;
}

.landing-service-card-featured > * { position: relative; z-index: 1; }

.landing-service-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 187, 0, 0.35);
  background: rgba(255, 187, 0, 0.12);
  color: #ffbb00;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-service-flag svg { width: 13px; height: 13px; filter: none; }

.landing-service-card-featured h3 {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.landing-service-card-featured p {
  max-width: 320px;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.7;
}

.landing-service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.landing-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.landing-service-btn svg { width: 15px; height: 15px; filter: none; }
.landing-service-btn-gold { color: #111111; background: linear-gradient(135deg, #ffbb00, #ffd45c); }
.landing-service-btn-gold:hover { background: linear-gradient(135deg, #e6a800, #ffbb00); }
.landing-service-btn-ghost { color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.22); }
.landing-service-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.45); }

.landing-service-tile {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #b77900;
}

.landing-service-tile svg { width: 22px; height: 22px; filter: none; }

.landing-service-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.05rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.landing-service-row-wide { grid-column: 1 / -1; }

.landing-service-row-body { min-width: 0; }

.landing-service-row-body h3 {
  margin-bottom: 0.25rem;
  color: #111827;
  font-size: 0.88rem;
}

.landing-service-row-body p {
  color: #6b7280;
  font-size: 0.71rem;
  line-height: 1.55;
}

.landing-opportunities {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2rem 1rem;
}

.landing-opportunities-heading {
  display: block;
  margin-bottom: 1.75rem;
}

.landing-opportunities-heading h2 {
  margin: 0.65rem 0 0.75rem;
}

.landing-opportunities-heading > p {
  margin: 0;
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.65;
}

.landing-access-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(9, 11, 16, 0.7);
  backdrop-filter: blur(8px);
}

.landing-access-modal[hidden] {
  display: none;
}

.landing-access-card {
  position: relative;
  width: min(100%, 410px);
  padding: 2rem;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.landing-access-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  color: #6b7280;
}

.landing-access-close:hover { background: #f3f4f6; color: #111827; }
.landing-access-close svg { width: 17px; height: 17px; filter: none; }

.landing-access-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: #111111;
  background: #ffbb00;
}

.landing-access-icon svg { width: 22px; height: 22px; filter: none; }
.landing-access-card h2 { margin: 0.55rem 0 0.6rem; color: #111827; font-size: 1.35rem; line-height: 1.15; }
.landing-access-card p { margin-bottom: 1.25rem; color: #6b7280; font-size: 0.78rem; line-height: 1.65; }

.landing-access-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.landing-access-actions-center {
  display: flex;
  justify-content: center;
}

.landing-access-actions-center .btn-primary {
  min-width: 120px;
}

.landing-access-actions a { width: 100%; text-align: center; }

.landing-section-heading h2 {
  margin: 0.65rem 0 0.9rem;
  color: #111827;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.landing-section-heading > p {
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.7;
}

.landing-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.landing-benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.landing-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 187, 0, 0.55);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.09);
}

.landing-benefit-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  color: #111111;
  background: #ffbb00;
}

.landing-benefit-icon svg {
  width: 19px;
  height: 19px;
  filter: none;
}

.landing-benefit h3 {
  margin: 0 0 0.45rem;
  color: #111827;
  font-size: 0.92rem;
}

.landing-benefit p {
  color: #6b7280;
  font-size: 0.74rem;
  line-height: 1.65;
}

.landing-site-footer {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1rem 0;
  border-top: 1px solid #e5e7eb;
  background: transparent;
  text-align: center;
}

.landing-site-footer .footer-copy {
  margin-bottom: 0.35rem;
}

.landing-site-footer .footer-links {
  justify-content: center;
}

.home-page .main-content {
  max-width: 1280px;
  padding-top: 1.5rem;
}

.home-welcome-panel {
  min-height: 245px;
  padding: 2rem 2.25rem;
  background: linear-gradient(118deg, #111111 0%, #242424 58%, #3a321e 100%);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.16);
}

.home-welcome-panel::after {
  background: rgba(255, 187, 0, 0.1);
}

.home-welcome-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffbb00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-welcome-panel .page-title {
  max-width: 520px;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.15;
}

.home-welcome-panel .page-title .highlight {
  color: #ffbb00;
}

.home-welcome-panel .page-subtitle {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.home-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.5rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.home-action svg { width: 15px; height: 15px; filter: none; }

.home-action-light {
  color: #111827;
  background: #ffffff;
}

.home-action-light:hover { background: #f3f4f6; }

.home-action-gold {
  color: #111111;
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
}

.home-action-gold:hover { background: linear-gradient(135deg, #e6a800, #ffbb00); }

.home-page .page-header-stats {
  gap: 0.65rem;
}

.home-page .header-stat {
  min-width: 112px;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-page .header-stat-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  line-height: 1.3;
}

.home-page .header-stat-number {
  margin-top: 0.28rem;
  color: #ffffff;
  font-size: 1.3rem;
}

.home-page .header-stat-note {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.58rem;
  font-weight: 600;
}@media (max-width: 900px){
  .home-welcome-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .home-page .page-header-stats {
    width: 100%;
  }

  .home-page .header-stat {
    flex: 1;
    min-width: 0;
  }
}@media (max-width: 560px){
  .home-welcome-panel { padding: 1.4rem; }

  .home-welcome-panel .page-title { font-size: 1.45rem; }

  .home-welcome-actions { width: 100%; }

  .home-action { flex: 1; }

  .home-page .page-header-stats { gap: 0.4rem; }

  .home-page .header-stat { padding: 0.6rem 0.4rem; }

  .home-page .header-stat-number { font-size: 1.05rem; }
}@media (max-width: 900px){
  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 7.5rem;
  }

  .landing-hero-visual {
    min-height: 330px;
  }

  .landing-metrics {
    width: min(100% - 2rem, 680px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -1.5rem;
  }

  .landing-metric:nth-child(3) { border-right: none; }

  .landing-metric:nth-child(-n + 3) { border-bottom: 1px solid #e5e7eb; }

  .landing-services {
    grid-template-columns: 1fr;
  }

  .landing-services-grid {
    grid-template-columns: 1fr;
  }

  .landing-service-card-featured {
    min-height: auto;
  }

  .landing-opportunities-heading {
    display: block;
  }
}@media (max-width: 600px){
  .landing-nav {
    padding: 1rem;
  }

  .landing-hero {
    padding: 6.5rem 1.1rem 3.5rem;
  }

  .landing-metrics {
    width: calc(100% - 1.3rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -1rem;
    padding: 0.65rem;
  }

  .landing-metric,
  .landing-metric:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .landing-metric:last-child { border-bottom: none; }

  .landing-hero h1 {
    font-size: 3rem;
  }

  .landing-hero-content > p { font-size: 0.82rem; }

  .landing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-actions a { width: 100%; }

  .landing-hero-visual {
    min-height: 280px;
    transform: scale(0.88);
  }

  .landing-about {
    padding: 2.5rem 1.1rem 0;
  }

  .landing-page .survey-schedule-section {
    padding: 2.5rem 1.1rem 0;
  }

  .landing-services {
    padding: 2.5rem 1.1rem 0;
  }

  .landing-services-list {
    grid-template-columns: 1fr;
  }

  .landing-jobs-section { padding: 2.5rem 1.1rem 0; }

  .landing-access-actions { grid-template-columns: 1fr; }

  .landing-section-heading h2 { font-size: 1.7rem; }
  .landing-benefits { grid-template-columns: 1fr; }
}

/* =====================================================================
   Home Page Redesign — aligned to the gold / dark page theme
   ===================================================================== */

/* ---------- 1. Start Survey button → matches home-action-gold ---------- */
.home-page .survey-schedule-card .btn-start-survey,
.home-page .survey-schedule-card .btn-start-survey:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: auto;
  min-height: 38px;
  margin: 0;
  padding: 0.6rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  box-shadow: 0 6px 16px rgba(255, 187, 0, 0.28);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.home-page .survey-schedule-card .btn-start-survey:hover {
  background: linear-gradient(135deg, #e6a800, #ffbb00);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 168, 0, 0.34);
}

.home-page .survey-schedule-card .btn-start-survey svg {
  width: 17px;
  height: 17px;
}

/* ---------- 2. About GradTracer card redesign ---------- */
.home-page .about-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.home-page .about-card .card-head {
  gap: 0.7rem;
  padding: 1.25rem 1.4rem 0.5rem;
}

.home-page .about-card .card-head-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 187, 0, 0.1);
  color: #b77900;
  box-shadow: 0 4px 10px rgba(255, 187, 0, 0.25);
}

.home-page .about-card .card-head-icon svg {
  width: 20px;
  height: 20px;
}

.home-page .about-card .card-head-title {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
}

.home-page .about-card .card-body {
  padding: 0.5rem 1.4rem 1.4rem;
}

.home-page .about-card .purpose-text {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.home-page .about-card .purpose-list {
  gap: 0.5rem;
}

.home-page .about-card .purpose-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.5;
}

.home-page .about-card .purpose-list li svg {
  width: 17px;
  height: 17px;
  min-width: 17px;
  color: #b77900;
  margin-top: 1px;
}

.home-page .about-card .campus-section {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.home-page .about-card .campus-heading {
  display: block;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.home-page .about-card .campus-subtext {
  color: #6b7280;
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

.home-page .about-card .campus-list {
  gap: 0.5rem;
}

.home-page .about-card .campus-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #4b5563;
}

.home-page .about-card .campus-list li svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: #b77900;
}

/* ---------- 3. Services for Alumni — visible + redesigned icons ---------- */
.home-page .services-card {
  display: block;
  margin-top: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.home-page .services-card .card-head {
  gap: 0.7rem;
  padding: 1.25rem 1.5rem 0.75rem;
}

.home-page .services-card .card-head-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 187, 0, 0.1);
  color: #b77900;
  box-shadow: 0 4px 10px rgba(255, 187, 0, 0.22);
}

.home-page .services-card .card-head-title {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
}

.home-page .services-card .card-body {
  padding: 0.5rem 1.5rem 1.5rem;
}

.home-page .services-card .services-intro {
  color: #6b7280;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.home-page .service-item {
  align-items: center;
  padding: 1rem 1.1rem;
  background: #fafafa;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.home-page .service-item:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: #f4d98a;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.07);
}

.home-page .service-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.10);
}

.home-page .service-icon svg {
  width: 21px;
  height: 21px;
  color: #ffffff;
}

.home-page .service-name {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-page .service-desc {
  color: #6b7280;
  font-size: 0.72rem;
}

/* ---------- 4. Survey Schedule card redesign (home) ---------- */
.home-page .survey-schedule-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-top: 4px solid #ffbb00;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.home-page .survey-schedule-card::after {
  content: '';
  position: absolute;
  top: -45px;
  right: -35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 187, 0, 0.1);
  pointer-events: none;
}

.home-page .survey-schedule-card .schedule-head {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.4rem 0.9rem;
}

.home-page .survey-schedule-card .schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff4c7;
  color: #765600;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.home-page .survey-schedule-card .schedule-badge svg {
  width: 13px;
  height: 13px;
}

.home-page .survey-schedule-card .schedule-title {
  color: #111827;
  font-size: 1.15rem;
  font-weight: 800;
  max-width: 520px;
}

.home-page .survey-schedule-card .schedule-desc {
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: none;
  margin-top: 0.3rem;
}

.home-page .survey-schedule-card .schedule-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  background: #fffaf0;
  border-top: 1px solid #f4d98a;
  border-bottom: 1px solid #f4d98a;
}

.home-page .schedule-meta-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.home-page .schedule-meta-item svg {
  width: 16px;
  height: 16px;
  padding: 9px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  box-shadow: 0 3px 8px rgba(255, 187, 0, 0.25);
}

.home-page .schedule-meta-item .meta-label {
  color: #92700a;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.home-page .schedule-meta-item .meta-value {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
}

.home-page .survey-schedule-card .schedule-tags-section {
  position: relative;
  z-index: 1;
  padding: 1rem 1.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.home-page .schedule-tag-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.home-page .tag-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #92700a;
  white-space: nowrap;
  min-width: 65px;
  padding-top: 0.2rem;
}

.home-page .tag-list {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.home-page .schedule-tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #fffaf0;
  border: 1px solid #f4d98a;
  color: #765600;
  font-size: 0.64rem;
  font-weight: 600;
}

.home-page .tag-text {
  color: #6b7280;
  font-size: 0.76rem;
  line-height: 1.6;
}

.home-page .survey-schedule-card .schedule-action {
  position: relative;
  z-index: 1;
  padding: 1rem 1.4rem 1.4rem;
}

/* =====================================================================
   Unified Gold Theme — applied to every Alumni Workspace page
   (home, survey, jobs, notifications, profile, …) so the whole
   system shares one color language, background treatment and icon
   style. Scoped to .alumni-workspace (added to the shared master
   body) so the separate Login screen keeps its own blue branding.
   ===================================================================== */

/* ---------- Primary buttons → gold gradient ---------- */
.alumni-workspace .btn-primary,
.alumni-workspace .btn-start-survey {
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 187, 0, 0.25);
}

.alumni-workspace .btn-primary::before { display: none; }

.alumni-workspace .btn-primary:hover,
.alumni-workspace .btn-start-survey:hover {
  background: linear-gradient(135deg, #e6a800, #ffbb00);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 168, 0, 0.32);
}

.alumni-workspace .btn-outline {
  color: #b77900;
  border-color: #f4d98a;
  background: #fffaf0;
}

.alumni-workspace .btn-outline:hover {
  background: #fff4c7;
  color: #765600;
  border-color: #e6a800;
}

/* ---------- Form controls → gold focus ---------- */
.alumni-workspace .form-control:focus,
.alumni-workspace input:focus,
.alumni-workspace select:focus,
.alumni-workspace textarea:focus,
.alumni-workspace .filter-search-input:focus,
.alumni-workspace .notif-search-input:focus {
  border-color: #ffbb00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 187, 0, 0.12);
}

/* ---------- Badges & tags → gold tint ---------- */
.alumni-workspace .survey-badge {
  background: rgba(255, 187, 0, 0.1);
  color: #b77900;
}

.alumni-workspace .schedule-badge {
  background: #fff4c7;
  color: #765600;
}

.alumni-workspace .schedule-tag,
.alumni-workspace .batch-tag {
  background: #fffaf0;
  border-color: #f4d98a;
  color: #765600;
}

/* ---------- Unified icon chips: golden yellow / black / white only ---------- */
.alumni-workspace .card-head-icon {
  color: #b77900;
  background: rgba(255, 187, 0, 0.1);
  box-shadow: 0 4px 10px rgba(255, 187, 0, 0.22);
}

/* Service icons → solid black chips with white glyphs */
.alumni-workspace .service-icon {
  color: #ffffff;
  background: #111111;
  box-shadow: 0 4px 10px rgba(17, 24, 39, 0.18);
}

/* ---------- Progress (survey) ---------- */
.alumni-workspace .progress-bar-fill {
  background: linear-gradient(90deg, #ffbb00, #ffd45c);
}

.alumni-workspace .progress-step.active .step-circle {
  border-color: #ffbb00;
  background: #ffbb00;
  color: #111111;
}

.alumni-workspace .progress-step.active .step-label {
  color: #b77900;
}

.alumni-workspace .progress-step.completed .step-circle {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.alumni-workspace .progress-step.completed .step-label {
  color: #111111;
}

.alumni-workspace .progress-line.active {
  background: #ffbb00;
}

/* ---------- Jobs: uniform gold/black/white icons ---------- */
.alumni-workspace .job-card-company-icon {
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 187, 0, 0.22);
}

.alumni-workspace .job-detail svg {
  color: #b77900;
}

.alumni-workspace .job-card-view-btn {
  background: #fffaf0;
  border-color: #f4d98a;
  color: #b77900;
}

.alumni-workspace .job-card-view-btn:hover {
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  border-color: transparent;
  color: #111111;
}

/* ---------- Notifications: gold / black / white accents ---------- */
.alumni-workspace .notif-tab.active {
  background: #ffbb00;
  color: #111111;
  box-shadow: 0 1px 3px rgba(230, 168, 0, 0.3);
}

.alumni-workspace .notif-tab-count {
  background: rgba(255, 187, 0, 0.12);
  color: #b77900;
}

.alumni-workspace .notif-mark-read:hover {
  border-color: #ffbb00;
  color: #b77900;
  background: #fffaf0;
}

.alumni-workspace .notif-item.unread {
  background: #efefef;
  border-color: rgba(17, 17, 17, 0.12);
}

/* Left accent bars — golden yellow / black / white only */
.alumni-workspace .notif-item.type-survey::before { background: #ffbb00; }
.alumni-workspace .notif-item.type-job::before { background: #111111; }
.alumni-workspace .notif-item.type-action::before { background: #f4d98a; }

.alumni-workspace .notif-item.unread.type-job {
  border-color: rgba(17, 17, 17, 0.18);
  background: #efefef;
}

/* Type icons — golden yellow / black / white only */
.alumni-workspace .notif-type-icon.survey {
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  border: 1.5px solid rgba(255, 187, 0, 0.35);
}

.alumni-workspace .notif-type-icon.job {
  background: #111111;
  color: #ffffff;
  border: 1.5px solid #111111;
}

.alumni-workspace .notif-type-icon.action {
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #f4d98a;
}

.alumni-workspace .notif-unread-dot {
  background: #ffbb00;
}

/* ---------- Services grid: single column on mobile ---------- */
@media (max-width: 768px) {
  .home-page .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Survey schedule card: identical on home & survey pages ---------- */
.alumni-workspace .survey-schedule-card {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: linear-gradient(138deg, #0c0f16 0%, #1a212d 58%, #383014 100%);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alumni-workspace .survey-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(17, 24, 39, 0.26);
}

.alumni-workspace .survey-schedule-card::before {
  display: none;
}

.alumni-workspace .survey-schedule-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -50% 30%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(255, 187, 0, 0.2), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.alumni-workspace .survey-schedule-card .schedule-head {
  position: relative;
  z-index: 1;
  padding: 1.9rem 1.9rem 0;
}

.alumni-workspace .survey-schedule-card .schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 187, 0, 0.12);
  color: #ffbb00;
  border: 1px solid rgba(255, 187, 0, 0.35);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.alumni-workspace .survey-schedule-card .schedule-badge svg {
  display: inline-block;
  width: 13px;
  height: 13px;
  color: #ffbb00;
}

.alumni-workspace .survey-schedule-card .schedule-badge::before {
  display: none;
}

.alumni-workspace .survey-schedule-card .schedule-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 540px;
}

.alumni-workspace .survey-schedule-card .schedule-desc {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.7;
  max-width: none;
  margin-top: 0.65rem;
}

.alumni-workspace .survey-schedule-card .schedule-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0 1.9rem 1.25rem;
  background: transparent;
  border: none;
}

.alumni-workspace .schedule-meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.alumni-workspace .schedule-meta-item svg {
  width: 18px;
  height: 18px;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255, 187, 0, 0.16);
  color: #ffbb00;
  flex-shrink: 0;
}

.alumni-workspace .schedule-meta-item .meta-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.alumni-workspace .schedule-meta-item .meta-value {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.alumni-workspace .survey-schedule-card .schedule-tags-section {
  position: relative;
  z-index: 1;
  padding: 0 1.9rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.alumni-workspace .schedule-tag-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.alumni-workspace .tag-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  min-width: 72px;
  padding-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.alumni-workspace .tag-list {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.alumni-workspace .schedule-tag {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 187, 0, 0.14);
  border: 1px solid rgba(255, 187, 0, 0.35);
  color: #ffd45c;
  font-size: 0.66rem;
  font-weight: 600;
}

.alumni-workspace .tag-text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.6;
}

.alumni-workspace .survey-schedule-card .schedule-action {
  position: relative;
  z-index: 1;
  padding: 1.1rem 1.9rem 1.9rem;
}

.alumni-workspace .survey-schedule-card .btn-start-survey {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffbb00, #ffd45c);
  color: #111111;
  box-shadow: 0 6px 16px rgba(255, 187, 0, 0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.alumni-workspace .survey-schedule-card .btn-start-survey:hover {
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.72rem;
  background: linear-gradient(135deg, #e6a800, #ffbb00);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 187, 0, 0.35);
}

.alumni-workspace .survey-schedule-card .btn-start-survey::after {
  content: '\2192';
  margin-left: 0.4rem;
  font-weight: 700;
}@media (max-width: 560px){
  .alumni-workspace .survey-schedule-card .schedule-meta {
    grid-template-columns: 1fr;
  }
}

/* Unified paragraph font across all alumni/auth pages (matches the landing
   paragraph "Keep your record current..." — site-wide Poppins via --font-family) */
p {
  font-family: var(--font-family);
}

/* ---------- Session Expired Modal (MasterAlumniWorkspacePage) ---------- */
.session-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.session-modal-overlay.show {
  display: flex;
}

.session-modal-overlay .consent-card {
  text-align: center;
  max-width: 420px;
}

.session-modal-overlay .consent-card .btn-primary {
  display: inline-flex;
  width: auto;
  margin: 0.75rem auto 0;
  min-width: 160px;
  box-shadow: none;
}

/* ---------- Legal Modal (Privacy Policy / Terms of Service) ---------- */
.legal-modal-card {
  text-align: left;
}

.legal-modal-body {
  padding: 0;
}

.legal-modal-body p,
.legal-modal-body li {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

.legal-modal-body ul {
  margin: 0.2rem 0 0;
  padding-left: 1.2rem;
}

.legal-modal-body ul li {
  margin-bottom: 0.4rem;
}

.legal-modal-body strong {
  color: var(--gray-800);
}

/* ---------- Contact Support Modal (index) ---------- */
.contact-modal-card {
  text-align: left;
}

.contact-modal-body {
  padding: 0;
}

.contact-modal-section {
  padding: 2rem 2.5rem 2.5rem;
  max-width: 100%;
}

.contact-profile-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-profile-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.contact-profile-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #2c6e49);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.contact-profile-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.contact-profile-role {
  margin: 0.15rem 0 0.3rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.contact-profile-tag {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(44, 110, 73, 0.1);
  color: #1d7a44;
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-profile-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-profile-email svg {
  width: 16px;
  height: 16px;
}

.contact-profile-email:hover {
  border-color: #2c6e49;
  color: #2c6e49;
}

.contact-or-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  color: var(--gray-400);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-or-divider::before,
.contact-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

@media (max-width: 640px) {
  .contact-modal-section { padding: 1.75rem 1.1rem 2rem; }
  .contact-profile-card { flex-direction: column; align-items: flex-start; }
}
